:root {
            --brand-primary: #D4AF37;
            --brand-primary-light: #F1D279;
            --brand-primary-dark: #AA8A2E;
            --brand-secondary: #E5E7EB;
            --brand-accent: #FF3333;
            --bg-main: #0B0E11;
            --bg-surface: #161A1E;
            --bg-elevated: #1E2329;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #9BA3AF;
            --text-disabled: #4B5563;
            --text-inverse: #000000;
            --text-gold: #D4AF37;
            --semantic-success: #00C853;
            --semantic-error: #FF5252;
            --semantic-warning: #FFD600;
            --semantic-info: #2979FF;
            --semantic-win: #00E676;
            --border-subtle: #2D333B;
            --border-default: #374151;
            --border-focused: #D4AF37;
            --font-headings: 'Montserrat', 'Inter', sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-numbers: 'Oswald', 'Roboto Mono', monospace;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

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

        .banner-container { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { background: linear-gradient(180deg, #1e2329 0%, #0b0e11 100%); padding: 20px; text-align: center; border-bottom: 2px solid var(--brand-primary); }
        .jackpot-label { color: var(--brand-primary); font-family: var(--font-headings); font-weight: 800; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
        #jackpot-amount { font-family: var(--font-numbers); font-size: 36px; color: var(--text-primary); font-weight: 600; text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }

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

        section { padding: 16px; }
        h2 { font-family: var(--font-headings); font-size: 20px; margin-bottom: 16px; color: var(--text-primary); border-left: 3px solid var(--brand-primary); padding-left: 10px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-elevated); border-radius: 8px; overflow: hidden; transition: transform 0.2s; position: relative; border: 1px solid var(--border-subtle); }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 14px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 12px; color: var(--text-secondary); }

        .trust-section { background: var(--bg-surface); margin: 16px; padding: 20px; border-radius: 12px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 30px; color: var(--text-secondary); }

        .guidelines { display: grid; gap: 16px; margin-bottom: 24px; }
        .guide-item { background: var(--bg-elevated); padding: 16px; border-radius: 10px; }
        .guide-item h3 { font-family: var(--font-headings); font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .winning-marquee { background: var(--bg-surface); padding: 10px 0; overflow: hidden; position: relative; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
        .marquee-content { display: flex; animation: scrollMarquee 40s linear infinite; gap: 20px; width: max-content; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-tag { background: var(--bg-elevated); padding: 8px 16px; border-radius: 20px; display: flex; align-items: center; gap: 10px; white-space: nowrap; border: 1px solid var(--brand-primary-dark); }
        .win-tag span:first-child { color: var(--brand-primary); font-weight: bold; }
        .win-tag .amount { color: var(--semantic-win); font-family: var(--font-numbers); }

        .providers-wall { background: var(--bg-elevated); padding: 20px; margin: 16px; border-radius: 12px; text-align: center; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .provider-name { color: var(--text-secondary); font-size: 13px; border: 1px solid var(--border-subtle); padding: 4px 10px; border-radius: 4px; }

        .review-card { background: var(--bg-elevated); padding: 16px; margin-bottom: 12px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .user-icon { font-size: 32px; color: var(--brand-primary); }
        .user-meta h4 { font-size: 14px; margin-bottom: 2px; }
        .stars { color: var(--semantic-warning); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-disabled); }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 16px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 14px; }
        .faq-answer { padding: 0 16px 16px 16px; color: var(--text-secondary); font-size: 13px; }

        .security-section { text-align: center; padding: 30px 16px; border-top: 1px solid var(--border-subtle); }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-secondary); }
        .security-text { font-size: 12px; color: var(--text-disabled); max-width: 300px; margin: 0 auto; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-subtle); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--brand-primary); }

        footer { background: var(--bg-surface); padding: 32px 16px 80px 16px; color: var(--text-secondary); }
        .footer-contact { margin-bottom: 24px; }
        .footer-contact h3 { color: var(--text-primary); margin-bottom: 12px; font-size: 16px; }
        .footer-social { display: flex; gap: 15px; flex-wrap: wrap; }
        .footer-social a { color: var(--brand-primary); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 24px; }
        .footer-links a { font-size: 13px; }
        .footer-copyright { text-align: center; font-size: 12px; padding-top: 20px; border-top: 1px solid var(--border-subtle); }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
        }