:root {
            --bg-color: #1a1d24;
            --card-bg: #242832;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --text-main: #ffffff;
            --text-dim: #b1b5c0;
            --rounded: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            height: 60px;
            background-color: #11141a;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid #444; }
        .btn-register { background: var(--cta-gradient); color: #fff; }
        main { max-width: 1000px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2 / 1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: radial-gradient(circle, #3a1c1c 0%, #1a1d24 100%);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: var(--rounded);
            border: 1px solid var(--accent-gold);
        }
        .jackpot-title { color: var(--accent-gold); font-size: 18px; font-weight: bold; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { padding: 20px; margin: 15px; background: var(--card-bg); border-radius: var(--rounded); }
        .intro-card h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .section-header { padding: 0 15px; margin-top: 25px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 18px; border-left: 4px solid var(--accent-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: var(--rounded); overflow: hidden; text-decoration: none; color: inherit; display: block; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-info p { font-size: 11px; color: var(--text-dim); }
        .payments-licenses { padding: 20px 15px; background: #11141a; margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .payment-icon { width: 60px; height: 35px; background: #fff; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #000; font-size: 10px; text-align: center; padding: 2px; }
        .guidelines { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: var(--rounded); border-bottom: 2px solid var(--accent-gold); }
        .guide-item h2 { font-size: 16px; margin-bottom: 10px; color: var(--accent-gold); }
        .marquee-container { background: #11141a; padding: 10px 0; margin: 20px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; gap: 30px; animation: marquee 30s linear infinite; white-space: nowrap; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-record { font-size: 13px; color: var(--text-dim); }
        .win-record span { color: var(--accent-gold); font-weight: bold; }
        .providers { padding: 20px 15px; text-align: center; }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; color: var(--text-dim); font-weight: bold; }
        .reviews { padding: 15px; }
        .review-card { background: var(--card-bg); 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(--accent-gold); }
        .stars { color: #ffb400; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-dim); margin-left: auto; }
        .review-content { font-size: 13px; color: var(--text-dim); }
        .faq { padding: 15px; }
        .faq-item { background: var(--card-bg); margin-bottom: 10px; border-radius: var(--rounded); padding: 15px; }
        .faq-item h2 { font-size: 15px; margin-bottom: 8px; color: var(--accent-gold); }
        .faq-item p { font-size: 13px; color: var(--text-dim); }
        .safety-section { padding: 20px 15px; background: #11141a; text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; font-size: 24px; margin-bottom: 15px; color: var(--text-dim); }
        .safety-text { font-size: 12px; color: var(--text-dim); max-width: 600px; margin: 0 auto; }
        .navigator {
            position: fixed; bottom: 0; left: 0; right: 0; height: 65px;
            background: #11141a; display: flex; justify-content: space-around;
            align-items: center; border-top: 1px solid #333; z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-dim); text-align: center; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer { padding: 30px 15px 100px; background: #0b0d11; color: var(--text-dim); font-size: 13px; }
        .footer-contacts { display: flex; justify-content: space-between; margin-bottom: 25px; border-bottom: 1px solid #222; padding-bottom: 15px; }
        .footer-contacts a { color: var(--text-main); text-decoration: none; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-dim); text-decoration: none; font-size: 12px; }
        .copyright { text-align: center; font-size: 11px; padding-top: 10px; }