:root {
            --bg-primary: #0F0F0F;
            --bg-secondary: #1A1D23;
            --bg-accent: #242830;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --brand-gold: #FFD700;
            --brand-gold-hover: #FFC400;
            --brand-emerald: #00C853;
            --brand-crimson: #D50000;
            --grad-gold: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
            --grad-dark: linear-gradient(180deg, #1A1D23 0%, #0F0F0F 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --text-contrast: #000000;
            --border-default: #2F3336;
            --border-active: #FFD700;
            --border-subtle: rgba(255, 255, 255, 0.1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background: var(--bg-secondary);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: normal; color: var(--brand-gold); }
        header .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 18px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            border: none;
            font-family: 'Hind Siliguri', sans-serif;
        }
        .btn-login { background: transparent; color: var(--brand-gold); border: 1px solid var(--brand-gold); }
        .btn-login:hover { background: var(--brand-gold); color: var(--text-contrast); }
        .btn-reg { background: var(--grad-gold); color: var(--text-contrast); }
        .btn-reg:hover { opacity: 0.9; transform: translateY(-1px); }
        
        main { padding-bottom: 80px; max-width: 1200px; margin: 0 auto; }
        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            cursor: pointer; 
            overflow: hidden;
            display: block;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: var(--bg-accent);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-active);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 10px; }
        .jackpot-amount { 
            font-size: 2.5rem; 
            font-weight: 700; 
            color: var(--brand-gold); 
            font-family: 'Inter', sans-serif;
        }

        .intro-card {
            background: var(--grad-dark);
            margin: 20px 15px;
            padding: 30px 20px;
            border-radius: 20px;
            border: 1px solid var(--border-default);
            text-align: center;
        }
        .intro-card h1 { 
            font-size: 1.8rem; 
            color: var(--brand-gold); 
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .intro-card p { color: var(--text-secondary); font-size: 1rem; }

        .section-title { 
            text-align: center; 
            margin: 40px 0 20px; 
            font-size: 1.5rem; 
            color: var(--brand-gold);
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--brand-gold);
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 15px;
            overflow: hidden;
            text-decoration: none;
            transition: 0.3s;
            border: 1px solid var(--border-default);
        }
        .game-card:hover { transform: scale(1.03); border-color: var(--brand-gold); }
        .game-card img { 
            width: 100%; 
            aspect-ratio: 1/1; 
            object-fit: cover;
            display: block;
        }
        .game-card h3 { 
            padding: 12px; 
            font-size: 0.95rem; 
            text-align: center; 
            color: var(--text-primary); 
            font-weight: 500;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 0 15px;
            margin: 30px 0;
        }
        .payment-item {
            background: var(--bg-accent);
            padding: 15px 5px;
            border-radius: 10px;
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i { font-size: 1.5rem; color: var(--brand-gold); }

        .guide-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 0 15px;
        }
        .guide-card {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid var(--brand-gold);
        }
        .guide-card h3 { color: var(--brand-gold); margin-bottom: 10px; font-size: 1.1rem; }
        .guide-card p { color: var(--text-secondary); font-size: 0.9rem; }

        .lottery-table {
            margin: 20px 15px;
            background: var(--bg-secondary);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .lottery-row {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr 1fr;
            padding: 12px;
            border-bottom: 1px solid var(--border-default);
            font-size: 0.85rem;
            text-align: center;
            align-items: center;
        }
        .lottery-header { background: var(--bg-accent); font-weight: 700; color: var(--brand-gold); }
        .win-amount { color: var(--brand-emerald); font-weight: 700; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0 15px;
        }
        .provider-box {
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
            background: var(--bg-accent);
            border: 1px solid var(--border-subtle);
            color: var(--brand-gold);
        }

        .comment-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 0 15px;
        }
        .comment-card {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 2rem; color: var(--text-secondary); }
        .comment-header .user-info { display: flex; flex-direction: column; }
        .comment-header .user-name { font-weight: 600; color: var(--text-primary); }
        .comment-header .user-rating { color: var(--brand-gold); font-size: 0.8rem; }
        .comment-body { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 10px; }
        .comment-date { font-size: 0.75rem; color: var(--text-muted); text-align: right; }

        .faq-section { padding: 0 15px; margin: 30px 0; }
        .faq-item {
            background: var(--bg-secondary);
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-default);
        }
        .faq-question {
            padding: 15px;
            cursor: pointer;
            font-weight: 600;
            color: var(--brand-gold);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

        .security-section {
            margin: 30px 15px;
            padding: 20px;
            background: var(--bg-accent);
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--border-default);
        }
        .security-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .badge { color: var(--brand-emerald); font-weight: 600; font-size: 0.8rem; display: flex; align-items: center; gap: 5px; }
        .security-text { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 10px; }
        .security-link { color: var(--brand-gold); text-decoration: none; font-weight: 600; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.7rem;
            gap: 5px;
        }
        .nav-item i { font-size: 1.2rem; }
        .nav-item:hover { color: var(--brand-gold); }

        footer {
            background: var(--bg-secondary);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .footer-contact a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            padding: 8px 15px;
            background: var(--bg-accent);
            border-radius: 20px;
            transition: 0.3s;
        }
        .footer-contact a:hover { color: var(--brand-gold); background: var(--border-default); }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            text-align: left;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.8rem;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--brand-gold); }
        .copyright { color: var(--text-muted); font-size: 0.75rem; margin-top: 20px; line-height: 1.6; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .guide-grid { grid-template-columns: repeat(2, 1fr); }
            .provider-wall { grid-template-columns: repeat(4, 1fr); }
            .comment-grid { grid-template-columns: repeat(2, 1fr); }
        }