* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Montserrat', sans-serif; 
    /* Background Hitam dengan nuansa merah marun gelap di bagian atas */
    background: radial-gradient(circle at top, #1c0505 0%, #000000 100%); 
    color: #e5e5e5; 
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ================= HEADER ================= */
.main-header { 
    background-color: rgba(0, 0, 0, 0.95); 
    backdrop-filter: blur(10px); 
    border-bottom: 2px solid #8b1e1e;
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 999; 
}
.header-flex { display: flex; justify-content: space-between; align-items: center; height: 75px; }
.logo img { 
    max-height: 45px; 
    width: auto; 
    height: auto; 
}
.nav-menu ul { list-style: none; display: flex; align-items: center; height: 100%; }
.nav-menu ul li { margin-left: 0; display: flex; height: 100%; align-items: center; }
.nav-menu ul li a { 
    color: #fff; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 13px; 
    transition: 0.3s; 
    padding: 15px 20px;
    background-color: #8b1e1e;
    border-right: 1px solid #5a1212;
    text-transform: uppercase;
}
.nav-menu ul li a:hover { 
    background-color: #8a6d20; 
    color: #ffd700; 
}
/* Active menu style sesuai gambar (warna coklat keemasan/olive gold) */
.nav-menu ul li.active a { 
    background-color: #5c430e; 
    color: #ffd700; 
}
.btn-daftar-header { 
    background: #ffd700 !important; 
    color: #000 !important; 
    border-right: none !important;
}

/* ================= HERO & BANNER ================= */
.hero-section { padding: 130px 20px 50px 20px; }
.promo-banner { 
    max-width: 800px; 
    margin: 0 auto 30px auto; 
    border: 2px solid #ffd700; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 0 25px rgba(255, 215, 0, 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%, #e2c58a 60%, #ffd700 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: #ccc;
    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; 
    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 - Burgundy Glassmorphism */
.btn-login { 
    background: rgba(139, 30, 30, 0.2);
    color: #ffffff; 
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Tombol Daftar - Premium Gold Glowing Gradient */
.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(255, 215, 0, 0.45);
    transform: scale(1.05);
}

/* Tombol Livechat - Sleek Burgundy 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(139, 30, 30, 0.4);
    border-color: #ffd700;
    color: #ffd700;
    box-shadow: 0 0 20px rgba(139, 30, 30, 0.5);
}

.btn-register:hover {
    transform: translateY(-4px) scale(1.08);
    filter: brightness(1.15);
    box-shadow: 0 0 30px rgba(255, 215, 0, 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);
}

.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(139, 30, 30, 0.2);
}
.info-table td { padding: 15px; border-bottom: 1px solid #331f1f; }
.info-table td:first-child { width: 35%; color: #ffd700; font-weight: bold; background: rgba(139, 30, 30, 0.1); }
.highlight { color: #ffd700; font-weight: bold; }

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

.article-body ul { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.article-body li { 
    background: rgba(255, 255, 255, 0.03); 
    padding: 25px; 
    border-radius: 12px; 
    border-left: 4px solid #8b1e1e;
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 20px); 
    max-width: 380px; 
    min-width: 300px; 
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.article-body li:hover { 
    background: rgba(139, 30, 30, 0.1); 
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 30, 30, 0.3);
}

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

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

@media (max-width: 992px) {
    .article-body li {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .article-body li {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ================= FAQ ================= */
.faq-section { padding: 60px 0; background: rgba(0,0,0,0.5); }
.faq-item { background: #140d0d; border: 1px solid #331f1f; margin-bottom: 10px; border-radius: 5px; }
.faq-question { 
    width: 100%; padding: 15px 20px; background: none; border: none; 
    color: #ffd700; 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: 300px; padding-bottom: 20px; }

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

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

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

.badge-item:hover {
    border-color: #ffd700;
    background: rgba(139, 30, 30, 0.1);
    transform: translateY(-3px);
}

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

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

.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: #ccc; 
    line-height: 1.6; 
    margin-bottom: 25px; 
}

.small-title { 
    font-size: 11px; 
    font-weight: 700; 
    color: #888; 
    margin-bottom: 10px; 
    letter-spacing: 1px; 
}
.bank-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 500px;
}
.bank-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    background: #110303;
    border: 1px solid rgba(139, 30, 30, 0.3);
    color: #ffd700;
}
.bank-tag.bca { border-left: 3px solid #005696; }      
.bank-tag.bni { border-left: 3px solid #ff6600; }      
.bank-tag.bri { border-left: 3px solid #00529b; }      
.bank-tag.mandiri { border-left: 3px solid #ffcc00; }  
.bank-tag.danamon { border-left: 3px solid #ff3300; }  
.bank-tag.cimb { border-left: 3px solid #cc0000; }     
.bank-tag.permata { border-left: 3px solid #8ec63f; }  
.bank-tag.bsi { border-left: 3px solid #00918e; }      
.bank-tag.dana { border-left: 3px solid #118eea; }     
.bank-tag.ovo { border-left: 3px solid #4c2a86; }      
.bank-tag.gopay { border-left: 3px solid #00aade; }    
.bank-tag.linkaja { border-left: 3px solid #e21f26; }  
.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; 
    margin-bottom: 20px; 
    letter-spacing: 1px; 
}
.link-col ul { list-style: none; }
.link-col ul li { margin-bottom: 10px; }
.link-col ul li a { 
    color: #ccc; 
    text-decoration: none; 
    font-size: 13px; 
    transition: 0.3s; 
}
.link-col ul li a:hover { color: #ffd700; padding-left: 5px; }

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

/* 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%; }
}

.footer-logo-wrap {
    margin-bottom: 20px;
    display: block;
}

.footer-img-logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.footer-img-logo:hover {
    transform: scale(1.05);
}

@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: #ffd700;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.jackpot-outer-box {
    position: relative;
    background: radial-gradient(circle, #240505 0%, #000000 100%);
    border: 2px solid #ffd700;
    border-radius: 8px;
    padding: 18px 10px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.25), inset 0 0 15px rgba(139, 30, 30, 0.1);
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.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: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 5px #ffd700;
    display: inline-block;
}

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

.jackpot-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
    letter-spacing: 2px;
}

/* ================= KOTAK CONTAINER UTAMA ================= */
.hero-card-box {
    background: linear-gradient(135deg, rgba(28, 5, 5, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%); 
    border: 2px solid rgba(255, 215, 0, 0.25); 
    border-radius: 24px; 
    padding: 45px 30px;
    margin: 0 auto;
    max-width: 900px; 
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 
                0 0 30px rgba(255, 215, 0, 0.15),
                inset 0 0 20px rgba(255, 215, 0, 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;
}

.hero-card-box:hover {
    transform: translateY(-4px); 
    border-color: rgba(255, 215, 0, 0.45); 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.95), 
                0 0 40px rgba(255, 215, 0, 0.25),
                inset 0 0 25px rgba(255, 215, 0, 0.08);
}

.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; }

.btn-readmore {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-readmore:hover {
    background: #ffd700;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

@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 0;
    }
    .nav-menu ul li a {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    /* HERO MOBILE */
    .hero-section {
        padding: 180px 15px 40px 15px; 
    }
    .promo-banner {
        max-width: 100%;
        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: #140d0d;
        font-weight: bold;
    }

    .hero-card-box {
        padding: 25px 15px;
        border-width: 1px;
        border-radius: 12px;
    }
    .hero-card-box .promo-banner { margin-bottom: 15px; }
    .hero-card-box .cta-buttons { margin-bottom: 20px; }
}

/* ABOUT PAGE & INNER PAGES */
.about-container { color: #e5e5e5; padding: 120px 20px 60px 20px; }
.about-container h1, .about-container h2 { color: #ffd700; font-size: 26px; border-bottom: 2px solid rgba(255, 215, 0, 0.3); padding-bottom: 10px; margin-top: 40px; margin-bottom: 20px; font-weight: bold; text-transform: uppercase; }

.toc-box { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 215, 0, 0.2); border-radius: 8px; padding: 20px; margin-bottom: 30px; }
.toc-box ul { list-style: none; padding-left: 0; margin: 0; }
.toc-box ul li { margin-bottom: 10px; }
.toc-box ul li a { color: #ffd700; text-decoration: none; font-size: 15px; transition: 0.3s; }
.toc-box ul li a:hover { color: #fff; padding-left: 5px; }

.author-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 10px; padding: 20px; display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.author-card img { width: 70px; height: 70px; border-radius: 50%; border: 2px solid #ffd700; object-fit: cover; }
.author-info strong { font-size: 18px; color: #fff; }
.author-info p { font-size: 13px; color: #aaa; margin: 0; }
.badge-verify { background: rgba(139, 30, 30, 0.2); color: #ffd700; font-size: 12px; padding: 4px 12px; border-radius: 4px; display: inline-block; margin: 8px 0; border: 1px solid rgba(255, 215, 0, 0.2); }

.checklist-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 16px; color: #ccc; }
.checklist-item span { color: #ffd700; font-weight: bold; font-size: 18px; }

.testi-card { background: rgba(255, 255, 255, 0.03); border-radius: 8px; padding: 25px; margin-bottom: 20px; border: 1px solid rgba(255, 255, 255, 0.05); border-left: 4px solid #8b1e1e; }
.testi-card p { font-style: italic; color: #ddd; margin-bottom: 15px; line-height: 1.6; }
.testi-meta { font-size: 14px; font-weight: bold; display: flex; justify-content: space-between; align-items: center; }
.testi-stars { color: #ffc107; font-size: 13px; letter-spacing: 2px; }
.win-amount { color: #ffd700; font-weight: bold; font-size: 13px; }