@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');
        :root {
            --brand-primary: #FFD700;
            --brand-variant: #C5A000;
            --brand-secondary: #00A86B;
            --brand-accent: #FF4500;
            --bg-default: #0F0F10;
            --bg-paper: #1C1C1E;
            --bg-elevation: #2C2C2E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --brand-contrast: #000000;
            --semantic-success: #00E676;
            --semantic-error: #FF5252;
            --semantic-warning: #FFD600;
            --semantic-info: #2979FF;
            --border-subtle: #3A3A3C;
            --border-strong: #48484A;
            --border-active: #FFD700;
            --font-main: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            --font-sec: 'Inter', 'Roboto', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-paper);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .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: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .btn-login { background: transparent; border: 1px solid var(--brand-primary); color: var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: var(--brand-contrast); }
        main { max-width: 600px; margin: 0 auto; padding: 10px; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
            display: block;
        }
        .jackpot-box {
            background: linear-gradient(145deg, var(--bg-paper), var(--bg-elevation));
            border: 2px solid var(--brand-primary);
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-size: 14px; color: var(--brand-primary); text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-family: var(--font-sec); font-size: 32px; font-weight: 700; color: #fff; margin-top: 5px; }
        .intro-card {
            background-color: var(--bg-paper);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid var(--border-subtle);
        }
        .intro-card h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 16px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-size: 20px; margin: 25px 0 15px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card {
            background-color: var(--bg-paper);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; color: var(--text-primary); text-align: center; }
        .payment-license-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-paper);
            padding: 15px;
            border-radius: 12px;
        }
        .pl-item { text-align: center; color: var(--text-secondary); }
        .pl-item i { font-size: 20px; color: var(--brand-primary); display: block; margin-bottom: 5px; }
        .pl-item span { font-size: 10px; }
        .guides-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
        .guide-card { background: var(--bg-paper); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .guide-card h3 { color: var(--brand-primary); margin-bottom: 8px; font-size: 18px; }
        .lottery-container {
            background: var(--bg-elevation);
            border-radius: 12px;
            padding: 15px;
            margin: 20px 0;
            max-height: 300px;
            overflow: hidden;
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .lottery-item:last-child { border-bottom: none; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .provider-item {
            background: var(--bg-paper);
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--brand-primary);
            border: 1px solid var(--border-subtle);
        }
        .reviews-container { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .review-card {
            background: var(--bg-paper);
            padding: 15px;
            border-radius: 12px;
            border-left: 4px solid var(--brand-secondary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: var(--semantic-warning); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .faq-section { margin-top: 30px; }
        .faq-item { background: var(--bg-paper); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: linear-gradient(to right, #1a1a1c, #2c2c2e);
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            text-align: center;
        }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-icons i { font-size: 24px; color: var(--semantic-success); }
        .security-text { font-size: 13px; color: var(--text-secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-paper);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer {
            background: #000;
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-primary); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); line-height: 1.6; }