:root {
    --primary: #ff0055;
    --secondary: #ff8000;
    --tele-blue: #0088cc;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(255, 0, 85, 0.6);
}

/* Reset Dasar */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body {
    background: #000;
    background-image: radial-gradient(circle at top right, #2b0b2e, #000 70%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navbar */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; background: rgba(0,0,0,0.7); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.logo { font-family: 'Montserrat'; font-weight: 900; font-size: 20px; letter-spacing: 2px; }
.logo span { color: var(--primary); }

.nav-links a { color: #888; text-decoration: none; margin-left: 20px; font-size: 13px; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: #fff; text-shadow: var(--neon-glow); }

/* Hero Layout */
.hero {
    max-width: 1300px; margin: 0 auto;
    padding: 120px 8% 60px 8%;
    position: relative;
}

.bg-text {
    position: fixed; right: -20px; top: 50%; transform: translateY(-50%);
    font-size: 12vw; color: rgba(255,255,255,0.01); writing-mode: vertical-rl;
    font-weight: 900; z-index: -1; pointer-events: none;
}

.hero h1 { font-family: 'Montserrat'; font-size: clamp(45px, 8vw, 75px); line-height: 0.85; margin-bottom: 20px; font-weight: 900; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px var(--primary); }

.description { max-width: 450px; font-size: 13px; color: #999; margin-bottom: 30px; border-left: 3px solid var(--primary); padding-left: 20px; line-height: 1.6; }

/* Buttons */
.btn-group { display: flex; gap: 15px; margin-bottom: 40px; }
.btn { padding: 12px 35px; border-radius: 8px; text-decoration: none; font-weight: 800; font-size: 13px; transition: 0.4s; text-align: center; }
.btn-daftar { background: linear-gradient(90deg, var(--primary), var(--secondary)); color: #fff; box-shadow: var(--neon-glow); }
.btn-login { border: 1px solid var(--border); background: var(--glass); color: #fff; backdrop-filter: blur(5px); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 0, 85, 0.4); }

/* TOMBOL CLAIM TELEGRAM (Tambahan Baru) */
.claim-container {
    margin: 30px 0;
    display: flex;         /* Aktifkan flexbox */
    justify-content: center; /* Posisikan ke tengah secara horizontal */
    width: 100%;           /* Pastikan memenuhi lebar container */
}
.btn-claim-tele {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: var(--tele-blue);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-tele 2s infinite;
}
.btn-claim-tele img { width: 22px; height: 22px; }
.btn-claim-tele:hover {
    transform: translateY(-5px) scale(1.05);
    background: #00a2f0;
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.6);
}

/* --- BANNER PROMOSI PC (Dilebarkan) --- */
.promo-banner { 
    /* Ganti nilai sebelumnya (misal 850px) menjadi 100% */
    max-width: 100%; 
    
    /* Pastikan memenuhi lebar penuh kontainer .hero (1300px) */
    width: 100%;
    
    /* Tambahkan margin bawah agar ada jarak yang pas dengan tombol claim */
    margin-bottom: 40px;

    /* Properti lainnya tetap dipertahankan */
    border-radius: 15px; 
    overflow: hidden; 
    border: 1px solid var(--border); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); 
}

/* Pastikan gambar di dalamnya mengikuti lebar penuh banner */
.promo-banner img { 
    width: 100%; 
    height: auto; /* Mempertahankan rasio gambar */
    display: block; 
    opacity: 0.9; 
}

/* Highlights */
.promo-highlights { display: flex; gap: 20px; margin-top: 30px; background: var(--glass); padding: 20px; border-radius: 12px; border: 1px solid var(--border); width: fit-content; }
.promo-item { display: flex; align-items: center; gap: 15px; }
.promo-icon { font-size: 22px; }
.promo-title { font-weight: 800; font-size: 13px; }
.promo-desc { font-size: 11px; color: #888; }

.divider { width: 100%; height: 1px; background: linear-gradient(90deg, var(--primary), transparent); margin: 40px 0; opacity: 0.3; }

/* Video Cards */
.card-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.card { aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; position: relative; border: 1px solid var(--border); cursor: pointer; transition: 0.4s; }
.card:hover { border-color: var(--primary); transform: scale(1.03); }
.card video { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: 0.3s; }
.card:hover video { opacity: 1; }
.card-label { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,0.8); padding: 5px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; border: 1px solid var(--border); z-index: 2; }

/* Footer */
footer { border-top: 1px solid var(--border); background: #050505; padding: 50px 8% 30px 8%; margin-top: 50px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; max-width: 1200px; margin: 0 auto; }
.footer-brand p { font-size: 12px; color: #666; margin-top: 10px; }
.footer-links a { display: block; color: #888; text-decoration: none; font-size: 12px; margin-bottom: 8px; }
.footer-copy { text-align: right; font-size: 11px; color: #444; }

/* --- FLOATING LIVECHAT PREMIUM --- */
.fab-container { position: fixed; bottom: 30px; right: 30px; z-index: 9999; }
.fab-item { 
    width: 60px; height: 60px; border-radius: 50%; display: flex; 
    justify-content: center; align-items: center; 
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: var(--neon-glow); border: 2px solid rgba(255, 255, 255, 0.2);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; text-decoration: none;
}
.fab-item svg { width: 30px; height: 30px; filter: drop-shadow(0 0 5px rgba(255,255,255,0.5)); }
.fab-item:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 0 30px var(--primary); }

.pulse-ring {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    border: 2px solid var(--primary); animation: fab-pulse 2s infinite; z-index: -1;
}

/* ANIMATIONS */
@keyframes fab-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes pulse-tele {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 136, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
}

/* Mobile Fix */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { text-align: center; }
    .btn-group { justify-content: center; flex-wrap: wrap; }
    .promo-highlights { flex-direction: column; width: 100%; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-copy { text-align: center; }
    .fab-container { bottom: 20px; right: 20px; }
    .fab-item { width: 55px; height: 55px; }
}