:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #8B0000;
            --accent: #FFD700;
            --bg-base: #0F1115;
            --bg-surface: #1A1D23;
            --bg-elevated: #252930;
            --bg-contrast: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #9BA3AF;
            --text-muted: #6B7280;
            --text-brand: #D4AF37;
            --text-inverse: #0F1115;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2979FF;
            --border-default: #2D323C;
            --border-subtle: #1E232B;
            --border-active: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        h1 { font-size: 28px; line-height: 1.25; margin-bottom: 15px; color: var(--primary); }
        h2 { font-size: 24px; margin: 25px 0 15px; text-align: center; border-left: 4px solid var(--primary); padding-left: 10px; text-align: left; }
        h3 { font-size: 14px; margin-top: 8px; color: var(--text-primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        a { text-decoration: none; color: inherit; }
        header {
            height: 60px;
            background: var(--bg-surface);
            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-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; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
        .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: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-hover); }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--secondary), #4a0000);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--accent); letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: #fff; text-shadow: 0 0 10px var(--primary); }
        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-elevated); border-radius: 10px; padding-bottom: 10px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px 10px; }
        .provider-name { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
        .payment-section { background: var(--bg-surface); padding: 20px 15px; margin-top: 20px; text-align: center; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; margin-top: 15px; }
        .payment-item { background: #fff; padding: 8px; border-radius: 6px; height: 40px; display: flex; align-items: center; justify-content: center; }
        .payment-item i { color: #000; font-size: 20px; }
        .guidelines { padding: 0 15px; margin-top: 20px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 15px; border-left: 3px solid var(--primary); }
        .guide-item h3 { margin-top: 0; margin-bottom: 8px; font-size: 16px; color: var(--primary); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .winners-marquee { background: var(--bg-contrast); padding: 15px 0; margin: 20px 0; overflow: hidden; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { white-space: nowrap; background: var(--bg-elevated); padding: 8px 15px; border-radius: 20px; border: 1px solid var(--border-subtle); font-size: 13px; }
        .winner-tag span { color: var(--primary); font-weight: bold; }
        .providers-cloud { padding: 20px 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-chip { background: var(--bg-elevated); padding: 6px 15px; border-radius: 5px; font-size: 12px; font-weight: 600; color: var(--text-secondary); }
        .reviews { padding: 0 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 8px; }
        .user-info i { font-size: 24px; color: var(--text-muted); }
        .stars { color: var(--accent); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .review-body { font-size: 13px; color: var(--text-secondary); }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { margin-top: 0; margin-bottom: 8px; color: var(--primary); font-size: 15px; white-space: normal; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { padding: 20px 15px; background: var(--bg-contrast); text-align: center; border-top: 2px solid var(--secondary); }
        .security-seals { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-seals i { font-size: 30px; color: var(--text-muted); }
        .responsible-txt { font-size: 12px; color: var(--text-muted); max-width: 80%; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-surface); border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; align-items: center; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid var(--border-subtle); padding-bottom: 20px; }
        .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: 15px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { margin-top: 30px; text-align: center; font-size: 12px; color: var(--text-muted); }