:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #151921;
            --bg-tertiary: #1F2630;
            --brand-primary: #FFD700;
            --brand-variant: #B8860B;
            --brand-secondary: #00C853;
            --brand-accent: #FF3D00;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --text-muted: #6C757D;
            --border-default: #2C343F;
            --border-focused: #FFD700;
            --radius-md: 12px;
            --radius-lg: 20px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header {
            background-color: 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-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background-color: var(--brand-primary); color: #000; }
        .main-container { padding-bottom: 80px; }
        .hero-banner { width: 100%; display: block; aspect-ratio: 2 / 1; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, var(--bg-tertiary), var(--bg-secondary));
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius-md);
            text-align: center;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--text-primary); font-variant-numeric: tabular-nums; }
        .intro-section { padding: 20px 15px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-section p { font-size: 16px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin: 20px 0 15px; 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: 0 15px; }
        .game-card {
            background-color: var(--bg-secondary);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: 0.3s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card-info { padding: 10px; text-align: center; }
        .game-card h3 { font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-item {
            display: flex;
            background-color: var(--bg-secondary);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-default);
            gap: 12px;
        }
        .article-item img { width: 100px; height: 100px; object-fit: cover; flex-shrink: 0; }
        .article-content { padding: 10px 10px 10px 0; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 5px; line-height: 1.3; }
        .article-content p { font-size: 13px; color: var(--text-secondary); height: 38px; overflow: hidden; }
        .payment-section { padding: 20px 15px; background: var(--bg-tertiary); margin-top: 30px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: var(--text-secondary); }
        .payment-item span { font-size: 11px; color: var(--text-muted); }
        .lottery-container {
            margin: 20px 15px;
            background-color: var(--bg-secondary);
            border-radius: var(--radius-md);
            height: 200px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            position: relative;
        }
        .lottery-scroll { position: absolute; width: 100%; animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -800px; } }
        .lottery-item {
            padding: 12px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .lottery-user { color: var(--brand-secondary); font-weight: 600; }
        .lottery-amount { color: var(--brand-primary); font-weight: 700; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-block {
            background-color: var(--bg-tertiary);
            padding: 15px;
            border-radius: var(--radius-md);
            text-align: center;
            font-weight: 600;
            border-bottom: 2px solid var(--brand-primary);
        }
        .review-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card {
            background-color: var(--bg-secondary);
            padding: 15px;
            border-radius: var(--radius-md);
            border-left: 4px solid var(--brand-primary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; font-style: italic; }
        .review-footer { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { background-color: var(--bg-secondary); border-radius: var(--radius-md); padding: 15px; margin-bottom: 10px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .safety-section { padding: 25px 15px; text-align: center; border-top: 1px solid var(--border-default); margin-top: 30px; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; }
        .safety-icons i { color: var(--brand-secondary); }
        .safety-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background-color: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) {
            background-color: var(--brand-primary);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            margin-top: -30px;
            color: #000;
            justify-content: center;
            border: 4px solid var(--bg-primary);
        }
        footer { padding: 30px 15px 100px; background-color: var(--bg-primary); 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 { font-size: 14px; color: var(--text-secondary); transition: 0.2s; }
        .footer-links a:hover { color: var(--brand-primary); }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--border-subtle); color: var(--text-muted); font-size: 12px; }