:root {
            --brand-primary: #D4AF37;
            --brand-secondary: #8B0000;
            --brand-accent: #FFD700;
            --brand-highlight: #F9F9F9;
            --bg-main: #0A0B0D;
            --bg-surface: #16181D;
            --bg-elevated: #21242B;
            --bg-modal: #121418;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-disabled: #626262;
            --text-brand: #D4AF37;
            --semantic-success: #00C853;
            --semantic-error: #FF3D00;
            --semantic-warning: #FFAB00;
            --semantic-info: #2979FF;
            --border-default: #2D3038;
            --border-active: #D4AF37;
            --border-subtle: #1F2127;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-brand);
        }
        a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        header {
            height: 60px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .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: 500; color: var(--text-primary); text-transform: uppercase; }
        .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(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: var(--bg-main); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(135deg, var(--brand-secondary), #4a0000);
            border: 2px solid var(--brand-primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }
        .jackpot-label { font-size: 14px; color: var(--brand-accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: var(--brand-highlight); }
        .intro-card { margin: 20px 15px; padding: 25px; background: var(--bg-surface); border-radius: 16px; border: 1px solid var(--border-subtle); }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 0 15px; margin: 30px 0 15px; font-size: 20px; border-left: 4px solid var(--brand-primary); margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-img-wrapper { width: 100%; aspect-ratio: 1/1; background: var(--bg-elevated); position: relative; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .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(--text-secondary); }
        .trust-section { margin: 30px 15px; background: var(--bg-surface); padding: 20px; border-radius: 16px; text-align: center; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; }
        .trust-item img { height: 30px; width: auto; margin: 0 auto; filter: grayscale(1); opacity: 0.7; }
        .guidelines-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; }
        .guide-item h2 { font-size: 18px; margin-bottom: 10px; color: var(--brand-primary); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .marquee-container { background: var(--bg-elevated); padding: 15px 0; margin: 30px 0; overflow: hidden; position: relative; }
        .marquee-track { display: flex; animation: scroll 40s linear infinite; width: max-content; }
        .marquee-item { padding: 0 20px; border-right: 1px solid var(--border-subtle); display: flex; flex-direction: column; gap: 4px; }
        .win-user { font-weight: 600; font-size: 14px; color: var(--brand-accent); }
        .win-amount { font-family: 'Roboto Mono', monospace; color: var(--semantic-success); }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { margin: 20px 15px; padding: 15px; background: var(--bg-surface); border-radius: 12px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: var(--bg-elevated); padding: 6px 12px; border-radius: 20px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-subtle); }
        .reviews-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border-bottom: 3px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); }
        .review-meta h3 { font-size: 15px; color: var(--text-primary); }
        .stars { color: var(--brand-accent); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-disabled); }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-container { padding: 0 15px; display: flex; flex-direction: column; gap: 10px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--text-primary); font-size: 14px; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); }
        .security-section { margin: 30px 15px; padding: 20px; border: 1px dashed var(--border-default); border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--text-secondary); }
        .responsible-text { font-size: 12px; color: var(--text-disabled); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-modal); border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-around; align-items: center; z-index: 1000; padding-bottom: 10px; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        footer { background: var(--bg-surface); padding: 40px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { margin-bottom: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .footer-link { font-size: 13px; color: var(--text-secondary); display: block; margin-bottom: 8px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid var(--border-subtle); padding-top: 25px; margin-bottom: 25px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-subtle); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .header-left strong { font-size: 20px; }
        }