:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F1D279;
            --primary-gold-dark: #996515;
            --secondary-emerald: #064E3B;
            --accent-crimson: #991B1B;
            --bg-base: #020617;
            --bg-surface: #0F172A;
            --bg-elevated: #1E293B;
            --text-primary: #F8FAFC;
            --text-secondary: #94A3B8;
            --gold-text: #EAB308;
            --success: #22C55E;
            --win: #10B981;
            --border-subtle: #1E293B;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-base); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--primary-gold-light); }
        a { text-decoration: none; color: inherit; }

        header {
            position: sticky; top: 0; z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 15px;
            display: flex; justify-content: space-between; align-items: center;
        }
        .header-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo img { width: 25px; height: 25px; object-fit: contain; }
        .header-logo strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid var(--primary-gold); color: var(--primary-gold); }
        .btn-reg { background: var(--primary-gold); color: var(--bg-base); }
        .btn:active { transform: scale(0.95); }

        main { max-width: 1200px; margin: 0 auto; padding: 15px; }
        
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
            border: 2px solid var(--primary-gold-dark);
            border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px;
            position: relative; overflow: hidden;
        }
        .jackpot-title { color: var(--text-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { 
            font-size: 36px; font-weight: 900; color: var(--primary-gold); 
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.4); font-family: 'Fira Code', monospace;
        }

        .intro-card { background: var(--bg-surface); padding: 25px; border-radius: 12px; margin-bottom: 30px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }

        .section-header { margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 20px; border-left: 3px solid var(--accent-crimson); padding-left: 10px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; transition: 0.3s; border: 1px solid var(--border-subtle); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); }

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

        .guides-container { display: grid; gap: 15px; margin-bottom: 30px; }
        .guide-box { background: var(--bg-surface); padding: 20px; border-radius: 12px; }
        .guide-box h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary-gold); }
        .guide-box p { font-size: 14px; color: var(--text-secondary); }

        .records-table { background: var(--bg-surface); border-radius: 12px; overflow: hidden; margin-bottom: 30px; }
        .record-row { padding: 12px 15px; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; }
        .record-user { font-weight: 600; color: var(--primary-gold-light); }
        .record-game { font-size: 13px; color: var(--text-secondary); }
        .record-win { color: var(--win); font-weight: 700; }

        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
        .provider-block { background: var(--secondary-emerald); color: white; padding: 15px; text-align: center; border-radius: 8px; font-weight: bold; font-size: 14px; }
        .provider-block:nth-child(even) { background: var(--bg-elevated); border: 1px solid var(--secondary-emerald); }

        .reviews-container { display: grid; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: var(--primary-gold); }
        .stars { color: #F59E0B; margin-bottom: 8px; }
        .review-content { font-size: 14px; font-style: italic; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; color: var(--primary-gold-light); border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }

        .safety-section { background: var(--bg-elevated); padding: 25px; border-radius: 12px; text-align: center; margin-bottom: 30px; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .safety-text { font-size: 13px; color: var(--text-secondary); }

        .navigator {
            position: fixed; bottom: 0; left: 0; right: 0; height: 65px;
            background: var(--bg-surface); border-top: 1px solid var(--primary-gold-dark);
            display: flex; justify-content: space-around; align-items: center; z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; display: block; }
        .nav-item:active { color: var(--primary-gold); }

        footer { background: var(--bg-surface); padding: 30px 20px 100px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .footer-socials { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-socials a { color: var(--text-secondary); font-size: 14px; padding: 5px 10px; border: 1px solid var(--border-subtle); border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .guides-container, .reviews-container { grid-template-columns: 1fr 1fr; }
        }