:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #E91E63;
            --accent: #00FF41;
            --bg-default: #0A0B0C;
            --bg-paper: #16181A;
            --bg-surface: #1F2225;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-subtle: #2C2F33;
            --win-color: #00FF41;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-paper);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 20px;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(145deg, #1f2225, #000);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { font-size: 18px; color: var(--primary); margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--win-color); font-family: sans-serif; }
        .intro-card {
            background-color: var(--bg-paper);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border: 1px solid var(--border-subtle);
        }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { font-size: 18px; margin: 20px 0 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.2s;
            border: 1px solid var(--border-subtle);
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background-color: var(--bg-paper);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 11px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary); }
        .guidelines { display: grid; gap: 15px; margin-bottom: 20px; }
        .guide-item { background-color: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-item h3 { color: var(--primary); font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .lottery-box {
            background-color: var(--bg-paper);
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            position: relative;
            margin-bottom: 20px;
            border: 1px solid var(--border-subtle);
        }
        .marquee-list { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        .marquee-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .marquee-user { color: var(--primary); }
        .marquee-win { color: var(--win-color); font-weight: bold; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -500px; } }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-tag {
            background: linear-gradient(90deg, var(--bg-surface), var(--bg-paper));
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--primary);
            border: 1px solid var(--border-subtle);
        }
        .reviews { display: grid; gap: 15px; margin-bottom: 20px; }
        .review-card { background-color: var(--bg-surface); padding: 15px; border-radius: 10px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: #FFC107; font-size: 12px; }
        .faq-section { background-color: var(--bg-paper); border-radius: 12px; padding: 15px; margin-bottom: 20px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-subtle); padding-bottom: 10px; }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .safety-section {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px dashed var(--primary);
        }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: var(--bg-paper);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 2px; }
        footer { background-color: #000; padding: 30px 15px 80px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .footer-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-contact a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-secondary); border-top: 1px solid var(--border-subtle); pt: 15px; }