:root {
            --primary: #FFD700;
            --primary-hover: #FFC400;
            --secondary: #E21E26;
            --accent: #00529B;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0A0A0A;
            --bg-surface: #1A1A1A;
            --bg-surface-light: #262626;
            --overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --text-gold: #FFD700;
            --border-default: #333333;
            --border-focus: #FFD700;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.3; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        .container { padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        header {
            background-color: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0 15px;
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: 400; letter-spacing: 1px; color: var(--text-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: var(--gold-gradient); 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-sec {
            background: var(--bg-surface);
            margin: 20px 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--border-focus);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--text-gold); font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 800;
            color: #FFFFFF;
            background: linear-gradient(to right, #FFD700, #FFFFFF, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .intro-card {
            background: var(--bg-surface);
            margin: 0 15px 20px;
            padding: 25px;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; color: var(--text-gold); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin-bottom: 15px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: var(--secondary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px 30px; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform 0.3s; }
        .game-card:hover img { transform: scale(1.05); }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 12px; color: var(--text-muted); }
        .payment-sec { background: var(--bg-surface-light); padding: 30px 15px; margin-bottom: 30px; text-align: center; }
        .icon-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; }
        .icon-grid i { font-size: 30px; color: var(--text-secondary); }
        .trust-seal { width: 60px; opacity: 0.8; }
        .guidelines { padding: 0 15px 30px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); margin-bottom: 12px; }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .marquee-box { background: #111; padding: 15px 0; margin-bottom: 30px; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        .winner-pill { display: inline-flex; align-items: center; background: var(--bg-surface-light); padding: 8px 15px; border-radius: 20px; margin-right: 15px; border: 1px solid var(--border-default); }
        .winner-pill i { color: var(--primary); margin-right: 8px; }
        .winner-pill strong { color: var(--text-gold); margin: 0 5px; }
        @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        .providers-sec { padding: 0 15px 30px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: var(--bg-surface); padding: 6px 12px; border-radius: 4px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-default); }
        .reviews-grid { padding: 0 15px 30px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); margin-bottom: 15px; border: 1px solid var(--border-default); }
        .rev-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .rev-head i { font-size: 30px; color: var(--text-muted); }
        .rev-user h4 { font-size: 14px; }
        .stars { color: var(--primary); font-size: 12px; }
        .rev-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-sec { padding: 0 15px 30px; }
        .faq-item { background: var(--bg-surface); border-radius: var(--radius); padding: 15px; margin-bottom: 10px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-sec { padding: 30px 15px; background: #000; text-align: center; border-top: 2px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 18px; }
        footer { padding: 40px 15px 100px; background: var(--bg-surface); color: var(--text-secondary); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 30px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }