:root {
            --primary: #FFD700;
            --primary-hover: #FFC400;
            --secondary: #00C853;
            --secondary-hover: #00E676;
            --accent: #FF4500;
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-overlay: #1E1E20;
            --bg-elevated: #252528;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --border-default: #27272A;
            --border-active: #FFD700;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header {
            background: var(--bg-surface);
            padding: 10px 15px;
            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: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: var(--primary); color: #000; }
        .btn-reg:hover { background: var(--primary-hover); }
        main { padding: 10px; max-width: 800px; margin: 0 auto; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1e1e20, #252528);
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #fff; font-family: 'Inter', sans-serif; text-shadow: 0 0 15px rgba(255,215,0,0.5); }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: var(--radius);
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--primary); line-height: 1.3; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-size: 18px; margin: 25px 0 15px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--bg-surface); padding: 15px; border-radius: var(--radius); margin-bottom: 20px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--text-muted); }
        .payment-item i { font-size: 20px; color: var(--text-secondary); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-item { background: var(--bg-overlay); padding: 15px; border-radius: var(--radius); }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-container { background: var(--bg-surface); border-radius: var(--radius); overflow: hidden; height: 200px; margin-bottom: 20px; position: relative; }
        .lottery-track { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -100%; } }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; align-items: center; }
        .lottery-user { font-size: 14px; color: var(--text-primary); }
        .lottery-win { color: var(--secondary); font-weight: 600; }
        .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; font-weight: 600; color: var(--primary); font-size: 14px; border: 1px solid var(--border-default); }
        .reviews-scroll { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); border: 1px solid var(--border-default); }
        .review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-head i { font-size: 24px; color: var(--text-muted); }
        .review-info h4 { font-size: 14px; }
        .review-stars { color: #facc15; 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-bottom: 20px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; color: var(--primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); display: block; border-top: 1px solid var(--border-default); padding-top: 10px; }
        .security-section { background: var(--bg-surface); padding: 20px; border-radius: var(--radius); text-align: center; border-top: 3px solid var(--secondary); margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-icons i { font-size: 24px; color: var(--secondary); }
        .age-limit { display: inline-block; border: 2px solid var(--accent); color: var(--accent); padding: 4px 8px; border-radius: 50%; font-weight: 700; margin-bottom: 10px; }
        .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-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--primary); }
        footer {
            background: var(--bg-main);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { background: var(--bg-surface); padding: 8px 15px; border-radius: 20px; font-size: 13px; color: var(--text-secondary); border: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }