:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #00E676;
            --accent: #FF3D00;
            --bg-main: #0A0A0A;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-subtle: #2C2C2C;
            --border-interactive: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: var(--bg-surface);
            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-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { 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-color: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background-color: var(--primary); color: #000; }

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

        .jackpot-section {
            background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .jackpot-title { color: var(--primary); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 900;
            color: var(--secondary);
            text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
        }

        .intro-card { padding: 20px; text-align: center; }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }

        .section-title { padding: 15px 15px 5px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.98); }
        .game-image-wrap { aspect-ratio: 1/1; background: #222; overflow: hidden; }
        .game-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 12px; color: var(--text-secondary); }

        .trust-section {
            background: var(--bg-elevated);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .trust-item { font-size: 24px; color: var(--text-secondary); opacity: 0.7; }

        .guidelines { padding: 15px; }
        .guide-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 12px;
            border-left: 3px solid var(--primary);
        }
        .guide-item h2 { font-size: 18px; margin-bottom: 8px; color: var(--primary); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .marquee-container {
            background: #111;
            padding: 10px 0;
            margin: 20px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: scroll 30s linear infinite;
        }
        .win-tag {
            display: inline-block;
            background: var(--bg-elevated);
            padding: 8px 15px;
            margin-right: 15px;
            border-radius: 20px;
            font-size: 13px;
            border: 1px solid var(--border-subtle);
        }
        .win-tag b { color: var(--secondary); }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .providers-wall {
            padding: 20px;
            text-align: center;
            background: var(--bg-surface);
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .provider-name {
            padding: 5px 15px;
            background: var(--bg-elevated);
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
        }

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

        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .footer-compliance {
            padding: 20px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
            margin-top: 20px;
        }
        .age-limit {
            display: inline-block;
            border: 2px solid var(--accent);
            color: var(--accent);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 36px;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            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: 18px; color: var(--primary); }

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