:root {
            --bg-primary: #0A0B0D;
            --bg-secondary: #16181D;
            --bg-tertiary: #1E2128;
            --brand-primary: #FFD700;
            --brand-variant: #C5A000;
            --brand-accent: #FF4500;
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-muted: #718096;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-title: 'Tiro Bangla', serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-primary); color: var(--text-primary); font-family: var(--font-main); line-height: 1.5; -webkit-tap-highlight-color: transparent; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: var(--bg-secondary); border-bottom: 1px solid #2D3748; padding: 12px 0; position: sticky; top: 0; z-index: 1000; }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .auth-buttons { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: #000; }
        .hero { width: 100%; cursor: pointer; overflow: hidden; }
        .hero img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-section { background: linear-gradient(135deg, #16181D 0%, #0A0B0D 100%); margin: 20px 15px; padding: 20px; border-radius: 15px; border: 1px solid #B8860B; text-align: center; }
        .jackpot-label { color: var(--brand-primary); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--text-primary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-section { padding: 30px 15px; text-align: center; }
        .intro-section h1 { font-family: var(--font-title); font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-section p { font-size: 16px; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }
        .section-title { font-family: var(--font-title); font-size: 22px; color: var(--brand-primary); padding: 0 15px; margin: 25px 0 15px; border-left: 4px solid var(--brand-accent); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-tertiary); border-radius: 12px; overflow: hidden; border: 1px solid #2D3748; transition: 0.3s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: var(--text-primary); }
        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card { display: flex; background: var(--bg-secondary); border-radius: 10px; overflow: hidden; border: 1px solid #2D3748; }
        .article-img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 15px; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .payment-item { background: var(--bg-tertiary); padding: 15px; border-radius: 8px; display: flex; align-items: center; gap: 10px; border: 1px solid #2D3748; }
        .payment-item i { color: var(--brand-primary); font-size: 20px; }
        .winners-box { margin: 20px 15px; background: var(--bg-secondary); border-radius: 12px; padding: 15px; border: 1px solid #2D3748; overflow: hidden; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2D3748; font-size: 13px; }
        .winner-row span:nth-child(3) { color: #00C853; font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-block { background: #1E2128; padding: 20px; border-radius: 10px; text-align: center; border: 1px solid #2D3748; font-weight: 700; color: var(--text-secondary); }
        .review-section { padding: 0 15px; }
        .review-card { background: var(--bg-tertiary); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2D3748; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--brand-primary); }
        .review-info h4 { font-size: 15px; color: var(--text-primary); }
        .stars { color: #FFD700; font-size: 12px; }
        .review-text { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid #2D3748; }
        .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; }
        .security-section { margin: 30px 15px; padding: 20px; background: #000; border-radius: 12px; border: 1px solid #FF4500; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-primary); }
        .security-text { font-size: 13px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-secondary); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2D3748; z-index: 1001; }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        footer { background: #050505; padding: 30px 15px 100px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid #1A202C; padding-top: 20px; }