:root {
            --brand-primary: #FFD700;
            --brand-primary-variant: #B8860B;
            --brand-secondary: #D32F2F;
            --brand-accent: #00C853;
            --bg-main: #0D1117;
            --bg-surface: #161B22;
            --bg-elevated: #21262D;
            --bg-modal: #010409;
            --text-primary: #FFFFFF;
            --text-secondary: #8B949E;
            --text-muted: #484F58;
            --text-on-brand: #000000;
            --border-default: #30363D;
            --border-strong: #484F58;
            --border-active: #FFD700;
            --semantic-success: #238636;
            --semantic-warning: #D29922;
            --semantic-error: #F85149;
            --semantic-info: #58A6FF;
            --font-primary: '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-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            padding-bottom: 70px;
        }

        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }
        h1 { font-size: 32px; line-height: 1.2; margin-bottom: 1rem; color: var(--brand-primary); }
        h2 { font-size: 24px; line-height: 1.3; margin: 2rem 0 1rem; text-align: center; }
        h3 { font-size: 16px; line-height: 1.4; margin-top: 8px; font-weight: 600; }

        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; text-decoration: none; color: inherit; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; margin-right: 8px; }
        .logo-box strong { font-size: 16px; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
        
        .auth-btns button {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: 0.3s;
        }
        .login-btn { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary) !important; margin-right: 8px; }
        .register-btn { background: var(--brand-primary); color: var(--text-on-brand); }

        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; border-radius: 12px; margin-top: 15px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
            border: 1px solid var(--brand-primary-variant);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        }
        .jackpot-label { color: var(--brand-primary); font-size: 14px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
        .jackpot-amount { font-size: 36px; font-family: var(--font-heading); color: var(--text-primary); font-weight: 900; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

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

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
        .game-img-wrapper { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-provider { font-size: 12px; color: var(--text-muted); text-transform: uppercase; }

        .payment-section { background: var(--bg-surface); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 30px; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; }
        .payment-icons i { font-size: 30px; color: var(--text-secondary); opacity: 0.8; }
        .payment-label { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

        .guidelines { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 30px 0; }
        .guide-item { background: var(--bg-elevated); padding: 20px; border-radius: 10px; border: 1px solid var(--border-default); }
        .guide-item h3 { color: var(--brand-primary); margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .winners-marquee { background: var(--bg-modal); padding: 15px 0; overflow: hidden; position: relative; margin: 30px 0; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; width: max-content; }
        .winner-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 13px; background: var(--bg-surface); padding: 8px 15px; border-radius: 50px; border: 1px solid var(--border-strong); }
        .winner-val { color: var(--brand-accent); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; padding: 20px 0; }
        .provider-tag { background: var(--bg-elevated); padding: 8px 16px; border-radius: 4px; border: 1px solid var(--border-default); font-size: 14px; color: var(--text-secondary); }

        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 30px 0; }
        .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: 12px; margin-bottom: 15px; }
        .user-avatar { width: 40px; height: 40px; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--brand-primary); }
        .rating { color: var(--semantic-warning); font-size: 12px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

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

        .security-section { background: var(--bg-modal); padding: 30px 20px; border-radius: 15px; text-align: center; margin-top: 40px; border: 1px dashed var(--border-strong); }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .security-badges i { font-size: 24px; color: var(--brand-accent); }

        .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-secondary); text-align: center; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; font-weight: 500; }

        footer { background: var(--bg-modal); padding: 40px 0 80px; border-top: 1px solid var(--border-default); font-size: 14px; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-contacts a { color: var(--brand-primary); text-decoration: none; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 30px; text-align: center; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; }
        .copyright { text-align: center; color: var(--text-muted); font-size: 12px; padding: 0 20px; }

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