:root {
            --bg-color: #1a1d24;
            --card-bg: #242832;
            --primary-gold: #FFD700;
            --text-light: #ffffff;
            --text-dim: #a0a0a0;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --border-radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-light);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: rgba(26, 29, 36, 0.95);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .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: normal; color: var(--primary-gold); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            border: none;
            border-radius: 6px;
            padding: 8px 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .btn-login { background-color: transparent; color: var(--text-light); border: 1px solid var(--text-dim); }
        .btn-register { background: var(--cta-gradient); color: white; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-section {
            background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%);
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid var(--primary-gold);
        }
        .jackpot-label { color: var(--primary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { padding: 20px; background: var(--card-bg); margin: 15px; border-radius: var(--border-radius); border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 18px; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::after { content: ''; flex: 1; height: 1px; background: #333; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: var(--border-radius); overflow: hidden; text-decoration: none; color: inherit; 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: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 11px; color: var(--text-dim); }
        .payments-license { padding: 20px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; background: #15181e; }
        .payment-icon { font-size: 24px; color: var(--text-dim); width: 60px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid #333; border-radius: 4px; }
        .guidelines { padding: 15px; }
        .guideline-item { background: var(--card-bg); padding: 15px; border-radius: var(--border-radius); margin-bottom: 15px; }
        .guideline-item h2 { font-size: 16px; color: var(--primary-gold); margin-bottom: 8px; }
        .guideline-item p { font-size: 13px; color: var(--text-dim); }
        .marquee-container { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; position: relative; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .win-record { display: inline-flex; align-items: center; gap: 10px; background: #222; margin-right: 20px; padding: 5px 15px; border-radius: 20px; border: 1px solid #444; font-size: 12px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: #333; padding: 5px 12px; border-radius: 4px; font-size: 12px; color: var(--text-light); }
        .reviews-container { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: var(--border-radius); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primary-gold); }
        .review-meta { display: flex; flex-direction: column; }
        .review-name { font-weight: bold; font-size: 14px; }
        .stars { color: var(--primary-gold); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-dim); }
        .review-text { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #222; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; border-bottom: 1px solid #333; color: var(--primary-gold); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-dim); }
        .security-section { padding: 25px 15px; text-align: center; background: #000; color: var(--text-dim); font-size: 12px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 24px; margin-bottom: 15px; color: #444; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-dim); display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item:hover { color: var(--primary-gold); }
        footer { padding: 30px 15px 100px; background: #111; border-top: 1px solid #222; }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-light); font-size: 14px; text-decoration: none; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; }
        .footer-links a { color: var(--text-dim); font-size: 12px; text-decoration: none; }
        .copyright { margin-top: 30px; text-align: center; font-size: 11px; color: #555; }