:root {
            --primary-bg: #0B0E11;
            --secondary-bg: #1E2329;
            --surface: #2B3139;
            --brand-primary: #FFD700;
            --brand-secondary: #C5A021;
            --brand-accent: #F0B90B;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --success: #0ECB81;
            --error: #F6465D;
            --border-default: #2F3336;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--primary-bg);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3, strong { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--secondary-bg);
            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 .logo-area { display: flex; align-items: center; gap: 8px; }
        header .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-area strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        header .login-btn { background: transparent; color: var(--text-primary); }
        header .register-btn { background: var(--brand-primary); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 2 / 1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1E2329 0%, #2B3139 100%);
            border: 2px solid var(--brand-primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--brand-primary); font-weight: 900; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--brand-primary); letter-spacing: 2px; }
        .intro-card { background: var(--secondary-bg); padding: 25px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid var(--brand-primary); }
        .intro-card h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }
        .section-title { font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--brand-primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--surface); border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-primary); }
        .payment-license { background: var(--secondary-bg); padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 25px; }
        .pl-item { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
        .pl-item i { font-size: 24px; color: var(--brand-accent); }
        .pl-item span { font-size: 11px; color: var(--text-muted); }
        .guides-section { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--surface); padding: 20px; border-radius: 12px; }
        .guide-item h2 { font-size: 18px; color: var(--brand-primary); margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .win-logs { background: var(--secondary-bg); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .log-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .log-row:last-child { border-bottom: none; }
        .log-user { color: var(--text-secondary); }
        .log-amount { color: var(--success); font-weight: bold; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
        .provider-tag { flex: 1 1 calc(50% - 10px); background: var(--surface); padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; color: var(--brand-accent); border: 1px solid var(--brand-secondary); }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--surface); 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: 30px; color: var(--text-muted); }
        .review-info h3 { font-size: 14px; }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; display: block; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--secondary-bg); margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--brand-primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); display: block; }
        .security-section { background: #07090b; padding: 25px; border-radius: 12px; text-align: center; border: 1px dashed var(--brand-secondary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--success); }
        .security-section h2 { font-size: 18px; margin-bottom: 10px; }
        .security-section p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--secondary-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--secondary-bg); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-contact a { background: var(--surface); padding: 10px; border-radius: 6px; text-align: center; font-size: 13px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-default); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .providers-wall .provider-tag { flex: 1 1 calc(25% - 10px); }
        }