:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #1A1A1A;
            --accent: #E5E7EB;
            --bg-main: #0B0C10;
            --bg-surface: #1F2833;
            --bg-nav: #020617;
            --bg-modal: #111827;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --text-highlight: #FFD700;
            --success: #10B981;
            --warning: #F59E0B;
            --error: #EF4444;
            --jackpot: #FF0000;
            --border-default: #334155;
            --border-active: #FFD700;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-main); line-height: 1.5; overflow-x: hidden; }
        
        header { background-color: var(--bg-nav); height: 65px; 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-default); }
        .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(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 8px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; transition: 0.3s; }
        .btn-login { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: var(--secondary); }

        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; display: block; }

        .jackpot-container { background: linear-gradient(180deg, #1f2833 0%, #0b0c10 100%); margin: 15px; padding: 20px; border-radius: 15px; border: 2px solid var(--primary); text-align: center; position: relative; overflow: hidden; }
        .jackpot-title { font-family: var(--font-heading); color: var(--text-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--primary); margin: 10px 0; font-family: 'Courier New', monospace; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; border: 1px solid var(--border-subtle); }
        .intro-card h1 { font-family: var(--font-heading); font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }

        .section-title { font-family: var(--font-heading); font-size: 18px; margin: 20px 15px 10px; border-left: 4px solid var(--primary); padding-left: 10px; color: var(--text-primary); }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .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; color: var(--text-primary); text-align: center; }

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

        .guide-section { padding: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-bottom: 2px solid var(--border-subtle); }
        .guide-card h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }

        .lottery-section { margin: 15px; background: var(--bg-surface); border-radius: 12px; padding: 10px; max-height: 300px; overflow-y: auto; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid var(--border-subtle); font-size: 12px; }
        .lottery-user { color: var(--primary); font-weight: 600; }
        .lottery-win { color: var(--success); font-weight: 700; }

        .providers-section { padding: 0 15px; margin-bottom: 20px; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .provider-item { background: var(--bg-surface); padding: 10px; border-radius: 8px; text-align: center; font-weight: 600; color: var(--accent); border: 1px solid var(--border-default); }

        .reviews-section { padding: 0 15px; }
        .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: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-info h3 { font-size: 14px; color: var(--primary); }
        .stars { color: var(--warning); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; }

        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }

        .security-section { margin: 15px; padding: 20px; background: #020617; border-radius: 12px; text-align: center; border: 1px dashed var(--border-default); }
        .security-section h2 { font-size: 16px; margin-bottom: 15px; color: var(--primary); }
        .security-logos { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-muted); }
        .security-text { font-size: 12px; color: var(--text-secondary); }

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

        footer { background: var(--bg-nav); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contact { margin-bottom: 20px; }
        .footer-contact a { color: var(--primary); text-decoration: none; margin: 0 10px; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 12px; }
        .footer-copy { font-size: 11px; color: var(--text-muted); }

        @media (min-width: 1000px) {
            main { max-width: 1000px; }
            .game-grid { grid-template-columns: repeat(3, 1fr); }
        }