:root {
            --brand-primary: #FFD700;
            --brand-dark: #B8860B;
            --brand-secondary: #0052CC;
            --brand-accent: #FF4500;
            --bg-base: #0A0B0D;
            --bg-surface: #16181C;
            --bg-overlay: #1F2229;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --border-default: #2D3139;
            --semantic-money: #2ECC71;
            --font-main: 'Inter', sans-serif;
            --font-heading: 'Montserrat', 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; }
        a { text-decoration: none; color: inherit; }

        header {
            height: 60px;
            background: var(--bg-surface);
            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; font-family: var(--font-heading); color: var(--brand-primary); }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: #000; }

        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .hero-banner { width: 100%; aspect-ratio: 2 / 1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(135deg, #1f1b00 0%, #000000 100%);
            border: 2px solid var(--brand-primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { font-family: var(--font-heading); color: var(--brand-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        #jackpot-amount { font-family: 'JetBrains Mono', monospace; font-size: 32px; font-weight: 900; color: var(--semantic-money); text-shadow: 0 0 15px rgba(46, 204, 113, 0.5); }

        .platform-intro { background: var(--bg-surface); border-radius: 12px; padding: 25px; margin-bottom: 25px; border-left: 4px solid var(--brand-primary); }
        .platform-intro h1 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 12px; color: var(--brand-primary); }
        .platform-intro p { color: var(--text-secondary); font-size: 15px; }

        .section-title { font-family: var(--font-heading); font-size: 20px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--brand-primary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; 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-info { padding: 10px; }
        .game-info h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-primary); }
        .game-info p { font-size: 12px; color: var(--text-muted); }

        .trust-section { background: var(--bg-overlay); padding: 20px; border-radius: 12px; margin-bottom: 25px; text-align: center; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .trust-icons i { font-size: 24px; color: var(--text-secondary); opacity: 0.8; }
        .provider-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 10px; }
        .provider-tag { background: var(--bg-surface); padding: 5px 12px; border-radius: 20px; font-size: 12px; border: 1px solid var(--border-default); }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; }
        .guide-card h2 { font-size: 18px; margin-bottom: 10px; color: var(--brand-primary); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .marquee-container { background: var(--bg-surface); padding: 10px 0; overflow: hidden; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); margin-bottom: 25px; }
        .marquee-track { display: flex; white-space: nowrap; animation: scroll 40s linear infinite; gap: 30px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-item { font-size: 13px; color: var(--text-secondary); background: var(--bg-overlay); padding: 5px 15px; border-radius: 20px; }
        .winner-item span { color: var(--semantic-money); font-weight: bold; }

        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 20px; 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(--brand-primary); }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--brand-primary); font-size: 12px; margin: 5px 0; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }

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

        .responsible-gaming { background: #1a0000; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #4a0000; margin-bottom: 25px; }
        .age-limit { display: inline-block; width: 40px; height: 40px; border: 2px solid #fff; border-radius: 50%; line-height: 36px; font-weight: 900; margin-bottom: 10px; }

        .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; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { text-align: center; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        .nav-item:active i { color: var(--brand-primary); }

        footer { background: var(--bg-surface); padding: 30px 15px 80px; border-top: 1px solid var(--border-default); }
        .footer-contacts { margin-bottom: 25px; text-align: center; }
        .footer-contacts h2 { font-size: 18px; margin-bottom: 15px; }
        .footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; text-align: left; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { text-align: center; margin-top: 30px; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
        }