:root {
            --primary-gold: #FFD700;
            --primary-gold-hover: #E6C200;
            --accent-emerald: #00C853;
            --accent-crimson: #D50000;
            --bg-base: #0A0B0D;
            --bg-surface: #16181D;
            --bg-card: #1E2126;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #707070;
            --border-subtle: #2D3139;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-display: 'Galada', cursive;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            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-subtle);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        header .auth-btns { display: flex; gap: 8px; }
        header button {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-reg { background: var(--primary-gold); color: var(--bg-base); }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-sec {
            background: linear-gradient(135deg, #1e2126 0%, #0a0b0d 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
        }
        .jackpot-title { font-family: var(--font-display); font-size: 24px; color: var(--primary-gold); margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--accent-emerald); letter-spacing: 1px; }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-card); border-radius: 15px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 20px; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 18px; color: var(--text-primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); transition: 0.3s; }
        .game-card:hover { transform: translateY(-3px); border-color: var(--primary-gold); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; color: var(--text-primary); padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-sec { margin: 15px; padding: 15px; background: var(--bg-surface); border-radius: 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary-gold); }
        .payment-item span { font-size: 10px; }
        .guidelines { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--bg-card); padding: 15px; border-radius: 12px; }
        .guide-item h2 { font-size: 16px; color: var(--primary-gold); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .win-records { margin: 15px; background: var(--bg-surface); border-radius: 15px; overflow: hidden; height: 200px; position: relative; border: 1px solid var(--border-subtle); }
        .marquee-list { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        .win-item { padding: 10px 15px; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
        .win-user { color: var(--accent-emerald); font-weight: 600; }
        .win-amount { color: var(--primary-gold); }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -600px; } }
        .providers-sec { padding: 0 15px; margin: 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-btn { background: var(--bg-card); padding: 12px; border-radius: 8px; text-align: center; color: var(--primary-gold); font-weight: 600; border: 1px solid var(--border-subtle); }
        .reviews-sec { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .rev-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .rev-header i { font-size: 24px; color: var(--text-secondary); }
        .rev-info h4 { font-size: 14px; color: var(--text-primary); }
        .stars { color: var(--primary-gold); font-size: 12px; }
        .rev-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .rev-date { font-size: 11px; color: var(--text-muted); margin-top: 5px; display: block; }
        .faq-sec { padding: 15px; }
        .faq-item { background: var(--bg-card); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-sec { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 15px; text-align: center; border: 1px solid var(--accent-crimson); }
        .security-sec i { font-size: 30px; color: var(--accent-crimson); margin-bottom: 10px; }
        .security-sec h2 { font-size: 18px; margin-bottom: 10px; }
        .security-sec p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 12px; }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: center; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }