@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Montserrat:wght@400;700&family=Noto+Sans+Bengali:wght@400;700&display=swap');
        :root {
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --primary-gold: #FFD700;
            --primary-dark: #B8860B;
            --accent-royal: #C0C0C0;
            --grad-gold: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-brand: #FFD700;
            --success: #28A745;
            --win-highlight: #00FF41;
            --border-default: #333333;
            --interactive: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        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; }
        .logo { width: 25px; height: 25px; object-fit: contain; }
        .platform-name { font-size: 16px; font-weight: normal; color: var(--text-brand); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            text-decoration: none;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--grad-gold); color: var(--bg-main); }
        .hero-banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-elevated);
            margin: 15px;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-dark);
        }
        .jackpot-label { color: var(--primary-gold); font-weight: bold; margin-bottom: 5px; font-size: 14px; }
        .jackpot-value {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--win-highlight);
            text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
        }
        .intro-section { padding: 20px 15px; }
        .intro-section h1 { font-size: 28px; color: var(--primary-gold); margin-bottom: 15px; line-height: 1.2; }
        .intro-section p { font-size: 16px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 20px; color: var(--primary-gold); display: flex; align-items: center; gap: 8px; }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            text-decoration: none;
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 14px; color: var(--text-primary); text-align: center; }
        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
        .article-item {
            background: var(--bg-surface);
            border-radius: 12px;
            display: flex;
            gap: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
        }
        .article-item img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 10px; flex: 1; }
        .article-info h3 { font-size: 14px; color: var(--primary-gold); margin-bottom: 5px; }
        .article-info p { font-size: 12px; color: var(--text-muted); height: 40px; overflow: hidden; }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background: var(--bg-surface);
            margin: 20px 15px;
            border-radius: 12px;
        }
        .payment-item { text-align: center; color: var(--text-muted); font-size: 10px; }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; display: block; }
        .lottery-ticker {
            background: var(--bg-surface);
            margin: 20px 15px;
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .ticker-track { animation: slideUp 20s linear infinite; }
        .ticker-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .ticker-item .user { color: var(--text-secondary); font-size: 14px; }
        .ticker-item .win { color: var(--win-highlight); font-weight: bold; }
        @keyframes slideUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: var(--accent-royal);
            border: 1px solid var(--border-default);
        }
        .reviews-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--primary-gold); }
        .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: 20px 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-gold); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .security-section {
            background: var(--bg-elevated);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--primary-gold); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-muted); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer { background: var(--bg-main); padding: 20px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-default); }