:root {
            --primary: #D4AF37;
            --primary-hover: #F7E0A1;
            --primary-active: #B8860B;
            --secondary: #1E293B;
            --accent: #FFD700;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --border-default: #3F3F46;
            --jackpot: #FF0000;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numbers: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { padding: 0 16px; max-width: 1200px; margin: 0 auto; }
        
        header {
            background: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            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;
            width: 100%;
            padding: 0 16px;
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .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; }
        .header-buttons { 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(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        .btn-register:hover { background: var(--primary-hover); }

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

        .jackpot-section {
            background: linear-gradient(180deg, #262626 0%, #0F0F0F 100%);
            padding: 20px 16px;
            text-align: center;
            margin: 15px 0;
            border-radius: 12px;
            border: 1px solid var(--primary);
        }
        .jackpot-title { font-family: var(--font-headings); color: var(--accent); font-size: 14px; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: var(--font-numbers);
            font-size: 36px;
            color: var(--jackpot);
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
        }

        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin: 15px 16px; }
        .intro-card h1 { font-family: var(--font-headings); font-size: 24px; color: var(--primary); margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }

        .section-title { font-family: var(--font-headings); font-size: 20px; margin: 20px 16px 15px; border-left: 4px solid var(--primary); padding-left: 10px; }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 16px;
            margin-bottom: 20px;
        }
        .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.95); }
        .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; }
        .game-info h3 { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-info span { font-size: 12px; color: var(--text-muted); }

        .trust-section { background: var(--bg-surface); padding: 20px 16px; margin: 20px 0; text-align: center; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; opacity: 0.8; }
        .trust-icons i { font-size: 30px; color: var(--text-secondary); }

        .guidelines { padding: 0 16px; margin-bottom: 20px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .guide-item h2 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .marquee-container {
            background: var(--bg-surface);
            padding: 15px 0;
            margin: 20px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        .winner-tag {
            display: inline-flex;
            align-items: center;
            background: var(--bg-elevated);
            padding: 8px 15px;
            border-radius: 30px;
            margin-right: 15px;
            border: 1px solid var(--border-default);
        }
        .winner-tag span { color: var(--primary); font-weight: bold; margin-right: 5px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 0 16px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px; }
        .provider-chip { background: var(--bg-elevated); padding: 6px 12px; border-radius: 4px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-default); }

        .reviews { padding: 0 16px; margin-bottom: 20px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-top: 3px solid var(--primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: var(--accent); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-left: auto; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

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

        .security-footer { text-align: center; padding: 25px 16px; background: var(--bg-surface); border-top: 1px solid var(--border-default); }
        .security-logos { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-muted); }
        .age-limit { display: inline-block; border: 2px solid var(--text-muted); padding: 2px 6px; border-radius: 50%; font-weight: bold; font-size: 14px; margin-bottom: 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }

        footer { background: #000; padding: 30px 16px 100px; text-align: center; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { font-size: 14px; color: var(--primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { font-size: 12px; color: var(--text-muted); line-height: 1.8; }