:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-surface: #262626;
            --brand-primary: #FFD700;
            --brand-secondary: #C5A021;
            --brand-accent: #00C853;
            --brand-highlight: #FF3D00;
            --text-primary: #FFFFFF;
            --text-secondary: #BDBDBD;
            --text-muted: #757575;
            --border-default: #333333;
            --border-active: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--border-default);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: #000; }
        .hero-banner { width: 100%; display: block; aspect-ratio: 2 / 1; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #262626 0%, #0D0D0D 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-label { color: var(--brand-primary); font-size: 14px; font-weight: 600; margin-bottom: 5px; letter-spacing: 1px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-primary);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            font-family: 'Noto Sans Bengali', sans-serif;
        }
        .section-intro { padding: 20px 15px; text-align: center; }
        .section-intro h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.25; }
        .section-intro p { font-size: 14px; color: var(--text-secondary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .section-title { padding: 20px 15px 5px; font-size: 20px; color: var(--brand-primary); display: flex; align-items: center; gap: 8px; }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            text-decoration: none;
            height: 100px;
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 14px; color: var(--text-primary); margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-content p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item {
            background: var(--bg-secondary);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 20px; color: var(--brand-secondary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }
        .lottery-section {
            background: var(--bg-secondary);
            margin: 15px;
            padding: 15px;
            border-radius: 10px;
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        .lottery-track {
            display: flex;
            flex-direction: column;
            gap: 10px;
            animation: scroll-up 40s linear infinite;
        }
        @keyframes scroll-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 12px;
            background: var(--bg-surface);
            border-radius: 6px;
            font-size: 12px;
        }
        .lottery-user { color: var(--brand-primary); font-weight: 500; }
        .lottery-win { color: var(--brand-accent); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--text-secondary);
            border-bottom: 2px solid var(--brand-primary);
        }
        .review-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            border-left: 4px solid var(--brand-primary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-user-info h4 { font-size: 14px; color: var(--brand-primary); }
        .review-rating { color: var(--brand-primary); font-size: 12px; }
        .review-body { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .safety-section { padding: 20px 15px; background: #111; text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; }
        .safety-icons .fa-lock { color: var(--brand-accent); }
        .safety-icons .age-limit { font-weight: 700; border: 2px solid var(--brand-highlight); border-radius: 50%; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; color: var(--brand-highlight); font-size: 14px; }
        .safety-text { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .safety-link { color: var(--brand-primary); text-decoration: none; font-size: 12px; font-weight: 600; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            z-index: 1000;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item:active i, .nav-item:active span { color: var(--brand-primary); }
        footer { background: var(--bg-primary); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 15px; }