:root {
            --primary: #FFD700;
            --primary-hover: #FFC400;
            --secondary: #B8860B;
            --accent: #00E676;
            --cta: #E21D1D;
            --bg-main: #0A0A0B;
            --bg-secondary: #161618;
            --bg-surface: #222224;
            --bg-modal: #1C1C1E;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --text-highlight: #FFD700;
            --border-subtle: #27272A;
            --border-default: #3F3F46;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--text-highlight); }
        a { text-decoration: none; color: inherit; }
        header {
            background: var(--bg-secondary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--cta); color: #fff; }
        .banner-container { width: 100%; cursor: pointer; }
        .banner-container img { width: 100%; height: auto; display: block; aspect-ratio: 2/1; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-secondary) 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--secondary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
        }
        .jackpot-label { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 30px; font-weight: 800; color: var(--primary); letter-spacing: 1px; font-family: 'JetBrains Mono', monospace; }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 24px; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; font-size: 18px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 12px; color: var(--text-muted); }
        .payment-section { margin: 25px 15px; padding: 20px; background: var(--bg-secondary); border-radius: 12px; text-align: center; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; }
        .payment-icon { background: #fff; border-radius: 4px; padding: 5px; height: 35px; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #000; font-size: 10px; }
        .guidelines-grid { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; border-left: 3px solid var(--primary); }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .winner-marquee { background: var(--bg-secondary); margin: 20px 0; padding: 10px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
        .marquee-content { display: inline-flex; animation: scrollMarquee 40s linear infinite; }
        .winner-item { display: flex; align-items: center; gap: 10px; margin-right: 40px; font-size: 13px; }
        .winner-name { color: var(--accent); font-weight: 600; }
        .winner-amount { color: var(--primary); font-weight: 700; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .provider-wall { padding: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: var(--bg-surface); padding: 6px 12px; border-radius: 20px; font-size: 12px; border: 1px solid var(--border-subtle); color: var(--text-secondary); }
        .reviews-section { padding: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .review-user-info h4 { font-size: 14px; }
        .review-stars { color: #FFD700; font-size: 10px; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-subtle); }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--text-primary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { margin: 20px 15px; padding: 20px; background: #1a1a1c; border-radius: 12px; text-align: center; border: 1px solid #333; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--text-muted); }
        .age-limit { color: var(--cta); font-weight: 800; font-size: 20px; margin-top: 10px; display: block; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-modal); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-subtle); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; justify-content: center; }
        .footer-contacts a { font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }