:root {
            --bg-primary: #0F172A;
            --bg-secondary: #1E293B;
            --bg-tertiary: #020617;
            --brand-primary: #FFD700;
            --brand-secondary: #C5A000;
            --brand-accent: #FF4500;
            --success: #10B981;
            --error: #EF4444;
            --warning: #F59E0B;
            --info: #3B82F6;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --text-on-brand: #0F172A;
            --border-primary: #334155;
            --border-secondary: #1E293B;
            --border-highlight: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-tertiary);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--border-primary);
        }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-img { width: 25px; height: 25px; }
        .brand-name { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            border: none;
            transition: 0.3s;
            font-family: 'Inter', sans-serif;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: var(--text-on-brand); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }
        
        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid var(--border-primary);
            margin-bottom: 20px;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-tertiary), var(--bg-secondary));
            padding: 30px;
            text-align: center;
            border-radius: 15px;
            border: 2px solid var(--brand-primary);
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-size: 24px; color: var(--text-secondary); margin-bottom: 10px; }
        .jackpot-amount {
            font-size: 48px;
            font-weight: bold;
            color: var(--brand-primary);
            font-family: 'Inter', sans-serif;
            text-shadow: 0 0 10px var(--brand-accent);
        }

        .intro-section { text-align: center; margin-bottom: 40px; }
        .intro-section h1 { font-size: 32px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-section p { font-size: 18px; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }

        .section-title { font-size: 24px; text-align: center; margin-bottom: 25px; color: var(--brand-primary); position: relative; }
        .section-title::after { content: ''; display: block; width: 50px; height: 3px; background: var(--brand-accent); margin: 10px auto; }

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

        .article-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .article-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-primary);
            transition: 0.3s;
            text-decoration: none;
            color: inherit;
        }
        .article-card:hover { border-color: var(--brand-primary); }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { font-size: 18px; color: var(--brand-primary); margin-bottom: 10px; }
        .article-content p { font-size: 14px; color: var(--text-secondary); }

        .payment-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .payment-item {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
        }
        .payment-item i { font-size: 24px; color: var(--brand-primary); }

        .lottery-container {
            background: var(--bg-tertiary);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid var(--border-primary);
            height: 300px;
            overflow: hidden;
            position: relative;
            margin-bottom: 40px;
        }
        .lottery-track {
            display: flex;
            flex-direction: column;
            animation: scrollUp 20s linear infinite;
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            border-bottom: 1px solid var(--border-primary);
            font-size: 14px;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-card {
            background: var(--bg-secondary);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            font-weight: bold;
            border: 1px solid var(--border-primary);
            color: var(--brand-primary);
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .review-card {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-primary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-name { font-weight: bold; }
        .review-stars { color: var(--brand-primary); font-size: 14px; margin-bottom: 10px; }
        .review-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid var(--border-primary);
        }
        .faq-item h3 { font-size: 18px; color: var(--brand-primary); margin-bottom: 10px; }
        .faq-item p { font-size: 15px; color: var(--text-secondary); }

        .security-section {
            background: var(--bg-tertiary);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-primary);
            margin-bottom: 40px;
        }
        .security-section i { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .security-section p { margin-bottom: 10px; color: var(--text-secondary); }
        .security-link { color: var(--brand-primary); text-decoration: none; font-weight: bold; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-tertiary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--border-primary);
            z-index: 1000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 12px;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--brand-primary); }

        footer {
            background: var(--bg-tertiary);
            padding: 40px 20px 100px;
            border-top: 2px solid var(--border-primary);
            text-align: center;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--brand-primary); }
        .copyright { color: var(--text-muted); font-size: 14px; }

        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(3, 1fr); }
            .intro-section h1 { font-size: 24px; }
            .jackpot-amount { font-size: 32px; }
        }