:root {
            --primary-gold: #D4AF37;
            --gold-light: #F9E076;
            --gold-dark: #996515;
            --accent-emerald: #00A86B;
            --bg-base: #0B0E11;
            --bg-surface: #1E2125;
            --bg-elevated: #2C2F33;
            --bg-contrast: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #6C757D;
            --border-default: #3E4246;
            --success: #28A745;
            --error: #DC3545;
            --hot: #FF4500;
            --font-main: 'Montserrat', 'Inter', sans-serif;
            --font-display: 'Archivo Black', 'Roboto', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-base); color: var(--text-primary); font-family: var(--font-main); line-height: 1.5; padding-bottom: 70px; }
        header { background: var(--bg-contrast); 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-default); }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); font-family: var(--font-display); }
        header .auth-btns { display: flex; gap: 10px; }
        header button { padding: 6px 15px; border-radius: 4px; border: none; font-weight: 600; cursor: pointer; font-size: 14px; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary-gold); }
        .btn-reg { background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark)); color: var(--bg-contrast); }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; aspect-ratio: 2/1; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { background: var(--bg-surface); border: 2px solid var(--primary-gold); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
        .jackpot-box h2 { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-family: var(--font-display); font-size: 32px; color: var(--primary-gold); text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
        .intro-card { background: var(--bg-elevated); padding: 20px; border-radius: 15px; margin-bottom: 20px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: var(--primary-gold); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-family: var(--font-display); font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: var(--primary-gold); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 13px; color: var(--text-primary); padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { background: var(--bg-surface); padding: 15px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 20px; }
        .pay-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); font-size: 10px; }
        .pay-item i { font-size: 20px; color: var(--primary-gold); }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; }
        .guide-card h3 { color: var(--gold-light); margin-bottom: 8px; font-size: 16px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .lottery-list { background: var(--bg-contrast); border-radius: 12px; padding: 10px; margin-bottom: 20px; border: 1px solid var(--border-default); }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid var(--bg-surface); font-size: 12px; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-info strong { color: var(--primary-gold); }
        .lottery-win { color: var(--success); font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-box { background: linear-gradient(45deg, var(--bg-surface), var(--bg-elevated)); padding: 15px; text-align: center; border-radius: 8px; border: 1px solid var(--border-default); color: var(--primary-gold); font-weight: bold; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .stars { color: #FFC107; font-size: 12px; }
        .review-content { font-size: 13px; font-style: italic; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin-bottom: 20px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-item h3 { font-size: 14px; padding: 12px; cursor: pointer; color: var(--gold-light); border-bottom: 1px solid var(--border-default); }
        .faq-content { padding: 12px; font-size: 13px; color: var(--text-secondary); }
        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 20px; border: 1px solid var(--accent-emerald); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-emerald); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-contrast); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) i { color: var(--primary-gold); font-size: 24px; }
        footer { background: var(--bg-contrast); padding: 30px 15px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 20px; text-align: left; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 12px; }
        .copyright { font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border-default); pt: 15px; }