:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #1E1E1E;
            --accent: #FF4500;
            --bg-main: #0A0A0A;
            --bg-surface: #161616;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #707070;
            --success: #00C853;
            --error: #FF1744;
            --luck: #D4AF37;
            --border-strong: #333333;
            --font-main: 'Hind Siliguri', sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        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-strong);
        }
        .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: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--primary); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .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; }
        .jackpot-container {
            background: linear-gradient(180deg, #1A1A1A 0%, #000000 100%);
            border: 2px solid var(--luck);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title { color: var(--luck); font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 2.5rem; color: var(--primary); font-weight: 700; letter-spacing: 2px; }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 1.5rem; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            padding-left: 5px;
        }
        .section-title h2 { font-size: 1.25rem; color: var(--text-primary); }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 25px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-strong);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 8px;
            font-size: 0.9rem;
            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-bottom: 25px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 12px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 0.75rem;
        }
        .payment-item i { font-size: 1.5rem; color: var(--primary); margin-bottom: 5px; display: block; }
        .guide-grid { margin-bottom: 25px; }
        .guide-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
        }
        .guide-item h3 { color: var(--primary); margin-bottom: 8px; font-size: 1.1rem; }
        .guide-item p { font-size: 0.9rem; color: var(--text-secondary); }
        .lottery-wrapper {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 25px;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .lottery-scroll {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-strong);
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
        }
        .lottery-user { color: var(--primary); }
        .lottery-amount { color: var(--success); font-weight: 600; }
        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }
        .provider-item {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            color: var(--primary);
            font-weight: 600;
            border: 1px solid var(--border-strong);
        }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-strong);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .review-stars { color: #FFEA00; font-size: 0.8rem; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 0.9rem; color: var(--text-secondary); }
        .security-box {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px dashed var(--muted);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 1.5rem; color: var(--success); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-strong);
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            text-align: center;
            font-size: 0.75rem;
        }
        .nav-item i { font-size: 1.25rem; display: block; margin-bottom: 4px; }
        .nav-item:nth-child(3) {
            background: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #000;
            margin-top: -20px;
            box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
        }
        footer {
            background: var(--bg-surface);
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-strong);
        }
        .footer-contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.8rem; }
        .footer-copy { font-size: 0.8rem; color: var(--text-muted); border-top: 1px solid var(--border-strong); padding-top: 15px; }