:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #E91E63;
            --accent: #FFC107;
            --bg-default: #0B0E11;
            --bg-paper: #181A20;
            --bg-surface: #1E2329;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --text-highlight: #FFD700;
            --success: #0ECB81;
            --error: #F6465D;
            --warning: #F0B90B;
            --border-low: #2B3139;
            --border-high: #FFD700;
            --font-main: 'Inter', 'Hind Siliguri', -apple-system, 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.5;
            padding-bottom: 70px;
        }
        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-low);
        }
        .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(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-low); }
        .btn-register { background-color: var(--primary); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-surface) 0%, #2c2100 100%);
            border: 1px solid var(--border-high);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }
        .jackpot-title { color: var(--primary); font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
        .intro-card { background-color: var(--bg-paper); padding: 20px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        h2 { font-size: 18px; margin: 20px 0 15px; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
        h2::before { content: ''; display: block; width: 4px; height: 18px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; display: block; border: 1px solid var(--border-low); transition: transform 0.2s; }
        .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; font-weight: 500; }
        .payment-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--bg-paper); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-low); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }
        .guidelines { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--bg-paper); padding: 15px; border-radius: 12px; }
        .guide-item h3 { color: var(--primary); font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .lottery-marquee { background: var(--bg-paper); padding: 15px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-low); margin-bottom: 25px; }
        .marquee-content { height: 150px; overflow-y: hidden; position: relative; }
        .marquee-inner { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 8px 0; border-bottom: 1px solid var(--border-low); font-size: 12px; display: flex; justify-content: space-between; }
        .lottery-item .user { color: var(--primary); }
        .lottery-item .win { color: var(--success); font-weight: bold; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-btn { background: var(--bg-surface); padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; font-size: 14px; color: var(--primary); border: 1px solid var(--border-low); }
        .reviews { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-paper); padding: 15px; border-radius: 12px; border: 1px solid var(--border-low); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-name { font-weight: 600; font-size: 14px; flex-grow: 1; }
        .review-rating { color: #ffc107; font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
        .faq-item { background: var(--bg-paper); border-radius: 12px; padding: 15px; border: 1px solid var(--border-low); }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { background: var(--bg-surface); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: var(--bg-paper);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-low);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        footer {
            background: var(--bg-paper);
            padding: 30px 15px;
            border-top: 1px solid var(--border-low);
            text-align: center;
        }
        .footer-contacts { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .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-low); padding-top: 20px; }