:root {
            --bg-primary: #0A0A0A;
            --bg-secondary: #141414;
            --bg-tertiary: #1F1F1F;
            --bg-surface: #262626;
            --brand-primary: #FFD700;
            --brand-secondary: #FFA500;
            --brand-accent: #00FF41;
            --brand-highlight: #FF4500;
            --text-primary: #FFFFFF;
            --text-secondary: #BDBDBD;
            --text-muted: #757575;
            --border-default: #333333;
            --border-active: #FFD700;
            --radius-md: 12px;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Noto Sans Bengali', sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        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-secondary);
            border-bottom: 1px solid var(--border-default);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 60px;
            display: flex;
            align-items: center;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0 15px;
        }
        .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-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background-color: var(--bg-tertiary); color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background-color: var(--brand-primary); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            padding: 20px 15px;
            text-align: center;
            border-bottom: 2px solid var(--brand-primary);
        }
        .jackpot-title { color: var(--brand-secondary); font-size: 14px; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-primary);
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
            font-family: var(--font-secondary);
        }
        .intro-section { padding: 30px 15px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 15px; max-width: 800px; margin: 0 auto; }
        .section-title { padding: 20px 15px 10px; font-size: 18px; border-left: 4px solid var(--brand-primary); margin-left: 15px; margin-bottom: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; margin-bottom: 30px; }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img { aspect-ratio: 1/1; width: 100%; object-fit: cover; }
        .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; margin-bottom: 30px; }
        .article-item {
            display: flex;
            background-color: var(--bg-secondary);
            border-radius: var(--radius-md);
            overflow: hidden;
            gap: 12px;
            border: 1px solid var(--border-default);
        }
        .article-img { width: 100px; height: 100px; flex-shrink: 0; }
        .article-img img { width: 100%; height: 100%; object-fit: cover; }
        .article-info { padding: 10px 10px 10px 0; display: flex; flex-direction: column; justify-content: center; }
        .article-info h2 { font-size: 14px; margin-bottom: 5px; color: var(--brand-primary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-info p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-section { background-color: var(--bg-secondary); padding: 20px 15px; margin: 20px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--brand-secondary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .winners-box {
            background-color: var(--bg-surface);
            margin: 0 15px 30px;
            border-radius: var(--radius-md);
            height: 200px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--brand-primary);
        }
        .winners-scroll {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .winner-row {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .winner-name { color: var(--brand-accent); font-weight: 600; }
        .winner-amount { color: var(--brand-primary); }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; margin-bottom: 30px; }
        .provider-item {
            background-color: var(--bg-tertiary);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .review-list { padding: 0 15px; margin-bottom: 30px; }
        .review-card {
            background-color: var(--bg-surface);
            border-radius: var(--radius-md);
            padding: 15px;
            margin-bottom: 15px;
            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(--brand-primary); }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: var(--brand-secondary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background-color: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; padding: 15px; border-left: 3px solid var(--brand-primary); }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--brand-primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .safety-section { background-color: var(--bg-surface); padding: 25px 15px; text-align: center; margin-bottom: 30px; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-accent); }
        .safety-text { font-size: 13px; color: var(--text-muted); max-width: 90% ; margin: 0 auto; }
        .safety-text a { color: var(--brand-primary); text-decoration: underline; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background-color: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; display: flex; flex-direction: column; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background-color: var(--bg-primary); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .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); text-align: center; padding: 5px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }