* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Montserrat', sans-serif; 
    /* Background Hitam dengan sedikit nuansa Hijau Zamrud di tengah */
    background: radial-gradient(circle at top, #021a15 0%, #010807 100%); 
    color: #e5e5e5; 
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ================= HEADER ================= */
.main-header { 
    background-color: rgba(1, 8, 7, 0.95); 
    backdrop-filter: blur(10px); 
    border-bottom: 2px solid #00ffcc;
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 999; 
}
.header-flex { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo img { 
    max-height: 40px; 
    width: auto; 
    height: auto; 
}
.nav-menu ul { list-style: none; display: flex; align-items: center; }
.nav-menu ul li { margin-left: 20px; }
.nav-menu ul li a { color: #fff; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav-menu ul li a:hover { color: #d4af37; }
.btn-daftar-header { background: #d4af37; color: #000 !important; padding: 8px 15px; border-radius: 4px; }

/* ================= HERO & BANNER ================= */
.hero-section { padding: 130px 20px 50px 20px; }
.promo-banner { 
    max-width: 800px; 
    margin: 0 auto 30px auto; 
    border: 2px solid #d4af37; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.img-fluid-banner { width: 100%; height: auto; display: block; }
.main-title { 
    font-size: 38px; 
    background: linear-gradient(to bottom, #ffffff 20%, #bdc3c7 60%, #95a5a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.2));
}
.subtitle {
    font-size: 18px;
    color: #8ebbb3;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}


/* ================= BUTTONS CTA ================= */
.cta-buttons { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    flex-wrap: wrap; 
    margin-top: 35px; 
}

.btn { 
    padding: 14px 30px; 
    font-weight: 800; 
    text-decoration: none; 
    border-radius: 50px; /* Desain pill-shape modern */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    min-width: 170px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Tombol Login - Sleek Dark Glassmorphism */
.btn-login { 
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff; 
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Tombol Daftar - Premium Gold Glowing Gradient (Target Utama) */
.btn-register { 
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);  
    color: #0c1615; 
    font-weight: 900;
    border: 1px solid #fbf5b7;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
    transform: scale(1.05); /* Sedikit lebih dominan */
}

/* Tombol Livechat - Sleek Dark Glassmorphism */
.btn-livechat { 
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Efek Hover untuk Tombol */
.btn:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.btn-login:hover {
    background: rgba(0, 255, 204, 0.1);
    border-color: #00ffcc;
    color: #00ffcc;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.btn-register:hover {
    transform: translateY(-4px) scale(1.08); /* Tetap lebih dominan saat di-hover */
    filter: brightness(1.15);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.65);
}

.btn-livechat:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Efek Cahaya Bergerak di Tombol Daftar */
.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
}
.btn-register:hover::before {
    left: 125%;
}
/* ================= INFO TABLE ================= */
.info-table { 
    width: 100%; 
    background: rgba(255, 255, 255, 0.02); 
    border-collapse: collapse; 
    margin: 40px 0; 
    border-radius: 10px; 
    overflow: hidden;
    border: 1px solid rgba(0, 255, 204, 0.1);
}
.info-table td { padding: 15px; border-bottom: 1px solid #33271c; }
.info-table td:first-child { width: 35%; color: #00ffcc; font-weight: bold; background: rgba(0, 255, 204, 0.05); }
.highlight { color: #00ffcc; font-weight: bold; }

/* ================= ARTICLE GRID ================= */
.content-section { padding: 50px 0; }
.content-section h2, .article-body h2, .article-body h3 {
    color: #00ffcc;
    border-left: 4px solid #00ffcc;
    padding-left: 15px;
}
.article-body h2, .article-body h3 { 
    color: #d4af37; 
    margin: 40px 0 25px 0; 
    text-transform: uppercase;
    font-size: 24px;
}

.article-body ul { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; /* Membuat kotak sisa otomatis ke tengah */
    gap: 20px; 
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.article-body li { 
    background: rgba(255, 255, 255, 0.05); 
    padding: 25px; 
    border-radius: 12px; 
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
    
    /* Lebar kotak: di desktop 3 kolom, tapi fleksibel */
    flex: 1 1 calc(33.333% - 20px); 
    max-width: 380px; /* Supaya kotak tidak terlalu lebar kalau cuma ada 1 atau 2 */
    min-width: 300px; /* Supaya tetap proporsional di layar kecil */
    
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.article-body li:hover { 
    background: rgba(212, 175, 55, 0.1); 
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.article-body li strong {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}

.article-body li p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* Penyesuaian untuk layar Tablet/HP */
@media (max-width: 992px) {
    .article-body li {
        flex: 1 1 calc(50% - 20px); /* Jadi 2 kolom di tablet */
    }
}

@media (max-width: 768px) {
    .article-body li {
        flex: 1 1 100%; /* Jadi 1 kolom full di HP */
        max-width: 100%;
    }
}

/* ================= FAQ ================= */
.faq-section { padding: 60px 0; background: rgba(0,0,0,0.3); }
.faq-item { background: #1a1511; border: 1px solid #33271c; margin-bottom: 10px; border-radius: 5px; }
.faq-question { 
    width: 100%; padding: 15px 20px; background: none; border: none; 
    color: #d4af37; font-weight: 700; text-align: left; cursor: pointer;
    display: flex; justify-content: space-between;
}
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: 0.3s; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 20px; }

/* RESET & BASE FOOTER */
.premium-footer {
    background: #010807;
    padding: 50px 0 20px 0;
    border-top: 3px solid #00ffcc;
}

/* GAYA BADGE BOX (Mirip sistem keamanan yang Anda mau) */
.footer-badge-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.badge-item {
    background: rgba(0, 255, 204, 0.02);
    border: 1px solid rgba(0, 255, 204, 0.1);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.badge-item:hover {
    border-color: #00ffcc;
    background: rgba(0, 255, 204, 0.05);
    box-shadow: 0 0 20px rgba(0, 86, 255, 0.1);
    transform: translateY(-3px);
}

.badge-icon { color: #00ffcc; font-size: 24px; }
.badge-title { display: block; color: #fff; font-weight: 700; font-size: 14px; }
.badge-desc { display: block; color: #8ebbb3; font-size: 11px; text-transform: uppercase; }

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e2c58a, transparent);
    margin: 40px 0;
    opacity: 0.2;
}

/* LOGO GOLD GRADIENT */
.footer-logo-gold {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(to bottom, #ffffff, #bdc3c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.footer-main-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand-info { flex: 1.5; }
.footer-brand-info p { 
    font-size: 14px; 
    color: #a3a3a3; /* Dicerahkan dari #888 */
    line-height: 1.6; 
    margin-bottom: 25px; 
}

.small-title { 
    font-size: 11px; 
    font-weight: 700; 
    color: #888; /* Dicerahkan dari #555 */
    margin-bottom: 10px; 
    letter-spacing: 1px; 
}
.bank-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 500px; /* Batasi lebar agar tidak melebar terlalu jauh */
}
.bank-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    background: #001a15;
    border: 1px solid rgba(0, 255, 204, 0.2);
    color: #8ebbb3;
}
.bank-tag.bca { border-left: 3px solid #005696; }      /* Biru BCA */
.bank-tag.bni { border-left: 3px solid #ff6600; }      /* Oranye BNI */
.bank-tag.bri { border-left: 3px solid #00529b; }      /* Biru BRI */
.bank-tag.mandiri { border-left: 3px solid #ffcc00; }  /* Kuning Mandiri */
.bank-tag.danamon { border-left: 3px solid #ff3300; }  /* Oranye Danamon */
.bank-tag.cimb { border-left: 3px solid #cc0000; }     /* Merah CIMB */
.bank-tag.permata { border-left: 3px solid #8ec63f; }  /* Hijau Permata */
.bank-tag.bsi { border-left: 3px solid #00918e; }      /* Teal BSI */
.bank-tag.dana { border-left: 3px solid #118eea; }     /* Biru Dana */
.bank-tag.ovo { border-left: 3px solid #4c2a86; }      /* Ungu OVO */
.bank-tag.gopay { border-left: 3px solid #00aade; }    /* Biru Muda Gopay */
.bank-tag.linkaja { border-left: 3px solid #e21f26; }  /* Merah LinkAja */
.bank-tag.qris { 
    border-left: 3px solid #ff0055; 
    background: linear-gradient(90deg, #111, #222);
    color: #fff;
}

/* LINKS */
.footer-links-wrapper { display: flex; gap: 40px; flex: 1; }
.link-col .footer-title { 
    color: #fff; 
    font-size: 14px; 
    font-weight: 700; /* Menjaga ketebalan teks agar sama seperti h4 sebelumnya */
    margin-bottom: 20px; 
    letter-spacing: 1px; 
    margin-top: 0;
}
.link-col ul { list-style: none; }
.link-col ul li { margin-bottom: 10px; }
.link-col ul li a { 
    color: #9f9f9f; /* Dicerahkan dari #666 */
    text-decoration: none; 
    font-size: 13px; 
    transition: 0.3s; 
}
.link-col ul li a:hover { color: #e2c58a; padding-left: 5px; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 20px;
    font-size: 12px;
    color: #888; /* Dicerahkan dari #444 */
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-main-content { flex-direction: column; text-align: center; }
    .footer-links-wrapper { justify-content: center; }
    .bank-icons { justify-content: center; }
    .badge-item { justify-content: center; max-width: 100%; }
}

/* Styling Logo di Footer */
.footer-logo-wrap {
    margin-bottom: 20px;
    display: block;
}

.footer-img-logo {
    max-width: 220px; /* Atur lebar logo sesuai keinginan */
    height: auto;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.5)); /* Memberi bayangan agar logo lebih 'keluar' */
    transition: transform 0.3s ease;
}

.footer-img-logo:hover {
    transform: scale(1.05); /* Efek membesar sedikit saat kursor di atas logo */
}

/* Penyesuaian untuk Mobile */
@media (max-width: 768px) {
    .footer-logo-wrap {
        text-align: center;
        margin: 0 auto 20px auto;
    }
    .footer-img-logo {
        max-width: 180px;
    }
}
/* ================= PROGRESSIVE JACKPOT ================= */
.jackpot-section {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.jackpot-title {
    color: #d4af37;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.jackpot-outer-box {
    position: relative;
    background: radial-gradient(circle, #011310 0%, #000000 100%);
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 18px 10px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25), inset 0 0 15px rgba(0, 255, 204, 0.05);
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

/* Dekorasi Titik-Titik Frame */
.jackpot-dots-top, .jackpot-dots-bottom {
    display: flex;
    justify-content: space-around;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 15px;
}

.jackpot-dots-top { top: 4px; }
.jackpot-dots-bottom { bottom: 4px; }

.jackpot-dots-top span, .jackpot-dots-bottom span {
    width: 4px;
    height: 4px;
    background-color: #00ffcc;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ffcc;
    display: inline-block;
}

.jackpot-display {
    border: 1px stroke rgba(0, 255, 204, 0.3);
    outline: 1px solid rgba(0, 255, 204, 0.3);
    background: #000000;
    padding: 8px 30px;
    display: inline-block;
    border-radius: 4px;
}

.jackpot-number {
    font-family: 'Courier New', Courier, monospace; /* Monospace agar posisi angka tidak bergeser saat berganti */
    font-size: 32px;
    font-weight: bold;
    color: #00ffcc;
    text-shadow: 0 0 12px rgba(0, 255, 204, 0.9);
    letter-spacing: 2px;
}
/* ================= KOTAK CONTAINER UTAMA (HERO CARD BOX) ================= */
.hero-card-box {
    background: linear-gradient(135deg, rgba(2, 26, 21, 0.85) 0%, rgba(1, 8, 7, 0.95) 100%); 
    border: 2px solid rgba(0, 255, 204, 0.25); 
    border-radius: 24px; /* Sudut lengkungan dibuat sedikit lebih halus */
    padding: 45px 30px;
    margin: 0 auto;
    max-width: 900px; 
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 
                0 0 30px rgba(0, 255, 204, 0.15),
                inset 0 0 20px rgba(0, 255, 204, 0.05); 
                
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
}

/* Penyesuaian margin agar jarak elemen di dalam kotak lebih padat dan presisi */
.hero-card-box:hover {
    transform: translateY(-4px); /* Kotak sedikit terangkat */
    border-color: rgba(0, 255, 204, 0.45); /* Warna garis tepi sedikit lebih terang */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.95), 
                0 0 40px rgba(0, 255, 204, 0.25),
                inset 0 0 25px rgba(0, 255, 204, 0.08);
}

/* Penyesuaian jarak elemen di dalam kotak */
.hero-card-box .promo-banner {
    margin-bottom: 25px;
}
.hero-card-box .main-title {
    margin-bottom: 15px;
}
.hero-card-box .subtitle {
    margin-bottom: 25px;
}
.hero-card-box .cta-buttons {
    margin-top: 20px;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    /* HEADER MOBILE */
    .header-flex {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }
    .nav-menu ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-menu ul li {
        margin: 5px 10px;
    }
    
    /* HERO MOBILE */
    .hero-section {
        padding: 130px 15px 40px 15px; /* Jarak atas disesuaikan */
    }
    .promo-banner {
        max-width: 100%; /* Di HP penuhi lebar layar */
        border-width: 2px;
        margin-bottom: 20px;
    }
    .main-title {
        font-size: 22px;
    }
    .subtitle {
        font-size: 15px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 280px;
    }

    /* TABLE MOBILE */
    .info-table td {
        display: block;
        width: 100% !important;
    }
    .info-table td:first-child {
        background-color: #241d17;
        font-weight: bold;
    }

    /* FOOTER MOBILE */
    .footer-grid {
        flex-direction: column;
    }
    .hero-card-box {
        padding: 25px 15px;
        border-width: 1px; /* Sisi garis lebih tipis saat di HP */
        border-radius: 12px;
    }
    .hero-card-box .promo-banner {
        margin-bottom: 15px;
    }
    .hero-card-box .cta-buttons {
        margin-bottom: 20px;
    }
}