:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #1E2329;
            --bg-tertiary: #2B3139;
            --brand-primary: #FCD535;
            --brand-variant: #EAB308;
            --brand-secondary: #00C076;
            --brand-accent: #FF3B30;
            --gold-gradient: linear-gradient(180deg, #FCD535 0%, #D4AF37 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #EAECEF;
            --text-muted: #848E9C;
            --border-default: #474D57;
            --border-subtle: #2B3139;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Noto Sans Bengali', sans-serif;
            --font-display: 'Galada', cursive;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: var(--bg-secondary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--gold-gradient); color: var(--bg-primary); }

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

        .jackpot-container {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 15px rgba(252, 213, 53, 0.2);
        }
        .jackpot-label { color: var(--brand-primary); font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
        .jackpot-value { font-size: 32px; font-weight: 700; color: var(--brand-primary); font-family: monospace; letter-spacing: 2px; }

        .platform-intro { padding: 20px 16px; }
        .platform-intro h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.3; }
        .platform-intro p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .section-title { font-size: 20px; font-weight: 700; margin: 20px 16px 15px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }

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

        .article-list { padding: 0 16px; display: flex; flex-direction: column; gap: 15px; }
        .article-item { display: flex; gap: 12px; background: var(--bg-secondary); padding: 10px; border-radius: 8px; align-items: center; }
        .article-img { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
        .article-content h3 { font-size: 14px; color: var(--brand-primary); margin-bottom: 5px; line-height: 1.3; }
        .article-content p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 16px; background: var(--bg-secondary); margin: 20px 0; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--brand-primary); }
        .payment-item span { font-size: 10px; color: var(--text-muted); }

        .lottery-scroll { height: 200px; overflow: hidden; background: var(--bg-secondary); margin: 16px; border-radius: 8px; padding: 10px; border: 1px solid var(--border-subtle); }
        .lottery-list { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 8px 0; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; font-size: 12px; }
        .lottery-user { color: var(--brand-primary); }
        .lottery-amount { color: var(--brand-secondary); font-weight: 700; }

        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 16px; }
        .provider-card { background: var(--bg-tertiary); padding: 15px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); }
        .provider-card i { font-size: 30px; margin-bottom: 8px; color: var(--brand-primary); }
        .provider-card span { display: block; font-size: 14px; font-weight: 600; }

        .review-list { padding: 0 16px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-tertiary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--brand-primary); }
        .review-info h4 { font-size: 14px; }
        .review-stars { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); }

        .faq-section { padding: 0 16px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: var(--brand-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

        .safety-section { padding: 20px 16px; background: var(--bg-secondary); margin-top: 20px; text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-primary); }
        .safety-text { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
        .safety-links { margin-top: 10px; font-size: 12px; color: var(--brand-primary); }

        footer { background: var(--bg-primary); padding: 30px 16px 20px; border-top: 1px solid var(--border-subtle); }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-grid a { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
        .footer-grid a:hover { color: var(--brand-primary); }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-divider); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            height: 60px;
            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-muted); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--brand-primary); }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
        }