:root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #141414;
            --bg-tertiary: #1e1e1e;
            --bg-elevated: #252525;
            --brand-gold: #d4af37;
            --brand-gold-light: #f1c40f;
            --brand-green: #00a86b;
            --brand-red: #e63946;
            --brand-blue: #0056b3;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --text-muted: #757575;
            --border-default: #2c2c2c;
            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-secondary);
            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: 400; font-family: var(--font-display); }
        .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(--brand-gold); }
        .btn-register { background: var(--brand-gold); color: #000; }
        main { padding-bottom: 100px; }
        .banner { width: 100%; cursor: pointer; display: block; }
        .banner img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; display: block; }
        .jackpot-container {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-gold);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--brand-gold); font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-family: var(--font-mono); font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
        .intro-card { padding: 20px 15px; text-align: center; }
        .intro-card h1 { font-family: var(--font-display); font-size: 24px; color: var(--brand-gold); margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 15px; font-family: var(--font-display); font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: var(--brand-gold); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-tertiary); border-radius: 8px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .game-info h3 { color: var(--text-primary); font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { color: var(--text-muted); font-size: 12px; }
        .trust-section { background: var(--bg-secondary); margin: 20px 15px; padding: 20px; border-radius: 12px; }
        .trust-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; justify-items: center; margin-top: 15px; opacity: 0.7; }
        .trust-icons i { font-size: 24px; }
        .guidelines { padding: 15px; }
        .guide-item { background: var(--bg-tertiary); padding: 15px; border-radius: 8px; margin-bottom: 15px; border-left: 3px solid var(--brand-gold); }
        .guide-item h2 { font-size: 18px; margin-bottom: 8px; color: var(--brand-gold); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .marquee-container { background: var(--bg-secondary); padding: 10px 0; overflow: hidden; white-space: nowrap; margin-top: 10px; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .marquee-item { display: inline-flex; align-items: center; background: var(--bg-elevated); padding: 5px 15px; border-radius: 20px; margin: 0 10px; font-size: 12px; border: 1px solid var(--border-default); }
        .marquee-item b { color: var(--brand-green); margin-left: 5px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; text-align: center; color: var(--text-muted); font-size: 14px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .provider-name { background: var(--bg-tertiary); padding: 5px 12px; border-radius: 4px; border: 1px solid var(--border-default); }
        .reviews { padding: 15px; }
        .review-card { background: var(--bg-tertiary); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-gold); }
        .review-meta h3 { font-size: 14px; }
        .review-stars { color: var(--brand-gold-light); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .review-body { font-size: 13px; color: var(--text-secondary); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .safety-section { margin: 20px 15px; padding: 20px; background: linear-gradient(to bottom, #1a1a1a, #0a0a0a); border-radius: 12px; text-align: center; border-top: 2px solid var(--brand-red); }
        .safety-badges { display: flex; justify-content: center; gap: 20px; margin: 15px 0; }
        .safety-badges i { font-size: 30px; color: var(--text-secondary); }
        .safety-text { font-size: 12px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; width: 100%; background: var(--bg-secondary); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; font-size: 10px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--brand-gold); }
        footer { background: var(--bg-primary); padding: 40px 15px 100px 15px; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; justify-content: center; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 12px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-divider); }