:root {
            --bg-primary: #0A0A0A;
            --bg-secondary: #141414;
            --bg-surface: #1F1F1F;
            --brand-primary: #FFD700;
            --brand-secondary: #B8860B;
            --brand-accent: #FF4500;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --win-color: #00FF7F;
            --border-subtle: #2C2C2C;
            --border-interactive: #FFD700;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            font-family: 'Hind Siliguri', sans-serif;
            font-weight: 700;
            color: var(--brand-primary);
        }
        header {
            background: 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-subtle);
        }
        .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;
            color: var(--text-primary);
        }
        .header-right {
            display: flex;
            gap: 8px;
        }
        .btn {
            padding: 6px 14px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login {
            background: transparent;
            color: var(--brand-primary);
            border: 1px solid var(--brand-primary);
        }
        .btn-register {
            background: var(--gold-gradient);
            color: #000;
        }
        .hero {
            width: 100%;
            cursor: pointer;
        }
        .hero img {
            width: 100%;
            aspect-ratio: 2 / 1;
            display: block;
            object-fit: cover;
        }
        .jackpot-container {
            background: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--brand-secondary);
        }
        .jackpot-label {
            font-size: 14px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .jackpot-amount {
            font-size: 28px;
            font-weight: 700;
            color: var(--win-color);
            margin-top: 5px;
            font-family: 'monospace';
        }
        .platform-intro {
            padding: 20px;
            text-align: center;
        }
        .platform-intro h1 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        .section-title {
            padding: 20px 15px 10px;
            font-size: 20px;
            border-left: 4px solid var(--brand-primary);
            margin-left: 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-subtle);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 8px;
            font-size: 14px;
            text-align: center;
            color: var(--text-secondary);
        }
        .article-list {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .article-card {
            background: var(--bg-surface);
            border-radius: 10px;
            display: flex;
            gap: 10px;
            padding: 10px;
            text-decoration: none;
            color: inherit;
        }
        .article-card img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
        }
        .article-info h3 {
            font-size: 16px;
            margin-bottom: 5px;
        }
        .article-info p {
            font-size: 12px;
            color: var(--text-muted);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .payment-section {
            padding: 20px 15px;
            background: var(--bg-secondary);
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 5px;
        }
        .payment-item p {
            font-size: 10px;
            color: var(--text-muted);
        }
        .lottery-section {
            margin: 15px;
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 15px;
        }
        .lottery-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .winner-name { color: var(--brand-primary); }
        .winner-amount { color: var(--win-color); font-weight: bold; }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-item {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--text-secondary);
        }
        .review-section {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i { font-size: 20px; color: var(--text-muted); }
        .review-stars { color: #FFCC00; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; }
        .faq-section { padding: 15px; }
        .faq-item {
            margin-bottom: 15px;
            background: var(--bg-surface);
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--brand-primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .safety-section {
            padding: 20px 15px;
            text-align: center;
            background: var(--bg-secondary);
            border-top: 2px solid var(--brand-accent);
        }
        .safety-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 30px;
            color: var(--brand-primary);
        }
        .safety-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-muted);
            text-align: center;
            font-size: 11px;
        }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; }
        .nav-item.active { color: var(--brand-primary); }
        footer {
            padding: 20px 15px 100px;
            background: #000;
            text-align: center;
        }
        .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;
        }
        .footer-bottom {
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 15px;
        }
        @keyframes countUp {
            from { opacity: 0.8; }
            to { opacity: 1; transform: scale(1.02); }
        }
        .jackpot-amount {
            animation: countUp 1s infinite alternate;
        }