:root {
            --brand-primary: #FFD700;
            --brand-secondary: #FF8C00;
            --brand-accent: #00C853;
            --brand-vibrant: #FF004D;
            --bg-default: #0B0E11;
            --bg-paper: #1E2329;
            --bg-surface: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-highlight: #FFD700;
            --border-default: #373D44;
            --font-main: 'Hind Siliguri', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-paper);
            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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-reg { background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); color: #000; }
        main { max-width: 600px; margin: 0 auto; padding: 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; margin-bottom: 15px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: radial-gradient(circle at center, #2b3139 0%, #1e2329 100%);
            border: 2px solid var(--brand-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(--brand-primary); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
        .jackpot-amount { font-size: 2rem; font-weight: 700; color: #fff; text-shadow: 0 0 10px var(--brand-primary); }
        .intro-card { background: var(--bg-paper); padding: 20px; border-radius: 15px; margin-bottom: 20px; border-left: 4px solid var(--brand-primary); }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 10px; color: var(--brand-primary); }
        .section-title { font-size: 1.25rem; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--brand-primary); display: inline-block; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--bg-paper); border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 0.9rem; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--bg-paper); padding: 15px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; font-size: 0.7rem; color: var(--text-secondary); }
        .payment-item i { font-size: 1.5rem; margin-bottom: 5px; color: var(--brand-primary); }
        .guide-section { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 20px; }
        .guide-item { margin-bottom: 15px; }
        .guide-item h3 { color: var(--brand-primary); margin-bottom: 5px; font-size: 1.1rem; }
        .lottery-container { background: #000; border-radius: 10px; padding: 10px; height: 150px; overflow: hidden; position: relative; border: 1px solid var(--border-default); }
        .lottery-scroll { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 8px; border-bottom: 1px solid #222; font-size: 0.85rem; display: flex; justify-content: space-between; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-item { background: var(--bg-paper); padding: 15px; text-align: center; border-radius: 8px; font-weight: 600; color: var(--brand-secondary); border: 1px solid var(--border-default); }
        .review-card { background: var(--bg-paper); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 2rem; color: var(--text-secondary); }
        .stars { color: var(--brand-primary); font-size: 0.8rem; }
        .faq-item { background: var(--bg-paper); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 0.9rem; }
        .security-box { background: var(--bg-paper); padding: 20px; border-radius: 12px; text-align: center; margin-top: 20px; border: 1px dashed var(--brand-accent); }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-top: 15px; font-size: 1.5rem; color: var(--brand-accent); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 0.75rem; }
        .nav-item i { font-size: 1.2rem; margin-bottom: 3px; }
        .nav-item:hover { color: var(--brand-primary); }
        footer { background: #07090b; padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-link { color: var(--text-secondary); font-size: 0.9rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: left; }
        .footer-grid a { color: var(--text-tertiary); font-size: 0.8rem; display: block; margin-bottom: 5px; }
        .copyright { font-size: 0.8rem; color: var(--text-tertiary); margin-top: 20px; }