:root {
            --bg-default: #0B0E11;
            --bg-surface: #161A1E;
            --bg-surface-variant: #1E2329;
            --primary: #FCD535;
            --primary-variant: #EAB308;
            --secondary: #00C853;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --border-default: #2B3139;
            --accent: #FF3E3E;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: 'Noto Sans Bengali', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Hind Siliguri', sans-serif; font-weight: 700; color: var(--primary); }
        a { text-decoration: none; color: inherit; }
        header {
            background: 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-default);
        }
        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(--text-primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn {
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        header .login-btn { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .reg-btn { background: var(--primary); color: var(--bg-default); }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(252, 213, 53, 0.2);
        }
        .jackpot-title { font-size: 18px; color: var(--text-secondary); margin-bottom: 10px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            font-family: 'Hind Siliguri', sans-serif;
            text-shadow: 0 0 10px rgba(252, 213, 53, 0.5);
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 22px; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card {
            background: var(--bg-surface-variant);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 8px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }
        .payment-item { text-align: center; }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); display: block; }
        .guides-container { display: grid; gap: 15px; margin-bottom: 20px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; border: 1px solid var(--border-default); }
        .guide-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--secondary); }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .winners-marquee {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 10px;
            height: 150px;
            overflow: hidden;
            position: relative;
        }
        .winners-list {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .winner-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 5px;
            border-bottom: 1px solid var(--border-default);
            font-size: 12px;
        }
        .winner-name { color: var(--primary); }
        .winner-win { color: var(--secondary); font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-btn {
            background: linear-gradient(45deg, var(--bg-surface), var(--bg-surface-variant));
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--primary);
            border: 1px solid var(--border-default);
        }
        .reviews-container { display: grid; gap: 15px; }
        .review-card { background: var(--bg-surface-variant); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-secondary); opacity: 0.6; }
        .faq-container { display: grid; gap: 10px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--text-primary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section {
            background: #1e2329;
            padding: 20px;
            border-radius: 12px;
            margin-top: 30px;
            text-align: center;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; font-size: 11px; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: var(--text-secondary); }
        .nav-item:nth-child(3) i { color: var(--primary); font-size: 24px; }
        footer { background: #0B0E11; padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-social a { background: var(--bg-surface); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); text-align: center; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-secondary); opacity: 0.7; border-top: 1px solid var(--border-default); padding-top: 20px; }