:root {
            --primary: #D4AF37;
            --primary-hover: #F9E076;
            --secondary: #00A86B;
            --accent: #FFD700;
            --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F9E076 50%, #996515 100%);
            --bg-main: #0A0B0D;
            --bg-surface: #16181D;
            --bg-elevated: #22252C;
            --text-primary: #FFFFFF;
            --text-secondary: #9CA3AF;
            --text-muted: #6B7280;
            --border-default: #2D3139;
            --win: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background: var(--bg-surface);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.875rem;
            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(--gold-gradient); color: #000; }
        .btn-register:hover { opacity: 0.9; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; border-radius: 0 0 12px 12px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: var(--bg-surface);
            margin: 20px 0;
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            border: 1px solid var(--primary);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            color: var(--win);
            font-weight: 700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-card {
            background: var(--bg-elevated);
            padding: 24px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 1.25rem; margin-bottom: 12px; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 0.9375rem; }
        .section-title { margin: 25px 0 15px; font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 24px; background: var(--secondary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            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; }
        .game-info h3 { font-size: 0.875rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 0.75rem; color: var(--text-muted); }
        .trust-section {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin: 25px 0;
            text-align: center;
        }
        .icon-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; opacity: 0.8; }
        .icon-flex i { font-size: 24px; color: var(--text-secondary); }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-card { background: var(--bg-elevated); padding: 20px; border-radius: 12px; }
        .guide-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
        .guide-card p { font-size: 0.875rem; color: var(--text-secondary); }
        .marquee-container {
            background: rgba(22, 24, 29, 0.8);
            border: 1px solid var(--border-default);
            border-radius: 8px;
            height: 120px;
            overflow: hidden;
            position: relative;
            margin: 25px 0;
        }
        .marquee-content {
            position: absolute;
            width: 100%;
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .winner-item {
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-default);
        }
        .winner-name { color: var(--primary); font-weight: 600; font-size: 0.875rem; }
        .winner-amount { color: var(--secondary); font-weight: 700; font-family: 'Oswald', sans-serif; }
        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
        }
        .provider-tag {
            padding: 6px 12px;
            background: var(--bg-elevated);
            border: 1px solid var(--border-default);
            border-radius: 20px;
            font-size: 0.8125rem;
            color: var(--text-secondary);
        }
        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-header i { font-size: 32px; color: var(--text-muted); }
        .rating { color: var(--accent); font-size: 0.75rem; }
        .faq-section { margin-top: 30px; }
        .faq-item { background: var(--bg-elevated); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 0.875rem; }
        .security-section {
            background: linear-gradient(to bottom, var(--bg-surface), #000);
            padding: 30px 20px;
            text-align: center;
            border-radius: 12px;
            margin: 30px 0;
        }
        .security-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; }
        .badge-18 {
            width: 40px; height: 40px; border: 2px solid var(--error); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; color: var(--error); font-weight: 900;
        }
        .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: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 0.7rem; }
        .nav-item i { display: block; font-size: 1.25rem; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }
        footer { padding: 40px 15px 100px; background: #050505; color: var(--text-muted); border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 30px; }
        .footer-contacts a { color: var(--text-primary); font-size: 0.875rem; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; }
        .footer-links a { font-size: 0.8125rem; display: block; margin-bottom: 8px; }
        .copyright { text-align: center; margin-top: 30px; font-size: 0.75rem; border-top: 1px solid var(--border-default); padding-top: 20px; }