:root {
            --primary: #D4AF37;
            --secondary: #B8860B;
            --accent: #FFD700;
            --bg-p: #0A0B0D;
            --bg-s: #14161A;
            --bg-t: #1C1F26;
            --text-p: #FFFFFF;
            --text-s: #A0AEC0;
            --border: #2D3748;
            --gradient: linear-gradient(135deg, #D4AF37 0%, #F9E29C 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-p);
            color: var(--text-p);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; font-weight: 700; color: var(--primary); }
        h1 { font-size: 28px; margin-bottom: 15px; }
        h2 { font-size: 24px; margin: 25px 0 15px; text-align: center; text-transform: uppercase; }
        h3 { font-size: 16px; margin-top: 8px; color: var(--text-p); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        p { color: var(--text-s); font-size: 14px; margin-bottom: 10px; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

        header {
            background: var(--bg-s);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .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; color: var(--text-p); letter-spacing: 0.5px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-p); border: 1px solid var(--border); }
        .btn-reg { background: var(--gradient); color: var(--bg-p); }

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

        .jackpot-section {
            background: radial-gradient(circle, #1c1f26 0%, #0a0b0d 100%);
            padding: 20px;
            margin: 20px 0;
            text-align: center;
            border: 1px solid var(--primary);
            border-radius: 12px;
        }
        .jackpot-label { font-size: 14px; color: var(--accent); letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 36px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
        }

        .intro-card { background: var(--bg-s); padding: 20px; border-radius: 12px; margin: 20px 0; border-left: 4px solid var(--primary); }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-t);
            border-radius: 10px;
            overflow: hidden;
            padding: 8px;
            border: 1px solid var(--border);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.97); }
        .game-img-box { position: relative; width: 100%; aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; }
        .game-img-box img { width: 100%; height: 100%; object-fit: cover; }
        .provider-name { font-size: 12px; color: var(--primary); font-weight: 500; }

        .trust-section {
            background: var(--bg-s);
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
            text-align: center;
        }
        .icon-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 15px; }
        .icon-item { background: #fff; border-radius: 6px; padding: 5px; height: 40px; display: flex; align-items: center; justify-content: center; }
        .icon-item i { font-size: 24px; color: #1a1a1a; }
        .icon-item img { max-height: 100%; max-width: 100%; }

        .guidelines { margin: 20px 0; }
        .guide-item { margin-bottom: 20px; padding: 15px; background: var(--bg-s); border-radius: 10px; }
        .guide-item h3 { margin-top: 0; margin-bottom: 10px; color: var(--primary); }

        .marquee-box {
            background: var(--bg-s);
            padding: 15px 0;
            overflow: hidden;
            margin: 20px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .marquee-track { display: flex; animation: scroll 40s linear infinite; width: max-content; }
        .win-item {
            flex: 0 0 auto;
            padding: 0 20px;
            border-right: 1px solid var(--border);
            font-size: 13px;
        }
        .win-item span { color: var(--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: 10px;
            margin: 20px 0;
            font-weight: 600;
            color: var(--text-s);
        }
        .provider-tag { background: var(--bg-t); padding: 8px 15px; border-radius: 20px; border: 1px solid var(--border); font-size: 13px; }

        .review-card { background: var(--bg-s); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border); }
        .rev-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .rev-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-t); display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .rev-info { flex: 1; }
        .stars { color: var(--accent); font-size: 12px; }
        .rev-date { font-size: 11px; color: var(--text-s); }

        .faq-section { margin: 20px 0; }
        .faq-item { background: var(--bg-s); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-q { color: var(--primary); font-weight: 600; margin-bottom: 8px; display: block; }

        .security-section {
            background: var(--bg-t);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            margin: 30px 0;
            border: 1px dashed var(--border);
        }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; opacity: 0.8; }
        .badge-item { font-size: 12px; color: var(--text-s); }

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

        footer { background: var(--bg-p); padding: 30px 15px 100px; border-top: 1px solid var(--border); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-link { font-size: 13px; color: var(--text-s); display: block; margin-bottom: 8px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 20px; }

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