* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Montserrat', sans-serif; 
    /* Background Biru Tua Gelap sesuai skema warna iGamble247 */
    background: radial-gradient(circle at top, #0d2230 0%, #060e14 100%); 
    color: #e5e5e5; 
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ================= HEADER ================= */
.main-header { 
    background-color: rgba(6, 14, 20, 0.95); 
    backdrop-filter: blur(10px); 
    border-bottom: 2px solid #00b3ff;
    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: #8ebccb;
    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 - Bright Blue Gradient */
.btn-login { 
    background: linear-gradient(45deg, #0088cc, #00b3ff);
    color: #ffffff; 
    border: 1px solid #00d2ff;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

/* Tombol Daftar - Premium Gold Orange Glowing Gradient */
.btn-register { 
    background: linear-gradient(45deg, #cc8500, #ffb833, #e69500);  
    color: #03080d; 
    font-weight: 900;
    border: 1px solid #ffe066;
    box-shadow: 0 0 25px rgba(230, 149, 0, 0.45);
    transform: scale(1.05); 
}

/* 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: #00b3ff;
    border-color: #00e1ff;
    box-shadow: 0 0 20px rgba(0, 179, 255, 0.5);
}

.btn-register:hover {
    transform: translateY(-4px) scale(1.08); 
    filter: brightness(1.15);
    box-shadow: 0 0 30px rgba(255, 184, 51, 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, 179, 255, 0.1);
}
.info-table td { padding: 15px; border-bottom: 1px solid #1a2f3d; }
.info-table td:first-child { width: 35%; color: #00b3ff; font-weight: bold; background: rgba(0, 179, 255, 0.05); }
.highlight { color: #00b3ff; font-weight: bold; }

/* ================= ARTICLE GRID ================= */
.content-section { padding: 50px 0; }
.content-section h2, .article-body h2, .article-body h3 {
    color: #00b3ff;
    border-left: 4px solid #00b3ff;
    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; 
    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;
    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(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;
}

@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.3); }
.faq-item { background: #0c1c26; border: 1px solid #1a3547; 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: 350px; padding-bottom: 20px; }

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

/* 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(0, 179, 255, 0.02);
    border: 1px solid rgba(0, 179, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.badge-item:hover {
    border-color: #00b3ff;
    background: rgba(0, 179, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.15);
    transform: translateY(-3px);
}

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

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

.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; 
    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: 550px; 
}
.bank-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    background: #091a26;
    border: 1px solid rgba(0, 179, 255, 0.2);
    color: #8ebccb;
}
.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;
}
.bank-tag.crypto {
    border-left: 3px solid #f7931a;
    background: linear-gradient(90deg, #091a26, #142f44);
    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; 
    margin-top: 0;
}
.link-col ul { list-style: none; }
.link-col ul li { margin-bottom: 10px; }
.link-col ul li a { 
    color: #9f9f9f; 
    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; 
}

/* 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; 
    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: #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, #092030 0%, #03080d 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, 179, 255, 0.05);
    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: #00b3ff;
    border-radius: 50%;
    box-shadow: 0 0 5px #00b3ff;
    display: inline-block;
}

.jackpot-display {
    border: 1px stroke rgba(0, 179, 255, 0.3);
    outline: 1px solid rgba(0, 179, 255, 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: #00b3ff;
    text-shadow: 0 0 12px rgba(0, 179, 255, 0.9);
    letter-spacing: 2px;
}

/* ================= KOTAK CONTAINER UTAMA ================= */
.hero-card-box {
    background: linear-gradient(135deg, rgba(13, 34, 48, 0.85) 0%, rgba(6, 14, 20, 0.95) 100%); 
    border: 2px solid rgba(0, 179, 255, 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(0, 179, 255, 0.15),
                inset 0 0 20px rgba(0, 179, 255, 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(0, 179, 255, 0.45); 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.95), 
                0 0 40px rgba(0, 179, 255, 0.25),
                inset 0 0 25px rgba(0, 179, 255, 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: #d4af37;
    border: 2px solid #d4af37;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-readmore:hover {
    background: #d4af37;
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .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-section { padding: 130px 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; }
    .info-table td { display: block; width: 100% !important; }
    .info-table td:first-child { background-color: #122838; font-weight: bold; }
    .footer-grid { flex-direction: column; }
    .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; }
}

/* Styling halaman dalam */
.about-container { color: #e5e5e5; padding: 120px 20px 60px 20px; }
.about-container h2 { color: #d4af37; font-size: 26px; border-bottom: 2px solid rgba(212, 169, 55, 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(212, 175, 55, 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: #00b3ff; text-decoration: none; font-size: 15px; transition: 0.3s; }
.toc-box ul li a:hover { color: #d4af37; padding-left: 5px; }

.author-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(212, 175, 55, 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 #d4af37; 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(0, 179, 255, 0.1); color: #00b3ff; font-size: 12px; padding: 4px 12px; border-radius: 4px; display: inline-block; margin: 8px 0; border: 1px solid rgba(0, 179, 255, 0.2); }

.checklist-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 16px; color: #ccc; }
.checklist-item span { color: #00b3ff; 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 #d4af37; }
.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: #00b3ff; font-weight: bold; font-size: 13px; }