:root {
            --brand-primary: #D4AF37;
            --brand-primary-light: #F1C40F;
            --brand-primary-dark: #996515;
            --brand-secondary: #E63946;
            --brand-accent: #00CFB4;
            --bg-default: #0A0B0D;
            --bg-paper: #14171C;
            --bg-elevated: #1C2128;
            --bg-overlay: rgba(0, 0, 0, 0.9);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-disabled: #65676B;
            --border-default: #2D333B;
            --border-active: #D4AF37;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-paper);
            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-default);
        }
        .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: 500; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: #000; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-section {
            background: linear-gradient(135deg, #1c2128 0%, #0a0b0d 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
        }
        .jackpot-label { color: var(--brand-primary); font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { color: var(--brand-primary-light); font-family: 'JetBrains Mono', monospace; font-size: 32px; font-weight: 900; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-paper); border-radius: 12px; border-left: 4px solid var(--brand-primary); }
        h1 { font-family: var(--font-heading); font-size: 20px; margin-bottom: 10px; color: var(--brand-primary); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        h2 { font-family: var(--font-heading); font-size: 18px; margin: 20px 15px 15px; display: flex; align-items: center; gap: 8px; }
        h2::before { content: ''; width: 4px; height: 18px; background: var(--brand-primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-paper); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-image { 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); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: var(--brand-primary); font-weight: 500; }
        .trust-section { margin: 25px 15px; padding: 20px; background: var(--bg-elevated); border-radius: 12px; text-align: center; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .trust-icons i { font-size: 24px; color: var(--text-secondary); opacity: 0.8; }
        .guidelines-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--bg-paper); padding: 15px; border-radius: 10px; border-bottom: 2px solid var(--border-default); }
        .guide-item h3 { color: var(--brand-primary); margin-bottom: 8px; font-size: 16px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .marquee-container { background: #000; padding: 10px 0; margin: 20px 0; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); overflow: hidden; }
        .marquee-content { display: flex; animation: scroll 30s linear infinite; gap: 30px; }
        .winner-tag { white-space: nowrap; font-size: 13px; display: flex; gap: 8px; color: var(--text-secondary); }
        .winner-tag strong { color: var(--brand-primary-light); }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .provider-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 15px; background: var(--bg-paper); margin: 0 15px; border-radius: 10px; }
        .provider-item { background: var(--bg-elevated); padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; color: var(--text-secondary); border: 1px solid var(--border-default); }
        .reviews-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-paper); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--brand-primary); }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-disabled); margin-left: auto; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--bg-elevated); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--brand-primary); font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 10px; }
        .security-footer { margin: 25px 15px; padding: 20px; background: #000; border-radius: 12px; text-align: center; border: 1px dashed var(--text-disabled); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 20px; color: var(--brand-accent); }
        .security-footer p { font-size: 12px; color: var(--text-secondary); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-paper); height: 65px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: var(--text-secondary); gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item:nth-child(3) { color: var(--brand-primary); }
        footer { background: #050505; padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--text-primary); text-decoration: none; font-size: 13px; padding: 5px 10px; border: 1px solid var(--border-default); border-radius: 4px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; font-size: 11px; color: var(--text-disabled); border-top: 1px solid var(--border-default); padding-top: 20px; }