:root {
            --bg-primary: #0A0A0C;
            --bg-secondary: #16161A;
            --bg-tertiary: #1C1C21;
            --bg-surface: #24242B;
            --bg-overlay: rgba(0, 0, 0, 0.9);
            --brand-primary: #D4AF37;
            --brand-hover: #F1C40F;
            --brand-active: #B8860B;
            --brand-accent: #FFD700;
            --brand-glow: rgba(212, 175, 55, 0.4);
            --success: #10B981;
            --warning: #F59E0B;
            --error: #EF4444;
            --info: #3B82F6;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --text-brand: #D4AF37;
            --border-subtle: #27272A;
            --border-default: #3F3F46;
            --border-brand: #D4AF37;
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Montserrat', 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        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: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: var(--brand-primary); color: #000; }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-secondary));
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-glow);
            box-shadow: 0 0 15px var(--brand-glow);
        }
        .jackpot-title { color: var(--brand-accent); font-size: 14px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--text-primary); font-family: var(--font-display); }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-tertiary); border-radius: 12px; border-left: 4px solid var(--brand-primary); }
        h1 { font-size: 20px; color: var(--brand-primary); margin-bottom: 10px; font-family: var(--font-display); }
        h2 { font-size: 24px; color: var(--text-primary); margin: 25px 15px 15px; text-align: left; position: relative; padding-left: 12px; }
        h2::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--brand-primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; transition: 0.2s; border: 1px solid var(--border-subtle); }
        .game-card:active { transform: scale(0.96); }
        .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: 12px; color: var(--text-muted); }
        .trust-section { margin: 20px 15px; padding: 20px; background: var(--bg-secondary); border-radius: 12px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .payment-icons i { font-size: 30px; color: var(--text-secondary); }
        .guidelines { padding: 15px; }
        .guide-item { background: var(--bg-tertiary); padding: 15px; border-radius: 10px; margin-bottom: 12px; border: 1px solid var(--border-subtle); }
        .guide-item h3 { color: var(--brand-primary); margin-bottom: 8px; font-size: 18px; }
        .marquee-container { background: var(--bg-surface); margin: 20px 0; padding: 15px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; flex-direction: column; animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-record { display: flex; justify-content: space-between; padding: 10px 20px; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .win-user { color: var(--brand-accent); font-weight: 600; }
        .win-amount { color: var(--success); font-weight: 700; }
        .provider-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 15px; }
        .provider-tag { background: var(--bg-surface); padding: 8px 15px; border-radius: 20px; border: 1px solid var(--border-default); font-size: 12px; color: var(--text-secondary); }
        .reviews-container { padding: 15px; }
        .review-card { background: var(--bg-tertiary); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--brand-primary); }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: var(--brand-accent); font-size: 12px; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-secondary); border-radius: 8px; padding: 15px; border: 1px solid var(--border-subtle); }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .security-section { margin: 20px 15px; padding: 20px; background: var(--bg-tertiary); border-radius: 12px; text-align: center; border: 1px solid var(--error); }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 24px; margin-top: 15px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-secondary); display: flex; justify-content: space-around; align-items: center; border-top: 2px solid var(--brand-primary); z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { color: var(--brand-primary); transform: translateY(-10px); background: var(--bg-secondary); padding: 10px; border-radius: 50%; border: 2px solid var(--brand-primary); }
        footer { padding: 30px 15px 100px; background: var(--bg-primary); border-top: 1px solid var(--border-subtle); }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-contact a { color: var(--brand-primary); text-decoration: none; font-size: 14px; font-weight: 600; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; color: var(--text-muted); font-size: 12px; padding-top: 20px; border-top: 1px solid var(--border-subtle); }