:root {
            --primary-gold: #D4AF37;
            --primary-bright: #F1C40F;
            --secondary-green: #00A859;
            --accent-premium: #8E6E17;
            --bg-main: #0B0E11;
            --bg-surface: #15191E;
            --bg-elevation: #1F2630;
            --bg-modal: #121417;
            --text-main: #FFFFFF;
            --text-sec: #B0B0B0;
            --text-dis: #626D7A;
            --text-inv: #0B0E11;
            --border-def: #2C3E50;
            --border-strong: #3E4F5F;
            --border-inter: #D4AF37;
            --success: #27AE60;
            --error: #E74C3C;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; display: block; }

        header {
            background-color: var(--bg-surface);
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-def);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            border: none;
            transition: 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--border-def); }
        .btn-register { background: var(--primary-gold); color: var(--text-inv); }

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

        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-elevation) 0%, var(--bg-surface) 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-inter);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { color: var(--primary-bright); font-size: 0.875rem; font-weight: 700; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 2rem; color: var(--primary-gold); font-weight: 700; }

        .platform-intro { padding: 20px 15px; text-align: center; }
        .platform-intro h1 { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary-gold); }
        .platform-intro p { color: var(--text-sec); font-size: 0.95rem; }

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

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 10px 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-sutil); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.85rem; margin-bottom: 4px; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 0.75rem; color: var(--text-sec); }

        .payments-lic { padding: 25px 15px; background: var(--bg-elevation); margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.8; }
        .payments-lic i { font-size: 1.5rem; color: var(--text-sec); }

        .guidelines { padding: 20px 15px; display: grid; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; border-left: 3px solid var(--primary-gold); }
        .guide-item h2 { font-size: 1rem; margin-bottom: 8px; color: var(--primary-bright); }
        .guide-item p { font-size: 0.875rem; color: var(--text-sec); }

        .marquee-container { background: var(--bg-modal); padding: 15px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border-def); border-bottom: 1px solid var(--border-def); }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; gap: 10px; background: var(--bg-elevation); padding: 8px 15px; margin: 0 10px; border-radius: 20px; font-size: 0.8rem; border: 1px solid var(--border-sutil); }
        .winner-tag strong { color: var(--success); }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 20px 15px; text-align: center; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-weight: 700; color: var(--text-dis); }
        .provider-name { background: var(--bg-surface); padding: 5px 12px; border-radius: 4px; border: 1px solid var(--border-def); }

        .reviews { padding: 20px 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-elevation); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; align-items: center; }
        .user-meta { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
        .stars { color: var(--primary-bright); font-size: 0.75rem; }
        .review-card p { font-size: 0.875rem; color: var(--text-sec); font-style: italic; }

        .faq { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); border-radius: 8px; overflow: hidden; }
        .faq-item h2 { font-size: 0.95rem; padding: 15px; cursor: pointer; color: var(--primary-gold); }
        .faq-item p { padding: 0 15px 15px; font-size: 0.875rem; color: var(--text-sec); }

        .responsible { padding: 30px 15px; text-align: center; border-top: 1px solid var(--border-def); }
        .responsible-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.5rem; color: var(--secondary-green); }
        .responsible h2 { font-size: 1.2rem; margin-bottom: 10px; }
        .responsible p { font-size: 0.85rem; color: var(--text-sec); margin-bottom: 15px; }

        .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-def); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 0.7rem; color: var(--text-sec); }
        .nav-item i { font-size: 1.2rem; }

        footer { background: var(--bg-modal); padding: 30px 15px; border-top: 1px solid var(--border-strong); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid var(--border-def); padding-bottom: 15px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-grid a { font-size: 0.85rem; color: var(--text-sec); }
        .copyright { text-align: center; font-size: 0.75rem; color: var(--text-dis); padding-bottom: 20px; }