:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #151921;
            --bg-surface: #1F2630;
            --bg-hover: #2B3139;
            --brand-gold: #D4AF37;
            --brand-gold-light: #FFD700;
            --brand-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --action-red: #E02020;
            --trust-blue: #0052FF;
            --success: #00C853;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-tersyaryo: #64748B;
            --border-soft: #2D3748;
            --font-main: 'Montserrat', system-ui, -apple-system, sans-serif;
            --font-display: 'Poppins', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-primary); 
            color: var(--text-primary); 
            font-family: var(--font-main); 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        header {
            background-color: var(--bg-secondary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-soft);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-gold-light); }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-soft); }
        .btn-register { background: var(--brand-gradient); color: #000; }

        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        
        .banner-container { 
            width: 100%; 
            aspect-ratio: 2/1; 
            border-radius: 12px; 
            overflow: hidden; 
            margin-bottom: 15px;
            cursor: pointer;
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box {
            background: var(--bg-surface);
            border: 1px solid var(--brand-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--brand-gold-light); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { 
            font-family: var(--font-display); 
            font-size: 32px; 
            font-weight: 800; 
            color: var(--text-primary); 
            margin-top: 5px;
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--brand-gold-light); }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }

        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--brand-gold); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 10px; 
            overflow: hidden; 
            text-decoration: none; 
            transition: 0.3s;
        }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { color: var(--text-primary); font-size: 13px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .payment-item {
            background: var(--bg-secondary);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 10px;
            color: var(--text-secondary);
        }
        .payment-item i { font-size: 20px; color: var(--brand-gold); display: block; margin-bottom: 5px; }

        .guide-section { margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 10px; }
        .guide-card h2 { font-size: 16px; margin-bottom: 8px; color: var(--brand-gold-light); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .lottery-section { background: var(--bg-secondary); border-radius: 12px; padding: 15px; margin-bottom: 20px; }
        .lottery-item { 
            display: flex; 
            justify-content: space-between; 
            padding: 10px 0; 
            border-bottom: 1px solid var(--border-soft); 
            font-size: 13px; 
        }
        .lottery-item:last-child { border: none; }
        .win-user { color: var(--brand-gold-light); }
        .win-amount { color: var(--success); font-weight: bold; }

        .providers-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
        .provider-btn { background: var(--bg-hover); padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; font-size: 13px; border: 1px solid var(--border-soft); }

        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 24px; color: var(--text-tersyaryo); }
        .stars { color: #FFD700; font-size: 12px; }

        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--brand-gold-light); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-section { text-align: center; padding: 20px; background: var(--bg-secondary); border-radius: 12px; margin-bottom: 20px; border: 1px dashed var(--border-soft); }
        .security-icons { font-size: 24px; display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: var(--brand-gold); }
        .age-limit { display: inline-block; border: 2px solid var(--action-red); color: var(--action-red); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; margin-bottom: 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-soft);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }

        footer {
            background-color: var(--bg-primary);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-soft);
            text-align: center;
        }
        .footer-contact { margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-contact a { color: var(--brand-gold-light); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: 0.2s; }
        .footer-links a:hover { color: var(--brand-gold-light); }
        .copyright { font-size: 12px; color: var(--text-tersyaryo); border-top: 1px solid var(--border-soft); padding-top: 20px; }