:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F1D279;
            --primary-gold-dark: #AA8A2E;
            --accent-royal-blue: #1A3A6C;
            --accent-gold-gradient: linear-gradient(180deg, #F1D279 0%, #D4AF37 100%);
            --main-bg: #0B0E11;
            --surface-bg: #161A1F;
            --elevated-bg: #1F232B;
            --modal-overlay: rgba(0, 0, 0, 0.85);
            --primary-text: #FFFFFF;
            --secondary-text: #94A3B8;
            --disabled-text: #4B5563;
            --brand-text: #D4AF37;
            --success: #10B981;
            --error: #EF4444;
            --win-highlight: #FFD700;
            --default-border: #2D3748;
            --active-border: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--primary-text);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: var(--surface-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(--default-border);
        }
        .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: 400; text-transform: uppercase; letter-spacing: 1px; }
        .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(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--accent-gold-gradient); color: var(--main-bg); }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            margin: 20px 15px;
            background: var(--elevated-bg);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary-gold); font-size: 14px; text-transform: uppercase; font-weight: 700; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'JetBrains Mono', monospace; font-size: 28px; color: var(--win-highlight); font-weight: 700; }

        .intro-card { margin: 20px 15px; padding: 20px; background: var(--surface-bg); border-radius: 12px; border: 1px solid var(--default-border); }
        .intro-card h1 { font-size: 20px; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--secondary-text); }

        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--primary-gold); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--surface-bg); border-radius: 10px; overflow: hidden; border: 1px solid var(--default-border); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: var(--secondary-text); }

        .trust-section { margin: 20px 15px; padding: 20px; background: var(--surface-bg); border-radius: 12px; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; opacity: 0.7; }
        .trust-item { height: 30px; display: flex; justify-content: center; font-size: 20px; color: var(--secondary-text); }

        .guidelines { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--elevated-bg); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--primary-gold-light); }
        .guide-item p { font-size: 13px; color: var(--secondary-text); }

        .marquee-container { background: var(--surface-bg); margin: 20px 0; padding: 10px 0; overflow: hidden; border-top: 1px solid var(--default-border); border-bottom: 1px solid var(--default-border); }
        .marquee-content { display: flex; animation: marquee 40s linear infinite; gap: 20px; width: max-content; }
        .win-tag { background: var(--elevated-bg); padding: 8px 15px; border-radius: 20px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--default-border); white-space: nowrap; }
        .win-tag span:first-child { color: var(--primary-gold); font-weight: 700; }
        .win-tag span:last-child { color: var(--success); }

        .providers-wall { padding: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-chip { background: var(--surface-bg); border: 1px solid var(--default-border); padding: 6px 12px; border-radius: 4px; font-size: 12px; color: var(--secondary-text); }

        .reviews-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--surface-bg); padding: 15px; border-radius: 10px; border: 1px solid var(--default-border); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primary-gold); }
        .review-meta { flex: 1; }
        .username { font-weight: 600; font-size: 14px; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--disabled-text); }
        .review-content { font-size: 13px; color: var(--secondary-text); }

        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: var(--surface-bg); border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: var(--primary-gold-light); border-bottom: 1px solid var(--default-border); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--secondary-text); }

        .security-footer { margin: 20px 15px; padding: 20px; background: var(--accent-royal-blue); border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; font-size: 24px; }
        .security-footer p { font-size: 12px; opacity: 0.9; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--surface-bg);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--default-border);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; color: var(--secondary-text); }
        .nav-item i { font-size: 20px; }

        footer { background: var(--surface-bg); padding: 30px 15px 100px; border-top: 1px solid var(--default-border); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contact a { color: var(--primary-gold); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--secondary-text); text-align: center; }
        .copyright { text-align: center; font-size: 12px; color: var(--disabled-text); border-top: 1px solid var(--default-border); padding-top: 20px; }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }