:root {
            --primary-gold: #D4AF37;
            --primary-gold-hover: #F2D272;
            --secondary-emerald: #008542;
            --accent-red: #E63946;
            --bg-main: #050505;
            --bg-surface: #121212;
            --bg-card: #1A1A1A;
            --text-primary: #FFFFFF;
            --text-secondary: #CCCCCC;
            --text-muted: #888888;
            --border-default: #2C2C2C;
            --font-primary: 'Montserrat', 'Inter', -apple-system, sans-serif;
        }

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

        header { background: var(--bg-surface); border-bottom: 1px solid var(--border-default); padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; }
        header .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text-primary); }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        header .actions { display: flex; gap: 10px; }
        header button { padding: 8px 16px; border-radius: 20px; 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: var(--primary-gold); color: #000; }

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

        .jackpot-box { background: linear-gradient(135deg, #1a1a1a, #000); border: 2px solid var(--primary-gold); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-title { color: var(--primary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

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

        .section-title { font-size: 18px; margin: 20px 0 15px; color: var(--primary-gold); display: flex; align-items: center; gap: 10px; }
        .section-title::after { content: ''; flex: 1; height: 1px; background: var(--border-default); }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .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: 13px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-methods { background: var(--bg-card); border-radius: 15px; padding: 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 25px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-muted); font-size: 10px; }
        .payment-item i { font-size: 20px; color: var(--primary-gold); }

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

        .lottery-list { background: var(--bg-card); border-radius: 15px; padding: 5px; margin-bottom: 25px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid var(--border-default); }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-info div:first-child { font-weight: bold; color: var(--primary-gold); font-size: 14px; }
        .lottery-info div:last-child { font-size: 11px; color: var(--text-muted); }
        .lottery-win { color: var(--secondary-emerald); font-weight: 700; font-size: 14px; }

        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-tag { background: linear-gradient(90deg, #1a1a1a, #2a2a2a); padding: 10px; border-radius: 8px; text-align: center; font-size: 12px; font-weight: 600; color: var(--text-secondary); border: 1px solid var(--border-default); }

        .review-card { background: var(--bg-card); border-radius: 15px; padding: 15px; margin-bottom: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primary-gold); }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-rating { color: #FFC107; 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; text-align: right; }

        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: var(--primary-gold); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); }

        .security-section { background: #000; border: 1px solid var(--accent-red); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-red); }
        .security-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); 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-muted); display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .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-default); }
        .footer-contacts { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 13px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 12px; }
        .footer-copy { font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border-default); pt: 20px; }