:root {
            --bg-primary: #05070A;
            --bg-secondary: #121826;
            --bg-surface: #1E293B;
            --brand-gold: #D4AF37;
            --brand-blue: #0F172A;
            --accent-yellow: #FFD700;
            --success: #10B981;
            --error: #EF4444;
            --warning: #F59E0B;
            --info: #3B82F6;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-disabled: #475569;
            --text-inverse: #05070A;
            --border-default: #2D3748;
            --border-active: #D4AF37;
            --border-subtle: #1E293B;
            --font-headers: 'Montserrat', 'Poppins', sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-numbers: 'Oswald', sans-serif;
        }

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

        header {
            position: sticky; top: 0; z-index: 1000; background: var(--bg-secondary); border-bottom: 1px solid var(--border-default); padding: 12px 16px; display: flex; justify-content: space-between; align-items: center;
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-family: var(--font-headers); font-size: 16px; font-weight: 500; color: var(--brand-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; font-family: var(--font-headers); }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-gold); color: var(--text-inverse); }

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

        .jackpot-section { background: linear-gradient(135deg, var(--brand-blue), var(--bg-secondary)); border: 2px solid var(--brand-gold); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 24px; position: relative; overflow: hidden; }
        .jackpot-label { font-family: var(--font-headers); font-size: 14px; color: var(--accent-yellow); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: var(--font-numbers); font-size: 48px; color: var(--brand-gold); text-shadow: 0 0 15px rgba(212,175,55,0.5); }

        .intro-card { background: var(--bg-secondary); border-radius: 16px; padding: 24px; margin-bottom: 24px; border: 1px solid var(--border-subtle); }
        .intro-card h1 { font-family: var(--font-headers); font-size: 24px; margin-bottom: 12px; color: var(--brand-gold); }
        .intro-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

        .section-title { font-family: var(--font-headers); font-size: 20px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; color: var(--text-primary); }
        .section-title i { color: var(--brand-gold); }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid var(--border-subtle); }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; font-weight: 500; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-license { background: var(--bg-secondary); padding: 20px; border-radius: 16px; margin-bottom: 30px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--brand-gold); }

        .guides-container { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-surface); padding: 16px; border-radius: 12px; border-left: 4px solid var(--brand-gold); }
        .guide-item h2 { font-size: 18px; margin-bottom: 8px; color: var(--brand-gold); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .lottery-section { background: var(--bg-secondary); border-radius: 16px; padding: 16px; margin-bottom: 30px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-info div:first-child { font-weight: 600; color: var(--brand-gold); font-size: 14px; }
        .lottery-info div:last-child { font-size: 12px; color: var(--text-secondary); }
        .lottery-win { font-family: var(--font-numbers); color: var(--success); font-weight: bold; }

        .providers-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 30px; scrollbar-width: none; }
        .provider-block { flex: 0 0 calc(50% - 5px); background: var(--brand-blue); border: 1px solid var(--brand-gold); padding: 12px; border-radius: 8px; text-align: center; font-weight: bold; color: var(--brand-gold); }

        .reviews-container { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-gold); border: 1px solid var(--brand-gold); }
        .review-meta h3 { font-size: 14px; }
        .stars { color: var(--accent-yellow); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-disabled); }

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

        .security-section { background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary)); padding: 24px; border-radius: 16px; text-align: center; border: 1px solid var(--border-subtle); margin-bottom: 30px; }
        .security-icons { font-size: 32px; color: var(--brand-gold); display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; }
        .security-section h2 { font-size: 18px; margin-bottom: 12px; }
        .security-section p { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
        .age-limit { display: inline-block; border: 2px solid var(--error); color: var(--error); padding: 4px 8px; border-radius: 50%; font-weight: bold; margin-bottom: 12px; }

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

        footer { background: var(--bg-secondary); padding: 40px 20px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-secondary); font-size: 14px; display: flex; align-items: center; gap: 8px; }
        .footer-contact a:hover { color: var(--brand-gold); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; margin-bottom: 30px; }
        .footer-links div { display: flex; flex-direction: column; gap: 10px; }
        .footer-links a { color: var(--text-secondary); font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-subtle); pt: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guides-container { grid-template-columns: repeat(2, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .footer-links { grid-template-columns: repeat(3, 1fr); text-align: center; }
        }