:root {
            --bg-main: #0A0B0C;
            --bg-surface: #16181A;
            --bg-overlay: #1E2124;
            --bg-elevated: #2A2D31;
            --primary-gold: #FFD700;
            --primary-gold-hover: #FFC107;
            --secondary-crimson: #DC3545;
            --accent-emerald: #00C853;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --border-subtle: #2F3336;
            --border-active: #FFD700;
            --font-primary: 'Hind Siliguri', 'SolaimanLipi', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            font-size: 16px;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; height: auto; }

        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            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: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background: var(--primary-gold); color: #000; }

        .hero { position: relative; width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(180deg, #1e2124 0%, #0a0b0c 100%);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 12px;
            border: 1px solid var(--primary-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-size: 18px; color: var(--primary-gold); margin-bottom: 8px; }
        .jackpot-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-gold);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            letter-spacing: 2px;
        }

        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-size: 22px; margin-bottom: 12px; color: var(--primary-gold); }
        .intro-section p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .section-title { padding: 0 20px; margin-top: 25px; margin-bottom: 15px; font-size: 18px; border-left: 4px solid var(--primary-gold); margin-left: 10px; }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; }

        .article-list { padding: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 10px;
            margin-bottom: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; flex-shrink: 0; }
        .article-info { padding: 10px; }
        .article-info h3 { font-size: 15px; margin-bottom: 5px; color: var(--primary-gold); }
        .article-info p { font-size: 12px; color: var(--text-secondary); height: 3.2em; overflow: hidden; }

        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px;
            background: var(--bg-surface);
            margin: 20px 0;
        }
        .payment-item { text-align: center; font-size: 20px; color: var(--text-secondary); }
        .payment-item span { display: block; font-size: 10px; margin-top: 5px; }

        .lottery-box {
            height: 200px;
            overflow: hidden;
            background: var(--bg-surface);
            margin: 15px;
            border-radius: 10px;
            padding: 10px;
            border: 1px solid var(--border-subtle);
        }
        .lottery-scroll { animation: scrollUp 40s linear infinite; }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .lottery-name { color: var(--accent-emerald); }
        .lottery-amount { color: var(--primary-gold); font-weight: 600; }

        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }

        .providers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 15px;
        }
        .provider-block {
            background: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .reviews-section { padding: 15px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-subtle);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-stars { color: var(--primary-gold); 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); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; cursor: pointer; color: var(--primary-gold); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }

        .security-section {
            padding: 20px;
            text-align: center;
            background: var(--bg-overlay);
            margin-top: 20px;
        }
        .security-icons { font-size: 30px; display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-text { font-size: 12px; color: var(--text-muted); }

        .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-subtle);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; flex: 1; }
        .nav-item i { font-size: 18px; margin-bottom: 4px; display: block; }
        .nav-item.active { color: var(--primary-gold); }

        footer { background: var(--bg-main); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }