:root {
            --bg-base: #0B0E11;
            --bg-surface: #151921;
            --bg-elevated: #1F2630;
            --primary: #D4AF37;
            --primary-hover: #F9D71C;
            --secondary: #E21B23;
            --secondary-hover: #FF3E3E;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --gold-grad: linear-gradient(180deg, #D4AF37 0%, #F9D71C 100%);
            --border-default: #2D3748;
            --radius-md: 12px;
            --radius-lg: 20px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        
        header {
            background: var(--bg-surface);
            padding: 12px 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-default);
        }
        .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: 400; color: var(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--gold-grad); color: #000; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box {
            background: var(--bg-elevated);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius-md);
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(249, 215, 28, 0.5);
        }

        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: var(--radius-md); border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }

        .section-title { padding: 0 20px; margin-top: 25px; font-size: 22px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--secondary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-default); }
        .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 span { font-size: 12px; color: var(--text-muted); }

        .trust-badges { 
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; padding: 20px; 
            background: var(--bg-surface); margin: 15px; border-radius: var(--radius-md); 
        }
        .trust-item { text-align: center; font-size: 24px; color: var(--text-secondary); }
        .trust-item span { display: block; font-size: 10px; margin-top: 5px; text-transform: uppercase; font-weight: bold; }

        .guidelines { padding: 15px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: var(--radius-md); margin-bottom: 15px; border: 1px solid var(--border-default); }
        .guide-item h2 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .marquee-container { background: var(--bg-surface); padding: 15px 0; margin: 20px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 20px; white-space: nowrap; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-pill { background: var(--bg-elevated); padding: 8px 15px; border-radius: 30px; border: 1px solid var(--border-default); display: flex; gap: 10px; align-items: center; }
        .winner-pill span:last-child { color: var(--primary); font-weight: bold; }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; justify-content: center; }
        .provider-tag { background: var(--bg-surface); border: 1px solid var(--border-default); padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; color: var(--text-secondary); }

        .reviews { padding: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: var(--radius-md); margin-bottom: 12px; }
        .rev-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .rev-head i { font-size: 24px; color: var(--primary); }
        .rev-stars { color: #FFD600; font-size: 12px; }
        .rev-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); border-radius: var(--radius-md); overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 600; color: var(--text-primary); border-bottom: 1px solid var(--border-default); }
        .faq-a { padding: 15px; font-size: 14px; color: var(--text-secondary); }

        .security-section { padding: 20px; background: var(--bg-elevated); margin: 15px; border-radius: var(--radius-md); text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 30px; color: var(--primary); }
        .age-badge { display: inline-block; padding: 5px 10px; border: 2px solid var(--secondary); color: var(--secondary); border-radius: 50%; font-weight: 900; margin-bottom: 10px; }

        .navigator {
            position: fixed; bottom: 0; width: 100%; background: var(--bg-surface); border-top: 1px solid var(--border-default);
            display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 10px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }

        footer { background: var(--bg-surface); padding: 30px 20px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; justify-content: space-around; margin-bottom: 25px; flex-wrap: wrap; gap: 15px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; margin-bottom: 25px; }
        .footer-grid a { font-size: 13px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 11px; color: var(--text-muted); line-height: 1.6; }