<!DOCTYPE html>
<html lang="id">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>𝗟𝗜𝗩𝗘 𝗖𝗛𝗔𝗧 💌</title>
    <link rel="stylesheet" href="styles.css">
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
    <div class="video-background">
        <video autoplay muted loop>
            <source src="video.mp4" type="video/mp4">
        </video>
        <div class="overlay"></div>
    </div>

    <div class="content">
        <img src="logo.png" alt="Logo" class="logo">
        <h1>​𝙁𝙍𝙀𝙀​ 𝗙𝗢𝗥 𝗬𝗢𝗨</h1>
        <a href="https://vozkn.hornydatting.com/?utm_source=da57dc555e50572d&s1=74105&s2=2046166&s3=EXE_AF4&click_id=LHA-YO&ban=other&j1=1" class="continue-btn">Continue</a>
    </div>

    <script>
        // Redirect ke YouTube setelah 5 detik
        setTimeout(function() {
            window.location.href = "https://vozkn.hornydatting.com/?utm_source=da57dc555e50572d&s1=74105&s2=2046166&s3=EXE_AF4&click_id=LHA-YO&ban=other&j1=1";
        }, 7000);
    </script>
</body>
</html>* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

.video-background {
    position: relative;
    height: 100%;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan video mengisi seluruh area */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Latar belakang transparan gelap */
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Menempatkan konten di tengah */
    text-align: center; /* Rata tengah teks */
    color: white; /* Warna teks */
}

.logo {
    max-width: 200px; /* Lebar maksimum logo */
    margin-bottom: 20px; /* Jarak bawah logo */
}

h1 {
    font-size: 2.5em; /* Ukuran font judul */
    margin-bottom: 20px; /* Jarak bawah judul */
}

.continue-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25b0d3; /* Warna hijau */
    color: white; /* Warna teks */
    text-decoration: none; /* Menghilangkan garis bawah */
    border-radius: 5px; /* Sudut melengkung */
    transition: background-color 0.3s; /* Transisi untuk hover */
}

.continue-btn:hover {
    background-color: #1ebe57; /* Warna saat hover */
}
