:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #151A21;
            --bg-tertiary: #1E232B;
            --bg-elevated: #2B3139;
            --brand-primary: #FCD535;
            --brand-secondary: #00C805;
            --brand-accent: #FF3B30;
            --brand-gold: linear-gradient(180deg, #FCD535 0%, #F0B90B 100%);
            --text-primary: #EAECEF;
            --text-secondary: #848E9C;
            --text-brand-contrast: #0B0E11;
            --border-default: #2B3139;
            --border-focus: #FCD535;
            --radius-md: 12px;
            --radius-lg: 16px;
        }
        * { 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;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        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; }
        .logo-img { width: 25px; height: 25px; border-radius: 4px; }
        .brand-name { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-gold); color: var(--text-brand-contrast); }
        .hero-banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius-lg);
            text-align: center;
            border: 1px solid var(--brand-primary);
        }
        .jackpot-title { font-family: 'Tiro Bangla', serif; color: var(--brand-primary); font-size: 1.25rem; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Inter', sans-serif;
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--text-primary);
            text-shadow: 0 0 10px rgba(252, 213, 53, 0.5);
        }
        .intro-section { padding: 20px 15px; }
        .intro-section h1 { font-size: 1.5rem; margin-bottom: 12px; color: var(--brand-primary); line-height: 1.3; }
        .intro-section p { color: var(--text-secondary); font-size: 1rem; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 1.25rem; color: var(--text-primary); 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-secondary);
            border-radius: var(--radius-md);
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.95); }
        .game-image { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 0.875rem; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: var(--radius-md);
            overflow: hidden;
            text-decoration: none;
            color: inherit;
        }
        .article-img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 0.95rem; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 0.8rem; color: var(--text-secondary); height: 40px; 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;
            text-align: center;
            font-size: 10px;
        }
        .payment-item i { font-size: 20px; display: block; margin-bottom: 5px; color: var(--brand-primary); }
        .lottery-box {
            background: var(--bg-secondary);
            margin: 15px;
            border-radius: var(--radius-lg);
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .lottery-track {
            display: flex;
            flex-direction: column;
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }
        .lottery-item {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .lottery-user { color: var(--brand-primary); font-weight: 600; }
        .lottery-win { color: var(--brand-secondary); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: var(--bg-elevated); padding: 20px; border-radius: 12px; text-align: center; font-weight: 600; color: var(--text-primary); }
        .review-list { padding: 15px; }
        .review-card {
            background: var(--bg-tertiary);
            padding: 15px;
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-avatar { color: var(--text-secondary); font-size: 24px; }
        .review-user { font-size: 14px; font-weight: 600; }
        .review-stars { color: var(--brand-primary); font-size: 12px; }
        .review-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-disabled); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; padding: 15px; margin-bottom: 10px; }
        .faq-question { font-weight: 600; color: var(--brand-primary); margin-bottom: 8px; display: flex; gap: 10px; }
        .faq-answer { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .security-section {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius-lg);
            text-align: center;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-secondary); }
        .security-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-links a { color: var(--brand-primary); text-decoration: none; font-size: 12px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item:nth-child(3) { color: var(--brand-primary); position: relative; top: -10px; background: var(--bg-primary); height: 60px; width: 60px; border-radius: 50%; padding-top: 10px; border: 2px solid var(--brand-primary); }
        footer { background: var(--bg-primary); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { color: var(--text-disabled); font-size: 12px; }