:root {
            --bg-dark: #1a1d24;
            --bg-card: #252a34;
            --gold: #FFD700;
            --accent-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --text-main: #ffffff;
            --text-dim: #b0b3b8;
            --rounded: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        header {
            background-color: #0f1218;
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: var(--gold); }
        .auth-btns { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            transition: opacity 0.3s;
        }
        .btn-login { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
        .btn-reg { background: var(--accent-gradient); color: white; }
        .banner-section { width: 100%; cursor: pointer; }
        .banner-section img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
        .jackpot-box {
            background: #000;
            margin: 20px 15px;
            padding: 15px;
            border-radius: var(--rounded);
            text-align: center;
            border: 2px solid var(--gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { color: var(--gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(to bottom, #fff, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: monospace;
        }
        .intro-card {
            background: var(--bg-card);
            margin: 15px;
            padding: 20px;
            border-radius: var(--rounded);
            text-align: center;
        }
        .intro-card h1 { font-size: 20px; color: var(--gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .section-title { padding: 20px 15px 10px; font-size: 18px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: var(--gold); }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 10px 15px;
        }
        .game-card {
            background: var(--bg-card);
            border-radius: var(--rounded);
            overflow: hidden;
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--gold); }
        .payments-section {
            background: #12141a;
            padding: 25px 15px;
            text-align: center;
            margin-top: 20px;
        }
        .payment-icons {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            align-items: center;
            justify-items: center;
            opacity: 0.7;
        }
        .payment-icons i { font-size: 30px; }
        .guidelines-grid { padding: 15px; display: grid; gap: 15px; }
        .guide-item { background: var(--bg-card); padding: 15px; border-radius: var(--rounded); border-left: 4px solid var(--gold); }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--gold); }
        .guide-item p { font-size: 13px; color: var(--text-dim); }
        .winners-marquee {
            background: #000;
            padding: 10px 0;
            margin: 20px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }
        .winner-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #1e222d;
            padding: 5px 15px;
            margin-right: 20px;
            border-radius: 20px;
            font-size: 12px;
            border: 1px solid #333;
        }
        .winner-tag span { color: #4caf50; font-weight: bold; }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .providers-wall {
            padding: 20px 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .provider-tag {
            background: #252a34;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            color: var(--text-dim);
            border: 1px solid #3d4452;
        }
        .reviews-section { padding: 15px; }
        .review-card {
            background: var(--bg-card);
            padding: 15px;
            border-radius: var(--rounded);
            margin-bottom: 15px;
        }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: var(--text-dim); }
        .stars { color: var(--gold); font-size: 12px; }
        .review-date { font-size: 11px; color: #666; float: right; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1e222d; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; border-bottom: 1px solid #2d3446; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-dim); }
        .security-section { padding: 30px 15px; text-align: center; background: #0f1218; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--gold); }
        .responsible { font-size: 12px; color: var(--text-dim); max-width: 80%; margin: 0 auto; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: #0f1218;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #333;
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-dim); font-size: 10px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 2px; }
        .nav-item.active { color: var(--gold); }
        footer { background: #0a0c10; padding: 40px 15px 80px; text-align: center; border-top: 1px solid #222; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { font-size: 13px; color: var(--gold); border: 1px solid #333; padding: 5px 12px; border-radius: 15px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { font-size: 12px; color: var(--text-dim); }
        .copyright { font-size: 11px; color: #555; }