:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #161A1E;
            --bg-surface: #1E2329;
            --brand-primary: #FCD535;
            --brand-secondary: #00C853;
            --brand-accent: #FFAC00;
            --brand-premium: #D4AF37;
            --text-primary: #EAECEF;
            --text-secondary: #929AA5;
            --border-light: #2B3139;
            --border-active: #FCD535;
        }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.5;
        }
        header {
            background-color: var(--bg-secondary);
            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-light);
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: 400;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login {
            background-color: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-light);
        }
        .btn-register {
            background-color: var(--brand-primary);
            color: var(--bg-primary);
        }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            display: block;
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-surface), #2c2c2c);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-premium);
        }
        .jackpot-title {
            color: var(--brand-premium);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-primary);
        }
        .intro-section {
            padding: 20px;
        }
        .intro-section h1 {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 15px;
        }
        .section-title {
            font-size: 20px;
            padding: 0 20px;
            margin-top: 25px;
            border-left: 4px solid var(--brand-primary);
            margin-left: 20px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 20px;
        }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border-light);
            transition: transform 0.2s;
        }
        .game-card:active {
            transform: scale(0.98);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }
        .game-card h3 {
            font-size: 14px;
            padding: 10px;
            text-align: center;
            margin: 0;
        }
        .article-list {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .article-card {
            display: flex;
            background-color: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border-light);
        }
        .article-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }
        .article-info {
            padding: 10px;
            flex: 1;
        }
        .article-info h3 {
            font-size: 15px;
            margin: 0 0 5px 0;
            color: var(--brand-primary);
        }
        .article-info p {
            font-size: 12px;
            color: var(--text-secondary);
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .payment-section {
            background-color: var(--bg-surface);
            margin: 20px;
            padding: 20px;
            border-radius: 12px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--text-secondary);
            margin-bottom: 5px;
        }
        .payment-item span {
            display: block;
            font-size: 10px;
            color: var(--text-secondary);
        }
        .lottery-container {
            height: 300px;
            overflow: hidden;
            background-color: var(--bg-secondary);
            margin: 20px;
            border-radius: 12px;
            padding: 10px;
            border: 1px solid var(--border-light);
        }
        .lottery-track {
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            border-bottom: 1px solid var(--border-light);
            font-size: 13px;
        }
        .lottery-user { color: var(--brand-primary); }
        .lottery-win { color: var(--brand-secondary); font-weight: 700; }
        .provider-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 20px;
        }
        .provider-block {
            background-color: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--text-secondary);
            border: 1px solid var(--border-light);
        }
        .review-section {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .review-card {
            background-color: 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: 20px;
            color: var(--brand-primary);
        }
        .review-stars {
            color: var(--brand-accent);
            font-size: 12px;
        }
        .faq-section {
            padding: 20px;
        }
        .faq-item {
            margin-bottom: 15px;
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
        }
        .faq-item h3 {
            font-size: 16px;
            color: var(--brand-primary);
            margin-bottom: 10px;
        }
        .faq-item p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .security-section {
            margin: 20px;
            padding: 20px;
            background-color: #161a1e;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2b3139;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: var(--brand-secondary);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-light);
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
        }
        .nav-item i {
            font-size: 18px;
            margin-bottom: 4px;
        }
        .nav-item.active {
            color: var(--brand-primary);
        }
        footer {
            padding: 30px 20px 100px 20px;
            background-color: var(--bg-primary);
            border-top: 1px solid var(--border-light);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
        }
        .footer-copy {
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
        }