:root {
            --bg-primary: #0F172A;
            --bg-secondary: #1E293B;
            --bg-accent: #020617;
            --brand-primary: #FFD700;
            --brand-secondary: #C5A000;
            --brand-highlight: #FFC107;
            --success: #10B981;
            --error: #EF4444;
            --warning: #F59E0B;
            --info: #3B82F6;
            --text-primary: #F8FAFC;
            --text-secondary: #CBD5E1;
            --text-muted: #94A3B8;
            --text-inverse: #0F172A;
            --border-primary: #334155;
            --border-secondary: #475569;
            --border-highlight: #FFD700;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Noto Sans Bengali', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-secondary);
            border-bottom: 2px solid var(--brand-primary);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo-section { display: flex; align-items: center; gap: 10px; }
        .logo-section img { width: 25px; height: 25px; }
        .logo-section strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-family: var(--font-primary);
            font-weight: 600;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        main { padding-bottom: 80px; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
            text-align: center;
            padding: 30px 20px;
            border-bottom: 1px solid var(--border-primary);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 20px; margin-bottom: 10px; }
        .jackpot-amount {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 0 15px var(--brand-highlight);
            font-family: monospace;
        }

        .intro-section { padding: 40px 20px; text-align: center; max-width: 1000px; margin: 0 auto; }
        .intro-section h1 { font-size: 30px; color: var(--brand-primary); margin-bottom: 20px; line-height: 1.2; }
        .intro-section p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; }

        .section-title { 
            text-align: center; 
            font-size: 24px; 
            color: var(--brand-primary); 
            margin: 40px 0 20px; 
            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-primary); 
        }

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

        .article-list { 
            display: flex; 
            flex-direction: column; 
            gap: 20px; 
            padding: 0 15px; 
        }
        .article-card { 
            display: flex; 
            gap: 15px; 
            background: var(--bg-secondary); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            border: 1px solid var(--border-primary); 
            padding: 10px;
        }
        .article-card img { width: 100px; height: 100px; border-radius: 8px; object-fit: cover; }
        .article-info { flex: 1; }
        .article-info h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 5px; }
        .article-info p { font-size: 14px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            padding: 0 15px; 
            text-align: center; 
        }
        .payment-item { 
            background: var(--bg-accent); 
            padding: 15px 5px; 
            border-radius: 10px; 
            border: 1px solid var(--border-primary); 
            font-size: 12px; 
            color: var(--text-secondary); 
        }
        .payment-item i { display: block; font-size: 20px; color: var(--brand-primary); margin-bottom: 8px; }

        .lottery-container { 
            background: var(--bg-accent); 
            padding: 20px 0; 
            overflow: hidden; 
            position: relative; 
            border-top: 1px solid var(--border-primary); 
            border-bottom: 1px solid var(--border-primary); 
        }
        .lottery-track { 
            display: flex; 
            flex-direction: column; 
            gap: 10px; 
            animation: scrollUp 30s linear infinite; 
        }
        .lottery-item { 
            display: flex; 
            justify-content: space-between; 
            padding: 10px 20px; 
            background: var(--bg-secondary); 
            margin: 0 15px; 
            border-radius: 8px; 
            font-size: 14px; 
            border-left: 4px solid var(--brand-primary); 
        }
        @keyframes scrollUp { 
            0% { transform: translateY(0); } 
            100% { transform: translateY(-50%); } 
        }

        .provider-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            padding: 0 15px; 
        }
        .provider-box { 
            background: var(--bg-secondary); 
            padding: 20px; 
            text-align: center; 
            border-radius: 12px; 
            border: 1px solid var(--border-primary); 
            font-weight: 600; 
            color: var(--brand-primary); 
        }

        .comment-grid { 
            display: grid; 
            grid-template-columns: 1fr; 
            gap: 15px; 
            padding: 0 15px; 
        }
        .comment-card { 
            background: var(--bg-secondary); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-primary); 
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--text-muted); }
        .comment-header .name { font-weight: 600; color: var(--text-primary); }
        .comment-stars { color: var(--brand-primary); font-size: 12px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.6; }
        .comment-date { font-size: 12px; color: var(--text-muted); text-align: right; }

        .faq-section { padding: 20px 15px; max-width: 800px; margin: 0 auto; }
        .faq-item { background: var(--bg-secondary); border-radius: 10px; margin-bottom: 10px; border: 1px solid var(--border-primary); overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--brand-primary); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        .security-section { 
            background: var(--bg-accent); 
            padding: 40px 20px; 
            text-align: center; 
            border-top: 2px solid var(--border-primary); 
        }
        .security-icon { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .security-text { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
        .security-link { color: var(--brand-primary); 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: 2px solid var(--brand-primary); 
            z-index: 2000; 
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            text-align: center; 
            font-size: 12px; 
            display: flex; 
            flex-direction: column; 
            gap: 5px; 
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--brand-primary); }

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

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