:root {
            --bg-primary: #0A0B0C;
            --bg-secondary: #16181A;
            --bg-tertiary: #1F2225;
            --brand-primary: #FFD700;
            --brand-variant: #C5A000;
            --brand-secondary: #00E676;
            --brand-accent: #FF3D00;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-subtle: #2F3336;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3 { font-family: 'Noto Sans Bengali', sans-serif; font-weight: 700; }
        .display-font { font-family: 'Galada', cursive; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            background: var(--bg-secondary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-reg { background: var(--gold-gradient); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 15px;
            background: var(--bg-tertiary);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
        }
        .jackpot-title { font-size: 14px; color: var(--brand-primary); margin-bottom: 5px; text-transform: uppercase; }
        .jackpot-amount { font-size: 28px; font-weight: 700; color: var(--text-primary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-section { padding: 20px 15px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-section p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 15px; font-size: 20px; border-left: 4px solid var(--brand-primary); margin-left: 15px; margin-top: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-item { display: flex; gap: 12px; background: var(--bg-tertiary); padding: 10px; border-radius: 10px; }
        .article-item img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; }
        .article-content { flex: 1; }
        .article-content h3 { font-size: 14px; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 12px; color: var(--text-secondary); height: 36px; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item {
            background: var(--bg-tertiary);
            padding: 15px 5px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-subtle);
        }
        .payment-item i { font-size: 20px; color: var(--brand-primary); }
        .payment-item span { font-size: 10px; color: var(--text-secondary); text-align: center; }
        .lottery-box {
            margin: 15px;
            background: var(--bg-secondary);
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            position: relative;
        }
        .lottery-track { position: absolute; width: 100%; animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -800px; } }
        .lottery-item { padding: 10px 15px; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; }
        .lottery-user { font-size: 13px; color: var(--brand-secondary); }
        .lottery-win { font-size: 13px; font-weight: bold; color: var(--brand-primary); }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: var(--bg-tertiary); padding: 20px; border-radius: 10px; text-align: center; font-weight: bold; border: 1px solid var(--border-subtle); color: var(--brand-primary); }
        .review-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; border-left: 3px solid var(--brand-primary); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 8px; }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-body { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 12px; background: var(--bg-tertiary); border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--brand-primary); cursor: pointer; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .safety-section { padding: 20px 15px; text-align: center; background: var(--bg-tertiary); margin: 20px 0; }
        .safety-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%;
            height: 60px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 12px; }
        footer { padding: 20px 15px 80px; background: #000; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 12px; color: var(--text-secondary); }
        .copy-text { font-size: 11px; color: var(--text-disabled); border-top: 1px solid var(--border-subtle); padding-top: 15px; }