:root {
            --primary: #D4AF37;
            --primary-light: #F9E498;
            --primary-dark: #997A1D;
            --accent: #FF4D4D;
            --gold-gradient: linear-gradient(180deg, #F9E498 0%, #D4AF37 100%);
            --bg-main: #0B0E11;
            --bg-surface: #161A1E;
            --bg-elevated: #21262C;
            --text-primary: #FFFFFF;
            --text-secondary: #9BA3AF;
            --text-muted: #6B7280;
            --border-subtle: #2D333B;
            --border-active: #D4AF37;
            --font-main: 'Inter', sans-serif;
            --font-display: 'Montserrat', 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; -webkit-tap-highlight-color: transparent; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { position: sticky; top: 0; z-index: 1000; background: var(--bg-surface); border-bottom: 1px solid var(--border-subtle); padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: 400; font-family: var(--font-display); color: var(--primary); }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--gold-gradient); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 15px; }
        .banner-box { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-card { background: var(--bg-elevated); border: 1px solid var(--primary); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 0 20px rgba(212, 175, 55, 0.15); }
        .jackpot-title { font-family: var(--font-display); font-size: 14px; color: var(--primary-light); text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: var(--primary); background: linear-gradient(180deg, #F9E498 0%, #D4AF37 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .intro-card { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 25px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; color: var(--primary-light); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
        .section-header h2 { font-family: var(--font-display); font-size: 18px; color: var(--text-primary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
        .trust-section { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 30px; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; opacity: 0.7; }
        .trust-grid i { font-size: 24px; color: var(--text-secondary); }
        .guidelines { display: grid; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .winners-marquee { background: var(--bg-surface); padding: 10px 0; overflow: hidden; white-space: nowrap; margin-bottom: 30px; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
        .marquee-content { display: inline-flex; animation: scroll 40s linear infinite; }
        .winner-tag { display: flex; align-items: center; gap: 10px; background: var(--bg-elevated); padding: 8px 15px; border-radius: 20px; margin-right: 15px; font-size: 12px; border: 1px solid var(--border-subtle); }
        .winner-tag strong { color: var(--primary); }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { background: var(--bg-surface); padding: 15px; border-radius: 12px; text-align: center; margin-bottom: 30px; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }
        .provider-badge { padding: 5px 12px; background: var(--bg-elevated); border-radius: 4px; font-size: 11px; color: var(--text-secondary); font-weight: 600; border: 1px solid var(--border-subtle); }
        .reviews-grid { display: grid; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 20px; color: var(--primary); }
        .stars { color: #FFAB00; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { display: grid; gap: 12px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; padding: 15px; border: 1px solid var(--border-subtle); }
        .faq-item h2 { font-size: 15px; color: var(--primary-light); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-box { background: var(--bg-elevated); padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--border-subtle); margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-muted); }
        .security-box p { font-size: 12px; color: var(--text-muted); }
        .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-subtle); z-index: 1001; }
        .nav-item { text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; display: block; }
        .nav-item span { font-size: 10px; font-weight: 500; }
        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contacts a { color: var(--primary); font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); transition: 0.2s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { text-align: center; font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }