:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #E31C25;
            --accent: #00FF7F;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --border-default: #2B3139;
            --font-bengali: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            --font-latin: 'Inter', 'Roboto', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-bengali);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            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(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: #000; }
        main { max-width: 1000px; margin: 0 auto; padding: 0 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            margin: 15px 0;
            cursor: pointer;
            border-radius: 12px;
            overflow: hidden;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(145deg, #1e2329, #0b0e11);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin: 20px 0;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--accent); font-family: var(--font-latin); }
        .intro-card {
            background-color: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { font-size: 20px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:active { transform: scale(0.98); }
        .game-img-wrapper { aspect-ratio: 1/1; width: 100%; overflow: hidden; background-color: var(--bg-elevated); }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
        .payment-item {
            background-color: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
        }
        .payment-item i { font-size: 20px; display: block; margin-bottom: 5px; color: var(--primary); }
        .guide-section { margin: 20px 0; }
        .guide-card { background-color: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-bottom: 2px solid var(--bg-elevated); }
        .guide-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 18px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }
        .lottery-box {
            background-color: var(--bg-surface);
            height: 200px;
            overflow: hidden;
            border-radius: 12px;
            margin: 20px 0;
            border: 1px solid var(--border-default);
        }
        .lottery-scroll { animation: scrollList 30s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .lottery-user { color: var(--primary); }
        .lottery-amount { color: var(--accent); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .provider-item {
            background-color: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--primary);
            text-transform: uppercase;
            border: 1px solid var(--border-default);
        }
        .reviews-section { display: flex; flex-direction: column; gap: 15px; margin: 20px 0; }
        .review-card { background-color: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 4px solid var(--accent); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-name { font-weight: bold; color: var(--text-primary); }
        .stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); }
        .review-date { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
        .faq-section { margin: 20px 0; }
        .faq-item { background-color: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-box {
            background-color: var(--bg-elevated);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin: 20px 0;
            border: 1px dashed var(--text-muted);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }
        footer {
            background-color: var(--bg-surface);
            padding: 30px 15px 80px;
            border-top: 1px solid var(--border-default);
        }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--text-primary); text-decoration: none; font-size: 14px; background: var(--bg-elevated); padding: 8px 15px; border-radius: 20px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
            text-align: center;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }