:root {
            --primary: #FFD700;
            --primary-variant: #FFC107;
            --secondary: #B8860B;
            --accent: #E63946;
            --bg-main: #0D1117;
            --bg-surface: #161B22;
            --bg-overlay: #21262D;
            --bg-contrast: #010409;
            --text-primary: #FFFFFF;
            --text-secondary: #8B949E;
            --text-highlight: #FFD700;
            --border-subtle: #30363D;
            --border-strong: #484F58;
            --border-gold: #B8860B;
            --success: #238636;
            --error: #F85149;
        }
        * { 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; transition: 0.3s; }
        header {
            background-color: var(--bg-contrast);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-highlight); }
        .header-right { 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-color: transparent; color: var(--text-primary); border: 1px solid var(--border-strong); }
        .btn-register { background-color: var(--primary); color: var(--bg-contrast); }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-contrast) 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-gold);
            box-shadow: 0 0 15px rgba(184, 134, 11, 0.3);
        }
        .jackpot-label { font-family: 'Bebas Neue', cursive; font-size: 24px; color: var(--primary); letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Bebas Neue', cursive; font-size: 48px; color: #fff; text-shadow: 0 0 10px var(--primary); }
        .intro-card { margin: 15px; padding: 20px; background-color: var(--bg-surface); border-radius: 12px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 1.25rem; margin-bottom: 10px; color: var(--primary); }
        .intro-card p { font-size: 0.9rem; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 1.2rem; border-left: 3px solid var(--accent); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; margin-bottom: 20px; }
        .game-card { background-color: var(--bg-overlay); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); display: block; }
        .game-image-wrap { aspect-ratio: 1/1; width: 100%; overflow: hidden; }
        .game-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-primary); }
        .game-provider { font-size: 0.7rem; color: var(--text-secondary); margin-top: 4px; }
        .payments-license { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px 15px; background-color: var(--bg-contrast); }
        .pay-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .pay-item i { font-size: 20px; color: var(--secondary); }
        .pay-item span { font-size: 10px; color: var(--text-secondary); }
        .guides-section { padding: 0 15px; display: grid; gap: 15px; }
        .guide-item { background-color: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 1rem; color: var(--primary-variant); margin-bottom: 8px; }
        .guide-item p { font-size: 0.85rem; color: var(--text-secondary); }
        .winning-marquee { background-color: var(--bg-contrast); padding: 15px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        .win-record { display: inline-flex; align-items: center; gap: 10px; background: var(--bg-surface); padding: 5px 15px; border-radius: 20px; margin-right: 20px; border: 1px solid var(--border-subtle); }
        .win-user { color: var(--primary); font-weight: bold; font-size: 0.8rem; }
        .win-amount { color: var(--success); font-weight: bold; font-size: 0.8rem; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; opacity: 0.7; }
        .provider-tag { background: var(--bg-overlay); padding: 5px 12px; border-radius: 4px; font-size: 0.75rem; border: 1px solid var(--border-subtle); }
        .reviews-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .review-user { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
        .review-user i { color: var(--secondary); }
        .stars { color: var(--primary); font-size: 0.75rem; }
        .review-date { font-size: 0.7rem; color: var(--text-secondary); }
        .review-content { font-size: 0.85rem; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-overlay); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 0.95rem; color: var(--primary); display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 0.85rem; color: var(--text-secondary); }
        .security-section { margin: 20px 15px; padding: 20px; background: var(--bg-contrast); border: 1px solid var(--border-gold); border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }
        .age-limit { display: inline-block; border: 2px solid var(--accent); color: var(--accent); padding: 2px 8px; border-radius: 50%; font-weight: bold; margin-bottom: 10px; }
        .responsible-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }
        .responsible-links a { font-size: 0.75rem; color: var(--info); text-decoration: underline; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-surface); border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-around; padding: 8px 0; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 0.7rem; color: var(--text-secondary); }
        .nav-item i { font-size: 1.2rem; margin-bottom: 4px; }
        footer { background: var(--bg-contrast); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-contacts a { font-size: 0.85rem; color: var(--primary); border: 1px solid var(--border-gold); padding: 8px; text-align: center; border-radius: 4px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); font-size: 0.8rem; }
        .copyright { text-align: center; font-size: 0.75rem; color: var(--text-disabled); border-top: 1px solid var(--border-subtle); padding-top: 20px; }