:root {
            --primary: #00C853;
            --secondary: #FFD700;
            --accent: #FF3D00;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --brand-highlight: #F0B90B;
            --success: #0ECB81;
            --error: #F6465D;
            --border-subtle: #2B3139;
            --border-default: #474D57;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        header {
            background-color: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            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); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        main { padding: 0; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; object-fit: cover; }
        .jackpot-container {
            background: radial-gradient(circle, #2b3139 0%, #1e2329 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-highlight);
            box-shadow: 0 4px 20px rgba(240, 185, 11, 0.15);
        }
        .jackpot-label { color: var(--brand-highlight); font-size: 18px; font-weight: 700; margin-bottom: 10px; display: block; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--secondary);
            font-family: 'Inter', sans-serif;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
        }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 20px; color: var(--brand-highlight); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .game-section { padding: 15px; }
        .section-title { font-size: 18px; font-weight: 700; margin-bottom: 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.3s; }
        .game-card:hover img { transform: scale(1.05); }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; color: var(--text-primary); }
        .payment-section { background: var(--bg-elevated); padding: 20px 15px; margin: 15px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--text-secondary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-muted); }
        .guidelines-section { padding: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 12px; }
        .guide-card h2 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .marquee-container {
            background: #12161c;
            padding: 15px;
            margin: 15px 0;
            overflow: hidden;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .marquee-content { display: flex; flex-direction: column; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .win-record { display: flex; justify-content: space-between; padding: 8px 0; font-size: 12px; border-bottom: 1px dashed var(--bg-elevated); }
        .win-user { color: var(--success); }
        .win-amount { color: var(--secondary); font-weight: 700; }
        .provider-section { padding: 15px; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; text-align: center; font-weight: 600; border: 1px solid var(--border-subtle); background: linear-gradient(135deg, #1e2329 0%, #2b3139 100%); }
        .provider-item:nth-child(odd) { color: var(--primary); }
        .provider-item:nth-child(even) { color: var(--brand-highlight); }
        .review-section { padding: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid var(--primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 20px; color: var(--text-muted); }
        .review-name { font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--secondary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 12px 15px; font-weight: 600; color: var(--brand-highlight); font-size: 15px; border-bottom: 1px solid var(--bg-elevated); }
        .faq-answer { padding: 12px 15px; font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .security-section { padding: 20px 15px; background: #080a0c; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-badge { font-size: 12px; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .security-badge i { font-size: 24px; color: var(--primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-muted); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; }
        footer {
            background: var(--bg-main);
            padding: 30px 15px 80px;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contact a { font-size: 14px; color: var(--text-secondary); background: var(--bg-surface); padding: 8px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 15px; border-top: 1px solid var(--border-subtle); }