:root {
            --primary: #FFD700;
            --primary-variant: #FFC107;
            --secondary: #00E676;
            --accent: #FF4081;
            --bg-default: #0B0E11;
            --bg-paper: #151A21;
            --bg-elevated: #1E232B;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-default: #2D343F;
            --font-main: 'Hind Siliguri', 'Noto Sans Bengali', 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;
            overflow-x: hidden;
            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-default);
        }
        .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(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1e232b 0%, #0b0e11 100%);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { color: var(--primary); font-size: 18px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--secondary); font-family: 'Inter', sans-serif; text-shadow: 0 0 10px rgba(0, 230, 118, 0.5); }
        .intro-card { background: var(--bg-paper); border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; text-align: justify; }
        .section-title { font-size: 20px; color: var(--text-primary); margin: 20px 0 15px; padding-left: 10px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-elevated); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .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; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--bg-paper); padding: 15px 5px; border-radius: 10px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); display: block; }
        .guide-section { margin-bottom: 25px; }
        .guide-card { background: var(--bg-paper); padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid var(--border-default); }
        .guide-card h2 { font-size: 18px; color: var(--secondary); margin-bottom: 8px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }
        .lottery-box { background: var(--bg-elevated); border-radius: 12px; height: 200px; overflow: hidden; margin-bottom: 25px; border: 1px solid var(--border-default); position: relative; }
        .lottery-marquee { position: absolute; width: 100%; animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -1000px; } }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
        .lottery-user { color: var(--primary); font-weight: 500; }
        .lottery-win { color: var(--secondary); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: linear-gradient(45deg, #1e232b, #2d343f); padding: 15px; border-radius: 10px; text-align: center; font-weight: 700; color: var(--primary); border: 1px solid var(--border-default); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-paper); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .review-info h3 { font-size: 16px; margin: 0; }
        .stars { color: #FFB400; font-size: 12px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-paper); border-radius: 10px; margin-bottom: 10px; padding: 15px; border-left: 4px solid var(--primary); }
        .faq-item h3 { font-size: 16px; color: var(--text-primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .safety-section { background: #1a1a1a; padding: 20px; border-radius: 15px; margin-bottom: 25px; text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-paper);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 12px; }
        footer {
            background-color: var(--bg-paper);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-primary); text-decoration: none; font-size: 14px; border: 1px solid var(--border-default); padding: 8px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: color 0.2s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { font-size: 12px; color: var(--text-hint); border-top: 1px solid var(--border-default); padding-top: 20px; }