:root {
            --bg-primary: #0A0B0D;
            --bg-secondary: #16181D;
            --bg-tertiary: #1F2229;
            --bg-elevated: #252830;
            --brand-primary: #FFB800;
            --brand-variant: #D49A00;
            --brand-secondary: #E31C31;
            --brand-accent: #00E676;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-high: #FFFFFF;
            --text-medium: #B0B3B8;
            --text-disabled: #65676B;
            --border-subtle: #2D2F36;
            --border-strong: #3E4049;
            --semantic-hot: #FF3D00;
            --semantic-live: #FF0000;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-high);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Lexend', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        header {
            height: 60px;
            background: var(--bg-secondary);
            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-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-high); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: var(--bg-primary); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        main { padding: 15px; max-width: 1200px; margin: 0 auto; }
        .jackpot-container {
            background: var(--bg-tertiary);
            border-radius: 12px;
            padding: 20px;
            margin: 15px 0;
            text-align: center;
            border: 1px solid var(--brand-primary);
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-size: 14px; color: var(--brand-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .intro-card { background: var(--bg-secondary); border-radius: 12px; padding: 20px; border: 1px solid var(--border-subtle); margin-bottom: 20px; }
        .intro-card h1 { font-size: 20px; color: var(--brand-primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-medium); }
        .section-title { font-size: 18px; margin: 25px 0 15px; display: flex; align-items: center; gap: 8px; }
        .section-title i { color: var(--brand-primary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: var(--bg-tertiary); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-medium); text-transform: uppercase; }
        .payments-license { background: var(--bg-secondary); border-radius: 12px; padding: 20px; text-align: center; margin: 20px 0; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .payment-icons i { font-size: 24px; color: var(--text-medium); opacity: 0.8; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 20px; }
        .guide-item { background: var(--bg-tertiary); padding: 15px; border-radius: 10px; border-left: 4px solid var(--brand-primary); }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--text-high); }
        .guide-item p { font-size: 13px; color: var(--text-medium); }
        .winners-marquee { background: var(--bg-secondary); padding: 15px; border-radius: 12px; overflow: hidden; margin: 20px 0; }
        .marquee-container { display: flex; flex-direction: column; gap: 10px; animation: scrollUp 20s linear infinite; }
        .winner-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 8px; background: var(--bg-tertiary); border-radius: 8px; }
        .winner-user { color: var(--brand-primary); font-weight: 600; }
        .winner-amount { color: var(--brand-accent); font-weight: 700; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 15px; background: var(--bg-tertiary); border-radius: 12px; }
        .provider-tag { padding: 6px 12px; background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text-medium); }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin: 20px 0; }
        .review-card { background: var(--bg-secondary); border-radius: 12px; padding: 20px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-tertiary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--brand-primary); }
        .review-meta h4 { font-size: 14px; }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-medium); font-style: italic; }
        .faq-section { margin: 20px 0; }
        .faq-item { background: var(--bg-secondary); border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid var(--border-subtle); }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--brand-primary); }
        .faq-item p { font-size: 14px; color: var(--text-medium); }
        .security-section { background: var(--bg-secondary); border-radius: 12px; padding: 20px; text-align: center; border-top: 2px solid var(--brand-secondary); }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-accent); }
        .responsible-txt { font-size: 12px; color: var(--text-medium); margin-top: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-around; align-items: center; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-medium); font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-primary); padding: 40px 20px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; justify-content: center; }
        .footer-contact a { font-size: 14px; color: var(--brand-primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-medium); }
        .footer-copyright { text-align: center; font-size: 12px; color: var(--text-disabled); padding-top: 20px; border-top: 1px solid var(--border-subtle); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines { grid-template-columns: repeat(2, 1fr); }
            .reviews-container { grid-template-columns: repeat(2, 1fr); display: grid; }
        }