:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #D32F2F;
            --accent: #00E676;
            --bg-main: #0A0B0D;
            --bg-surface: #16181D;
            --bg-elevated: #1F2229;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --border-default: #2B3139;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background: 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-default);
        }
        .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(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-decoration: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, #1F2229 0%, #16181D 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            font-family: 'Roboto', sans-serif;
            display: flex;
            justify-content: center;
            overflow: hidden;
            height: 48px;
        }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin-top: 20px; font-size: 18px; border-left: 4px solid var(--primary); margin-left: 15px; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--bg-elevated);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            display: block;
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 8px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background: var(--bg-surface);
            margin: 15px;
            border-radius: 12px;
        }
        .pl-item { text-align: center; font-size: 10px; color: var(--text-muted); }
        .pl-item i { font-size: 20px; color: var(--primary); display: block; margin-bottom: 5px; }
        .guidelines { padding: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; margin-bottom: 12px; }
        .guide-item h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .lottery-marquee {
            margin: 15px;
            background: var(--bg-surface);
            border-radius: 8px;
            height: 150px;
            overflow: hidden;
            position: relative;
            padding: 10px;
        }
        .lottery-content {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }
        .lottery-row { font-size: 12px; padding: 5px 0; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; }
        .lottery-row span:last-child { color: var(--accent); font-weight: bold; }
        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 15px;
        }
        .provider-item {
            background: linear-gradient(45deg, #1F2229, #2B3139);
            padding: 12px;
            text-align: center;
            border-radius: 6px;
            font-weight: bold;
            color: var(--primary);
            font-size: 14px;
        }
        .reviews { padding: 15px; }
        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .stars { color: #f0b90b; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--primary); border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); display: block; }
        .security-section { padding: 20px 15px; text-align: center; background: var(--bg-surface); margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #16181D;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        footer {
            background: #000;
            padding: 30px 15px 100px;
            color: var(--text-muted);
            font-size: 13px;
        }
        .footer-contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; background: var(--bg-elevated); padding: 10px; border-radius: 5px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; }
        .copyright { text-align: center; border-top: 1px solid var(--border-default); padding-top: 20px; line-height: 1.6; }
        .jackpot-anim { display: inline-block; animation: pulse 2s infinite; }
        @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }