:root {
            --primary: #FFD700;
            --secondary: #E60000;
            --accent: #FF9900;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0A0A0B;
            --bg-surface: #16181C;
            --bg-elevated: #212429;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #2D2F34;
            --win-color: #00FF7F;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Noto Sans Bengali', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 0 15px; width: 100%; max-width: 1200px; margin: 0 auto; }
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner { 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; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--gold-gradient); color: #000; }
        .hero { margin-bottom: 20px; cursor: pointer; }
        .hero img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 0 0 12px 12px; }
        .jackpot-box {
            background: var(--bg-elevated);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            border: 2px solid var(--primary);
            text-align: center;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 30px; font-weight: 800; color: var(--win-color); font-family: monospace; }
        .intro-section { padding: 20px 15px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; line-height: 1.3; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; }
        .section-title { font-size: 22px; color: var(--primary); margin: 30px 15px 20px; padding-left: 10px; border-left: 4px solid var(--secondary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-item { background: var(--bg-surface); border-radius: 12px; overflow: hidden; display: flex; border: 1px solid var(--border-default); }
        .article-item img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 16px; color: var(--primary); margin-bottom: 5px; }
        .article-content p { font-size: 13px; color: var(--text-secondary); height: 40px; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 15px; }
        .payment-item { background: var(--bg-elevated); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 24px; color: var(--accent); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }
        .winners-list { margin: 0 15px; background: var(--bg-surface); border-radius: 12px; padding: 15px; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .winner-row:last-child { border: none; }
        .winner-name { color: var(--text-secondary); }
        .winner-game { color: var(--text-primary); font-weight: 500; }
        .winner-amount { color: var(--win-color); font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-block { background: var(--bg-elevated); padding: 20px; border-radius: 10px; text-align: center; font-weight: bold; color: var(--primary); border-bottom: 3px solid var(--secondary); }
        .reviews-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); 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: 20px; color: var(--primary); }
        .review-user { font-weight: 600; font-size: 15px; }
        .review-stars { color: var(--accent); font-size: 12px; margin-left: auto; }
        .review-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-q { font-weight: 600; color: var(--primary); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; }
        .faq-q i { margin-top: 4px; color: var(--secondary); }
        .faq-a { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
        .security-section { background: var(--bg-elevated); margin: 30px 15px; padding: 20px; border-radius: 15px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; }
        .security-icons .fa-lock { color: var(--win-color); }
        .security-icons .fa-shield-halved { color: var(--info); }
        .security-text { font-size: 13px; color: var(--text-secondary); }
        .security-age { display: inline-block; border: 2px solid var(--secondary); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; color: var(--secondary); margin: 15px 0; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-surface); 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; width: 20%; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { color: var(--primary); font-weight: bold; }
        .nav-item:nth-child(3) i { background: var(--secondary); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; margin-top: -25px; box-shadow: 0 4px 10px rgba(230, 0, 0, 0.4); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .article-list { display: grid; grid-template-columns: 1fr 1fr; }
            .providers-grid { grid-template-columns: repeat(4, 1fr); }
        }