:root {
            --primary: #FFD700;
            --secondary: #00C853;
            --accent: #FF3D00;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0B0E11;
            --bg-surface: #151921;
            --bg-elevated: #1E232F;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --border-default: #2C3440;
            --font-main: 'Hind Siliguri', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background: var(--bg-surface);
            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-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .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: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        main { max-width: 600px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: var(--bg-elevated);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 10px; }
        .jackpot-amount {
            font-size: 2rem;
            font-weight: 700;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: monospace;
        }
        .intro-card { padding: 20px; background: var(--bg-surface); margin: 15px; border-radius: 12px; }
        .intro-card h1 { font-size: 1.5rem; color: var(--primary); margin-bottom: 10px; line-height: 1.25; }
        .intro-card p { color: var(--text-secondary); font-size: 0.875rem; }
        .section-title { padding: 10px 15px; font-size: 1.25rem; color: var(--primary); display: flex; align-items: center; gap: 8px; }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px 15px;
        }
        .game-card {
            background: var(--bg-elevated);
            border-radius: 10px;
            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; display: block; }
        .game-card h3 { padding: 8px; font-size: 0.875rem; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section {
            background: var(--bg-surface);
            padding: 20px 15px;
            margin: 15px 0;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i { font-size: 24px; color: var(--text-secondary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-muted); }
        .guidelines { padding: 15px; }
        .guide-item { margin-bottom: 20px; background: var(--bg-elevated); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 1.125rem; color: var(--secondary); margin-bottom: 8px; }
        .guide-item p { font-size: 0.875rem; color: var(--text-secondary); }
        .lottery-container {
            background: #000;
            margin: 15px;
            padding: 10px;
            border-radius: 8px;
            height: 150px;
            overflow: hidden;
            position: relative;
        }
        .lottery-list { animation: scrollList 20s linear infinite; }
        @keyframes scrollList {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 5px 0;
            border-bottom: 1px solid #111;
            font-size: 0.75rem;
        }
        .lottery-user { color: var(--primary); }
        .lottery-win { color: var(--secondary); font-weight: bold; }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-item {
            background: linear-gradient(45deg, #1e232f, #2c3440);
            padding: 12px;
            text-align: center;
            border-radius: 6px;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.875rem;
        }
        .review-grid { padding: 0 15px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-stars { color: #FBBC05; font-size: 12px; }
        .review-date { font-size: 10px; color: var(--text-muted); margin-top: 8px; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-default); padding-bottom: 15px; }
        .faq-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 0.875rem; color: var(--text-secondary); }
        .security-section {
            padding: 20px 15px;
            text-align: center;
            background: var(--bg-elevated);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: var(--secondary); }
        .age-limit {
            display: inline-block;
            border: 2px solid var(--accent);
            color: var(--accent);
            padding: 5px 10px;
            border-radius: 50%;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            height: 65px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-secondary);
            font-size: 12px;
        }
        .nav-item i { font-size: 20px; }
        footer {
            background: var(--bg-main);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--primary); font-size: 0.875rem; border: 1px solid var(--primary); padding: 5px 12px; border-radius: 20px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-links a { font-size: 0.8125rem; color: var(--text-secondary); }
        .copyright { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }