:root {
            --brand-primary: #FFD700;
            --brand-primary-hover: #F5C400;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4D4D;
            --bg-default: #0F1115;
            --bg-paper: #1A1D23;
            --bg-surface: #242931;
            --bg-contrast: #050505;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-hint: #8A8D91;
            --text-brand: #FFD700;
            --border-default: #2D323A;
            --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-default);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }

        header {
            background-color: var(--bg-paper);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            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: 500; color: var(--text-brand); }

        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: var(--font-heading);
            font-size: 14px;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: var(--bg-contrast); }
        .btn-register:hover { background: var(--brand-primary-hover); }

        main { padding: 0; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(135deg, #1A1D23 0%, #050505 100%);
            padding: 20px;
            text-align: center;
            margin: 16px;
            border-radius: 12px;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--brand-primary); font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; margin-bottom: 8px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 28px; font-weight: 800; color: #FFFFFF; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

        .intro-card { padding: 24px 16px; margin: 16px; background: var(--bg-paper); border-radius: 12px; }
        .intro-card h1 { font-family: var(--font-heading); font-size: 22px; color: var(--brand-primary); margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .section-title { padding: 0 16px; margin-top: 24px; margin-bottom: 12px; font-family: var(--font-heading); font-size: 18px; color: var(--text-primary); border-left: 4px solid var(--brand-primary); margin-left: 16px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-img-wrapper { aspect-ratio: 1/1; width: 100%; position: relative; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
        .game-provider { font-size: 12px; color: var(--text-hint); }

        .trust-section { background: var(--bg-paper); padding: 20px 16px; margin: 24px 16px; border-radius: 12px; }
        .payment-icons, .provider-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; margin-top: 15px; }
        .payment-icons i { font-size: 24px; color: var(--text-secondary); }
        .provider-text-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 15px; }
        .provider-tag { background: var(--bg-surface); padding: 6px 12px; border-radius: 20px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-default); }

        .guidelines { padding: 0 16px; margin-top: 20px; }
        .guide-item { background: var(--bg-paper); padding: 16px; border-radius: 10px; margin-bottom: 12px; }
        .guide-item h2 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; font-family: var(--font-heading); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .winner-marquee { background: var(--bg-surface); padding: 12px 0; margin: 24px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; animation: marquee 40s linear infinite; gap: 30px; }
        .winner-item { white-space: nowrap; color: var(--text-secondary); font-size: 13px; display: flex; align-items: center; gap: 8px; }
        .winner-item b { color: var(--brand-primary); }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .reviews { padding: 0 16px; display: flex; flex-direction: column; gap: 16px; }
        .review-card { background: var(--bg-paper); padding: 16px; border-radius: 10px; border-left: 3px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-hint); }
        .review-meta { flex: 1; }
        .review-name { font-weight: 600; font-size: 14px; }
        .review-rating { color: var(--brand-primary); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-hint); }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-section { padding: 0 16px; margin-bottom: 24px; }
        .faq-item { background: var(--bg-paper); border-radius: 8px; margin-bottom: 8px; padding: 16px; }
        .faq-item h2 { font-size: 15px; margin-bottom: 8px; color: var(--text-brand); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

        .security-section { padding: 20px 16px; background: var(--bg-paper); margin: 16px; border-radius: 12px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge { font-size: 12px; color: var(--text-hint); display: flex; align-items: center; gap: 5px; }
        .badge i { color: var(--semantic-success); }

        footer { background: var(--bg-contrast); padding: 30px 16px 100px; color: var(--text-hint); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-hint); text-decoration: none; font-size: 12px; }
        .footer-copyright { text-align: center; font-size: 11px; border-top: 1px solid var(--border-default); padding-top: 20px; }

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

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