:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --primary-gold-dark: #996515;
            --secondary-accent: #E60000;
            --deep-base: #0A0B0C;
            --surface-card: #16181D;
            --surface-elevated: #212429;
            --text-high: #FFFFFF;
            --text-subtle: #B0B3B8;
            --text-muted: #65676B;
            --win: #00C853;
            --border: #2D2F34;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--deep-base);
            color: var(--text-subtle);
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.5;
            padding-bottom: 80px;
        }
        header {
            background-color: var(--surface-card);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 400; color: var(--text-high); }
        .header-right { display: flex; gap: 10px; }
        .btn { border: none; border-radius: 6px; padding: 8px 16px; font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--primary-gold); color: #000; }
        .container { padding: 16px; max-width: 1200px; margin: 0 auto; }
        .banner { width: 100%; border-radius: 12px; aspect-ratio: 2 / 1; object-fit: cover; cursor: pointer; display: block; margin-bottom: 20px; }
        .jackpot-box {
            background: linear-gradient(145deg, var(--surface-card), var(--surface-elevated));
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }
        .jackpot-label { color: var(--primary-gold); font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 1px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 36px;
            font-weight: 800;
            color: var(--text-high);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .intro-card { background: var(--surface-card); border-radius: 12px; padding: 20px; margin-bottom: 24px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; font-size: 20px; color: var(--text-high); margin-bottom: 12px; line-height: 1.2; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
        .game-card { background: var(--surface-card); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; color: var(--text-high); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .section-title { font-family: 'Montserrat', sans-serif; font-size: 20px; color: var(--primary-gold); margin: 24px 0 16px; display: flex; align-items: center; gap: 10px; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; }
        .payment-item { background: var(--surface-card); border-radius: 8px; padding: 12px 5px; text-align: center; font-size: 11px; border: 1px solid var(--border); }
        .payment-item i { font-size: 20px; color: var(--primary-gold); display: block; margin-bottom: 6px; }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .guide-card { background: var(--surface-card); padding: 16px; border-radius: 12px; }
        .guide-card h2 { font-size: 18px; color: var(--primary-gold-light); margin-bottom: 8px; }
        .win-list { background: var(--surface-card); border-radius: 12px; overflow: hidden; }
        .win-item { display: flex; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 13px; }
        .win-user { color: var(--primary-gold-light); font-weight: 600; }
        .win-amount { color: var(--win); font-weight: 700; }
        .providers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
        .provider-tag { background: linear-gradient(90deg, var(--surface-elevated), var(--surface-card)); padding: 12px; border-radius: 6px; text-align: center; font-weight: 600; color: var(--primary-gold); border: 1px solid var(--border); }
        .review-card { background: var(--surface-card); padding: 16px; border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--border); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .stars { color: var(--primary-gold); font-size: 12px; }
        .faq-section { margin-bottom: 24px; }
        .faq-item { background: var(--surface-card); border-radius: 8px; margin-bottom: 8px; padding: 16px; }
        .faq-item h3 { font-size: 16px; color: var(--text-high); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-subtle); }
        .security-section { background: #1a1d21; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--secondary-accent); }
        .security-section h2 { font-size: 18px; color: var(--text-high); margin-bottom: 12px; }
        .security-icons { font-size: 24px; display: flex; justify-content: center; gap: 20px; margin: 15px 0; color: var(--primary-gold); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface-card); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border); z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-subtle); text-align: center; font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: var(--primary-gold); }
        footer { background: var(--surface-card); padding: 30px 16px 100px; border-top: 1px solid var(--border); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; justify-content: center; }
        .footer-contact a { color: var(--primary-gold); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 20px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); pt: 15px; }