:root {
            --primary: #D4AF37;
            --primary-light: #F5C469;
            --primary-dark: #AA8A2E;
            --accent: #FFD700;
            --bg-main: #0B0E11;
            --bg-surface: #181A20;
            --bg-elevated: #1E2329;
            --text-primary: #EAECEF;
            --text-secondary: #929AA5;
            --border-subtle: #2B2F36;
            --success: #0ECB81;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            line-height: 1.5;
            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-subtle);
        }
        .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(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--bg-main); }
        main { max-width: 800px; margin: 0 auto; padding: 15px; }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .jackpot-container {
            background: linear-gradient(135deg, #1e2329 0%, #111 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 18px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount {
            font-family: 'Orbitron', sans-serif;
            font-size: 30px;
            color: var(--accent);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 16px; color: var(--text-secondary); }
        h2 { font-size: 20px; color: var(--primary); margin: 25px 0 15px; border-bottom: 1px solid var(--border-subtle); padding-bottom: 5px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-subtle);
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; 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-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .payment-item { text-align: center; color: var(--text-secondary); font-size: 12px; }
        .payment-item i { font-size: 24px; color: var(--primary); display: block; margin-bottom: 5px; }
        .guidelines { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 8px; }
        .guide-item h3 { color: var(--primary-light); font-size: 18px; margin-bottom: 8px; }
        .guide-item p { color: var(--text-secondary); font-size: 14px; }
        .lottery-box {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 10px;
            height: 150px;
            overflow: hidden;
            position: relative;
            margin-bottom: 20px;
            border: 1px solid var(--border-subtle);
        }
        .lottery-content {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }
        .lottery-item {
            padding: 8px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .win-user { color: var(--primary); font-weight: 600; }
        .win-amount { color: var(--success); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-item {
            background: var(--bg-elevated);
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            color: var(--primary-light);
            font-weight: 600;
            border: 1px solid var(--border-subtle);
        }
        .review-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--primary); }
        .rating { color: #f0b90b; font-size: 12px; }
        .faq-section { margin-bottom: 20px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary-light); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px dashed var(--primary-dark);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 30px; color: var(--primary); margin-bottom: 15px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 12px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        footer { background: var(--bg-surface); padding: 30px 15px; border-top: 1px solid var(--border-subtle); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 20px; }
        .footer-contacts a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; margin-bottom: 20px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }