:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #008751;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1C1F26;
            --bg-elevated: #2A2E38;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #2D323E;
        }
        * { 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.6;
            padding-bottom: 70px;
        }
        header {
            background-color: 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: 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: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-decoration: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }
        main { max-width: 600px; 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, #1c1f26, #2a2e38);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }
        .jackpot-title { color: var(--primary); font-size: 20px; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--primary); font-family: 'Roboto', sans-serif; }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        h2 { font-size: 22px; margin: 25px 0 15px; color: var(--primary); display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; 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: 20px; }
        .payment-item {
            background: var(--bg-surface);
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            font-size: 10px;
            color: var(--text-secondary);
        }
        .payment-item i { font-size: 20px; color: var(--primary); display: block; margin-bottom: 5px; }
        .guide-section { margin-bottom: 20px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 10px; }
        .guide-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 18px; }
        .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: marquee 30s linear infinite; }
        @keyframes marquee { 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-item span { color: var(--primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-item { background: var(--bg-elevated); padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; color: var(--primary); border: 1px solid var(--border-default); }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .stars { color: var(--primary); font-size: 12px; }
        .faq-section { margin-bottom: 20px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; padding: 15px; margin-bottom: 10px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .security-section { background: var(--bg-surface); padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 20px; border: 1px solid var(--secondary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 12px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        footer { background: var(--bg-surface); padding: 30px 15px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-contact { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 25px; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }