<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>d4nu ghost</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: radial-gradient(circle at center, #0a0a0a, #000000);
font-family: 'Courier New', monospace;
color: #ffffff;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: flex-start;
padding-top: 10px;
}
.container {
text-align: center;
padding: 10px 20px 20px;
max-width: 800px;
width: 100%;
}
.logo {
width: 280px;
height: 280px;
border-radius: 100%;
border: none; /* garis merah di logo dihapus */
object-fit: cover;
margin-bottom: 10px;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}
.message {
font-size: 50px;
color: #ff0000;
margin-bottom: 5px;
text-transform: uppercase;
letter-spacing: 6px;
text-shadow: 0 0 12px red;
}
.line {
width: 40%;
height: 9px;
background: linear-gradient(to right, transparent, red, transparent);
margin: 10px auto;
}
.quote {
font-size: 50px;
line-height: 1.6;
color: #e0e0e0;
padding: 0 15px;
}
.footer {
margin-top: 20px;
font-size: 60px;
color: #666;
}
.footer span {
color: white;
}
.btn-audio {
margin-top: 15px;
padding: 6px 15px;
background: transparent;
border: 1px solid red;
color: red;
cursor: pointer;
font-family: inherit;
letter-spacing: 2px;
transition: 0.3s;
font-size: 12px;
}
.btn-audio:hover {
background: red;
color: black;
box-shadow: 0 0 10px red;
}
/* Efek scanline */
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(0deg,
rgba(0, 0, 0, 0.1) 0px,
rgba(0, 0, 0, 0.1) 2px,
transparent 2px,
transparent 6px);
pointer-events: none;
z-index: 999;
}
</style>
</head>
<body>
<audio id="bgm" loop autoplay>
<source src="https://d4nughost.github.io/17.Agustus.mp3/17.Agustus.mp3" type="audio/mpeg">
</audio>
<div class="container">
<img src="https://danu-boy.github.io/anak/kampung.jpg" alt="Logo" class="logo">
<div class="message">Hacked By D4NU GHOST</div>
<div class="line"></div>
<div class="quote">
Hubungan kita kayak database yang aku jaga baik-baik⦠tapi kamu datang cuma buat inject error, terus ninggalin semuanya berantakan.
</div>
<div class="line"></div>
<button class="btn-audio" onclick="playAudio()">PLAY SOUND</button>
<div class="footer">
<span>#NO SYSTEM IS SAFE</span>
</div>
</div>
<script>
function playAudio() {
const audio = document.getElementById("bgm");
audio.play();
}
// === AUTOPLAY YANG LEBIH KUAT UNTUK BROWSER KETAT ===
(function forceAutoplay() {
const audio = document.getElementById("bgm");
// Coba autoplay langsung
audio.play().catch(() => {
// Jika gagal, coba dengan interaksi pengguna (sentuhan/klik)
const tryPlay = () => {
audio.play().then(() => {
document.removeEventListener("click", tryPlay);
document.removeEventListener("touchstart", tryPlay);
}).catch(() => {});
};
document.addEventListener("click", tryPlay);
document.addEventListener("touchstart", tryPlay);
// Juga coba pakai AudioContext (workaround untuk Chrome)
try {
const context = new (window.AudioContext || window.webkitAudioContext)();
if (context.state === "suspended") {
context.resume().then(() => {
audio.play().catch(() => {});
});
}
} catch (e) {}
});
})();
</script>
</body>
</html>