:root {
            --bg-primary: #0A0B0C;
            --bg-secondary: #16181A;
            --bg-tertiary: #212427;
            --brand-primary: #FFD700;
            --brand-secondary: #B8860B;
            --brand-accent: #FF4500;
            --brand-glow: rgba(255, 215, 0, 0.4);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #2D3035;
            --border-active: #FFD700;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Noto Sans Bengali', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        .container { padding: 0 15px; width: 100%; max-width: 1200px; margin: 0 auto; }
        
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: #000; }

        .hero { margin: 15px 0; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 2/1; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
            border: 2px solid var(--brand-primary);
            box-shadow: 0 0 15px var(--brand-glow);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }
        .jackpot-title { color: var(--brand-primary); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px var(--brand-glow); }

        .section-title { font-size: 24px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid var(--brand-primary); }
        .intro-text h1 { font-size: 24px; margin-bottom: 10px; color: var(--brand-primary); }
        .intro-text p { color: var(--text-secondary); font-size: 14px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-secondary); border-radius: var(--radius); overflow: hidden; 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; text-align: center; }

        .article-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .article-item { display: flex; background: var(--bg-secondary); border-radius: var(--radius); overflow: hidden; gap: 10px; border: 1px solid var(--border-default); }
        .article-item img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 14px; line-height: 1.2; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 12px; color: var(--text-secondary); height: 36px; overflow: hidden; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item { background: var(--bg-tertiary); height: 60px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 20px; color: var(--brand-primary); margin-bottom: 4px; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }

        .lottery-section { background: var(--bg-secondary); border-radius: var(--radius); padding: 15px; margin-bottom: 30px; border: 1px solid var(--border-default); }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .win-amount { color: #00E676; font-weight: bold; }

        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
        .provider-block { background: var(--bg-tertiary); padding: 15px; text-align: center; border-radius: var(--radius); border: 1px solid var(--border-default); font-weight: 600; color: var(--brand-primary); }

        .review-card { background: var(--bg-tertiary); border-radius: var(--radius); padding: 15px; margin-bottom: 15px; border-left: 3px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-stars { color: #FFEA00; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 11px; color: var(--text-disabled); text-align: right; }

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

        .security-info { background: var(--bg-tertiary); padding: 20px; border-radius: var(--radius); text-align: center; margin-bottom: 30px; }
        .security-info i { font-size: 40px; color: #00E676; margin-bottom: 15px; }
        .security-info h3 { margin-bottom: 10px; }
        .security-info p { font-size: 13px; color: var(--text-secondary); margin-bottom: 15px; }

        footer { background: var(--bg-secondary); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-default); padding-top: 20px; }

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