:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #E91E63;
            --accent: #00E676;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #242424;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --on-brand: #000000;
            --border-low: #333333;
            --border-high: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Tiro Bangla', serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background-color: var(--bg-surface);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-low);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: transform 0.2s;
        }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
        .btn-register { background: var(--primary); color: var(--on-brand); }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-high);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 600; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #fff; font-family: 'Inter', sans-serif; }
        .intro-card { background: var(--bg-surface); margin: 20px 15px; padding: 25px; border-radius: 15px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-title { margin: 25px 15px 15px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-low);
            transition: 0.3s;
        }
        .game-img-wrapper { aspect-ratio: 1/1; width: 100%; background: #242424; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 12px; color: var(--text-muted); }
        .payment-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px;
            background: var(--bg-surface); margin: 20px 15px; border-radius: 15px;
        }
        .payment-item { text-align: center; font-size: 12px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 8px; display: block; }
        .guidelines { padding: 0 15px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .guide-item h3 { color: var(--primary); font-size: 18px; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .winners-marquee {
            background: var(--bg-surface); margin: 20px 0; padding: 15px 0; overflow: hidden; white-space: nowrap;
            border-top: 1px solid var(--border-low); border-bottom: 1px solid var(--border-low);
        }
        .marquee-content { display: inline-block; animation: scrollMarquee 30s linear infinite; }
        @keyframes scrollMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        .winner-tag {
            display: inline-flex; align-items: center; background: var(--bg-elevated);
            padding: 8px 15px; border-radius: 20px; margin-right: 15px; border: 1px solid var(--border-low);
        }
        .winner-tag strong { color: var(--accent); margin: 0 5px; }
        .providers-wall {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 15px;
            padding: 20px; background: var(--bg-surface); margin: 20px 15px; border-radius: 15px;
        }
        .provider-tag { color: var(--text-muted); font-weight: 600; font-size: 14px; }
        .reviews-grid { padding: 0 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-low); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .stars { color: var(--primary); font-size: 12px; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; padding: 15px; margin-bottom: 10px; }
        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: #000; padding: 25px 15px; text-align: center; border-top: 2px solid var(--primary);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent); }
        .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-low); z-index: 1000;
        }
        .nav-item { text-align: center; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-low); }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 25px; }
        .footer-link { color: var(--primary); font-size: 14px; border: 1px solid var(--border-low); padding: 5px 12px; border-radius: 5px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-grid a { font-size: 13px; color: var(--text-secondary); text-align: center; }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-low); padding-top: 20px; }