:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #B22222;
            --accent: #00C853;
            --bg-main: #0A0B0D;
            --bg-surface: #161A1E;
            --bg-elevated: #20262D;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --border-default: #2B3139;
            --border-active: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            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-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: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }
        .btn-register:hover { background: var(--primary-hover); }
        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(135deg, #20262D 0%, #161A1E 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #FFFFFF; font-family: 'Inter', sans-serif; letter-spacing: 2px; }
        .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: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-title { font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; 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: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .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: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-license {
            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; font-size: 10px; color: var(--text-muted); }
        .payment-item i { font-size: 20px; color: var(--text-secondary); display: block; margin-bottom: 5px; }
        .guides-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-card { background: var(--bg-elevated); padding: 15px; border-radius: 10px; }
        .guide-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }
        .lottery-box {
            background: var(--bg-surface);
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            position: relative;
            margin-bottom: 20px;
            border: 1px solid var(--border-default);
        }
        .lottery-track { animation: scrollLottery 20s linear infinite; }
        @keyframes scrollLottery {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .lottery-user { color: var(--primary); }
        .lottery-amount { color: var(--accent); font-weight: bold; }
        .providers-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);
            border: 1px solid var(--border-default);
        }
        .reviews-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-info h4 { font-size: 15px; }
        .stars { color: #F0B90B; 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-container { margin-bottom: 20px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; color: var(--primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 20px;
        }
        .security-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-badges i { font-size: 24px; color: var(--accent); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-muted); }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer {
            background: var(--bg-surface);
            padding: 30px 15px 80px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
            text-align: left;
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
        .copyright { font-size: 12px; color: var(--text-muted); line-height: 1.6; }