:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #FF4D4D;
            --accent: #00FFA3;
            --bg-base: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --border-subtle: #333333;
            --border-default: #444444;
            --border-active: #FFD700;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Inter', sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .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: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        .btn-register:hover { background: var(--primary-hover); }

        main { max-width: 600px; margin: 0 auto; padding: 15px; }
        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            border-radius: var(--radius);
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-card {
            background: linear-gradient(135deg, #2c0000 0%, #1a1a1a 100%);
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--primary); font-family: 'Inter', sans-serif; }

        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: var(--radius);
            margin-bottom: 20px;
            border: 1px solid var(--border-subtle);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); }

        h2 { font-size: 20px; color: var(--primary); margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        h2::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-subtle);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.97); }
        .game-img-box { width: 100%; aspect-ratio: 1 / 1; background: var(--bg-elevated); }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-section {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: var(--radius);
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px;
        }
        .payment-item { text-align: center; color: var(--text-secondary); font-size: 12px; }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; display: block; }

        .guides-section { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .guide-box { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); border-left: 3px solid var(--secondary); }
        .guide-box h3 { font-size: 17px; margin-bottom: 8px; color: var(--text-primary); }
        .guide-box p { font-size: 14px; color: var(--text-secondary); }

        .lottery-container {
            background: var(--bg-surface);
            border-radius: var(--radius);
            height: 150px;
            overflow: hidden;
            position: relative;
            margin-bottom: 20px;
            border: 1px solid var(--border-subtle);
        }
        .lottery-track {
            display: flex;
            flex-direction: column;
            animation: scrollLottery 30s linear infinite;
        }
        @keyframes scrollLottery {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }
        .lottery-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
            display: flex;
            justify-content: space-between;
        }
        .lottery-item span:last-child { color: var(--accent); font-weight: 600; }

        .provider-wall {
            display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px;
        }
        .provider-item {
            background: var(--bg-elevated);
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--primary);
            border: 1px solid var(--border-subtle);
        }

        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: var(--radius);
            margin-bottom: 12px;
            border: 1px solid var(--border-subtle);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-avatar { width: 35px; height: 35px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .stars { color: #FFB400; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 5px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; display: block; }

        .security-section {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            margin-bottom: 20px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent); }
        .security-text { font-size: 13px; color: var(--text-muted); }

        .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-subtle);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: var(--text-secondary); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .contact-link { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }