:root {
            --bg-primary: #0F172A;
            --bg-secondary: #1E293B;
            --bg-accent: #020617;
            --brand-primary: #FFD700;
            --brand-secondary: #FACC15;
            --brand-highlight: #EAB308;
            --success: #22C55E;
            --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', 'Noto Sans Bengali', sans-serif;
            --font-secondary: 'Inter', 'Roboto', 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);
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--border-highlight);
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        .header-logo-group { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .header-logo-group img { width: 25px; height: 25px; }
        .header-logo-group strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        .header-auth-btns { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 8px; 
            cursor: pointer; 
            font-family: var(--font-primary); 
            font-weight: 600; 
            border: none; 
            transition: 0.3s; 
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-login:hover { background: var(--brand-primary); color: var(--text-inverse); }
        .btn-register { background: var(--brand-primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--brand-highlight); }

        main { padding: 0 15px 80px; max-width: 800px; margin: 0 auto; }
        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            border-radius: 15px; 
            margin: 20px 0; 
            overflow: hidden; 
            cursor: pointer; 
            box-shadow: 0 0 20px rgba(255,215,0,0.2);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
            border: 2px solid var(--border-highlight);
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--brand-secondary); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { 
            font-family: var(--font-secondary); 
            font-size: 32px; 
            font-weight: bold; 
            color: #fff; 
            text-shadow: 0 0 10px var(--brand-primary);
        }

        .intro-card {
            background: var(--bg-secondary);
            padding: 25px;
            border-radius: 20px;
            border-left: 5px solid var(--brand-primary);
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .intro-card h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            font-size: 20px; 
            margin: 30px 0 20px; 
            color: var(--brand-primary); 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            border-bottom: 1px solid var(--border-primary); 
            padding-bottom: 10px;
        }

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

        .payment-section { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            background: var(--bg-accent); 
            padding: 20px; 
            border-radius: 15px; 
            margin-bottom: 30px;
        }
        .payment-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            font-size: 12px; 
            color: var(--text-muted); 
            gap: 8px; 
            text-align: center;
        }
        .payment-item i { font-size: 20px; color: var(--brand-secondary); }

        .guide-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 30px; 
        }
        .guide-card { 
            background: var(--bg-secondary); 
            padding: 15px; 
            border-radius: 12px; 
            font-size: 13px; 
            color: var(--text-secondary); 
            border: 1px solid var(--border-primary);
        }
        .guide-card h3 { color: var(--brand-primary); font-size: 15px; margin-bottom: 8px; }

        .lottery-marquee { 
            background: var(--bg-accent); 
            padding: 15px 0; 
            overflow: hidden; 
            white-space: nowrap; 
            border-radius: 10px; 
            border: 1px solid var(--border-primary); 
            margin-bottom: 30px;
        }
        .marquee-content { 
            display: inline-block; 
            animation: marquee 30s linear infinite; 
        }
        .win-item { 
            display: inline-block; 
            margin-right: 50px; 
            font-size: 14px; 
            color: var(--text-primary); 
        }
        .win-item span { color: var(--brand-primary); font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .provider-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .provider-block { 
            background: linear-gradient(45deg, var(--bg-secondary), var(--bg-accent)); 
            padding: 20px; 
            border-radius: 10px; 
            text-align: center; 
            font-weight: bold; 
            color: var(--brand-primary); 
            border: 1px solid var(--border-primary);
            font-size: 16px;
        }

        .comment-grid { 
            display: grid; 
            grid-template-columns: 1fr; 
            gap: 15px; 
            margin-bottom: 30px; 
        }
        .comment-card { 
            background: var(--bg-secondary); 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid var(--border-primary);
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--text-muted); }
        .comment-header div h4 { font-size: 15px; color: var(--text-primary); }
        .comment-header div span { font-size: 12px; color: var(--brand-primary); }
        .comment-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); text-align: right; }

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

        .security-section { 
            background: var(--bg-accent); 
            padding: 20px; 
            border-radius: 15px; 
            text-align: center; 
            border: 1px solid var(--border-primary);
            margin-bottom: 30px;
        }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-secondary); }
        .security-text { font-size: 13px; color: var(--text-muted); }
        .security-text a { color: var(--info); text-decoration: none; }

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

        footer { 
            background: var(--bg-accent); 
            padding: 40px 20px; 
            text-align: center; 
            border-top: 1px solid var(--border-primary); 
        }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 15px; 
            text-align: left; 
            max-width: 600px; 
            margin: 0 auto 30px; 
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-copy { color: var(--text-muted); font-size: 12px; margin-top: 20px; }