:root {
            --bg-p: #0B0E11;
            --bg-s: #161A1E;
            --bg-t: #1E2329;
            --brand-g: #D4AF37;
            --brand-y: #F3BA2F;
            --brand-h: #B8962E;
            --brand-r: #E02020;
            --text-p: #FFFFFF;
            --text-s: #9BA3AF;
            --border: #2D333B;
            --success: #00C853;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-p);
            color: var(--text-p);
            font-family: 'Inter', 'Roboto', sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', 'Archivo', sans-serif; line-height: 1.2; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            background-color: var(--bg-s);
            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);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-y); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-reg {
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-p); border: 1px solid var(--brand-g); }
        .btn-reg { background: var(--brand-g); color: var(--bg-p); }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            margin: 15px;
            padding: 20px;
            background: linear-gradient(135deg, #1E2329 0%, #0B0E11 100%);
            border: 2px solid var(--brand-g);
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title { font-size: 14px; color: var(--brand-y); text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: var(--text-p); }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-s); border-radius: 12px; border: 1px solid var(--border); }
        .intro-card h1 { font-size: 20px; color: var(--brand-g); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-s); }
        .section-title { margin: 20px 15px 10px; font-size: 18px; border-left: 4px solid var(--brand-g); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-t); border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; margin: 15px; background: var(--bg-s); border-radius: 12px; }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-s); }
        .payment-item i { display: block; font-size: 20px; color: var(--brand-y); margin-bottom: 5px; }
        .guide-section { padding: 0 15px; }
        .guide-card { background: var(--bg-s); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border); }
        .guide-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--brand-y); }
        .guide-card p { font-size: 13px; color: var(--text-s); text-align: justify; }
        .win-records { margin: 15px; background: var(--bg-s); border-radius: 12px; padding: 15px; }
        .win-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
        .win-item:last-child { border-bottom: none; }
        .win-user { color: var(--brand-y); font-weight: 600; }
        .win-amount { color: var(--success); font-weight: 700; }
        .providers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-tag { background: var(--bg-t); padding: 12px; text-align: center; border-radius: 8px; border: 1px solid var(--brand-g); font-size: 14px; font-weight: 600; }
        .comment-section { padding: 0 15px; }
        .comment-card { background: var(--bg-s); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--brand-y); }
        .comment-info h3 { font-size: 14px; }
        .stars { color: var(--brand-y); font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-s); margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: var(--text-p); opacity: 0.5; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--bg-s); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border); padding: 15px; }
        .faq-item h3 { font-size: 14px; color: var(--brand-y); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-s); }
        .security-section { margin: 15px; background: var(--bg-t); padding: 20px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; font-size: 24px; color: var(--brand-g); }
        .security-text { font-size: 12px; color: var(--text-s); }
        .navigator {
            position: fixed;
            bottom: 10px;
            left: 10px;
            right: 10px;
            height: 60px;
            background: rgba(22, 26, 30, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border: 1px solid var(--brand-g);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-s); font-size: 10px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 2px; }
        .nav-item:hover { color: var(--brand-y); }
        footer {
            background-color: var(--bg-s);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border);
            text-align: center;
        }
        .footer-contact { margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-contact a { font-size: 14px; color: var(--brand-y); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-s); }
        .copyright { font-size: 12px; color: var(--text-s); border-top: 1px solid var(--border); padding-top: 20px; }