:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #1E293B;
            --accent: #FF3E3E;
            --bg-default: #0B0E11;
            --bg-paper: #15191E;
            --bg-elevated: #1F2329;
            --bg-nav: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --text-brand: #D4AF37;
            --border-subtle: #2D3748;
            --border-default: #3E4C59;
            --success: #00C853;
            --win: #4CAF50;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--text-primary); }
        h1 { font-size: 24px; text-align: center; margin-bottom: 12px; color: var(--primary); }
        h2 { font-size: 20px; margin: 24px 0 16px; padding-left: 12px; border-left: 4px solid var(--primary); }
        h3 { font-size: 14px; margin-top: 8px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-nav);
            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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); font-family: 'Montserrat', sans-serif; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: #000; }
        .btn-register:hover { background-color: var(--primary-hover); }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 15px; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #15191E 0%, #0B0E11 100%);
            border: 1px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { color: var(--primary); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 36px;
            color: var(--text-primary);
            margin: 10px 0;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .intro-card { background: var(--bg-paper); padding: 20px; border-radius: 12px; border: 1px solid var(--border-subtle); margin-bottom: 20px; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; text-align: center; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-elevated); border-radius: 10px; padding: 8px; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; border-radius: 8px; object-fit: cover; display: block; }
        .game-provider { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
        .trust-section { background: var(--bg-paper); padding: 20px; border-radius: 12px; margin-bottom: 25px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; color: var(--text-secondary); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 10px; border-bottom: 2px solid var(--primary); }
        .guide-item h3 { margin-top: 0; margin-bottom: 10px; color: var(--primary); font-size: 16px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .winners-marquee { background: var(--bg-paper); padding: 10px 0; overflow: hidden; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); margin: 20px 0; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: var(--bg-elevated); padding: 5px 15px; border-radius: 20px; margin: 0 10px; border: 1px solid var(--border-subtle); }
        .winner-tag span { color: var(--win); font-weight: bold; margin-left: 8px; font-family: 'Oswald', sans-serif; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .provider-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 20px; background: var(--bg-paper); border-radius: 12px; margin-bottom: 25px; }
        .provider-item { background: var(--bg-elevated); padding: 8px 15px; border-radius: 6px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-subtle); }
        .reviews-grid { display: flex; overflow-x: auto; gap: 15px; padding-bottom: 15px; scroll-snap-type: x mandatory; }
        .review-card { min-width: 280px; background: var(--bg-paper); padding: 20px; border-radius: 12px; scroll-snap-align: start; flex-shrink: 0; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-user h4 { font-size: 14px; }
        .stars { color: #FFAB00; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-paper); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { color: var(--primary); font-size: 15px; margin-bottom: 8px; white-space: normal; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .responsible-gaming { background: #1a1a1a; padding: 25px; border-radius: 12px; text-align: center; border: 1px dashed var(--accent); }
        .age-badge { display: inline-block; width: 40px; height: 40px; border: 2px solid var(--accent); border-radius: 50%; line-height: 36px; font-weight: bold; color: var(--accent); margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-nav); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-subtle); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        footer { background: var(--bg-nav); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--primary); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-divider); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }