:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #C5A059;
            --accent: #FF4D4D;
            --bg-primary: #050505;
            --bg-secondary: #121212;
            --bg-tertiary: #1E1E1E;
            --bg-elevated: #2A2A2A;
            --text-primary: #FFFFFF;
            --text-secondary: #BDBDBD;
            --text-muted: #757575;
            --border-subtle: #222222;
            --border-default: #333333;
            --border-brand: #D4AF37;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Montserrat', 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            height: 60px;
            background: var(--bg-secondary);
            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; color: var(--primary); font-family: var(--font-display); }
        .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(--primary); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(135deg, #1e1e1e 0%, #0a0a0a 100%);
            border: 1px solid var(--border-brand);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }
        .jackpot-title { font-family: var(--font-display); color: var(--secondary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 2.5rem; font-weight: 900; color: var(--primary); text-shadow: 0 0 15px rgba(255,215,0,0.5); font-family: var(--font-display); }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-secondary); border-radius: 12px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 1.25rem; margin-bottom: 10px; color: var(--primary); font-family: var(--font-display); }
        .intro-card p { font-size: 0.95rem; color: var(--text-secondary); }
        .section-title { margin: 25px 15px 15px; font-size: 1.2rem; font-family: var(--font-display); display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-tertiary); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-img-container { width: 100%; aspect-ratio: 1/1; background: #222; overflow: hidden; }
        .game-img-container img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.85rem; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; }
        .payment-methods { background: var(--bg-secondary); margin: 30px 0; padding: 25px 15px; text-align: center; }
        .payment-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .payment-grid i { font-size: 30px; color: var(--text-secondary); }
        .guidelines { padding: 0 15px; margin-top: 30px; }
        .guide-item { margin-bottom: 25px; padding: 15px; background: var(--bg-tertiary); border-radius: 10px; }
        .guide-item h3 { color: var(--secondary); margin-bottom: 10px; font-size: 1.1rem; }
        .guide-item p { font-size: 0.9rem; color: var(--text-secondary); }
        .winners-marquee { background: var(--bg-elevated); padding: 12px 0; margin: 30px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; white-space: nowrap; animation: scrollMarquee 40s linear infinite; }
        .winner-item { padding: 0 25px; border-right: 1px solid var(--border-default); display: flex; flex-direction: column; }
        .winner-user { font-weight: bold; color: var(--primary); font-size: 0.9rem; }
        .winner-game { font-size: 0.8rem; color: var(--text-secondary); }
        .winner-amount { color: var(--success); font-weight: bold; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; background: var(--bg-secondary); text-align: center; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; color: var(--text-muted); font-weight: 700; font-size: 0.9rem; }
        .review-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-tertiary); padding: 20px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .review-meta h4 { font-size: 0.95rem; }
        .review-stars { color: var(--primary); font-size: 0.8rem; }
        .review-date { font-size: 0.75rem; color: var(--text-muted); }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--primary); border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 0.9rem; color: var(--text-secondary); }
        .security-section { margin: 30px 15px; padding: 20px; background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-muted); }
        .security-text { font-size: 0.8rem; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-secondary); border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; align-items: center; z-index: 2000; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        footer { background: var(--bg-primary); padding: 40px 15px 100px; border-top: 1px solid var(--border-subtle); text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-contacts a { color: var(--primary); text-decoration: none; font-size: 0.9rem; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
        .copyright { font-size: 0.75rem; color: var(--text-muted); border-top: 1px solid var(--border-subtle); pt: 20px; }