:root {
            --bg-primary: #0A0B0D;
            --bg-secondary: #16181D;
            --bg-surface: #1F2229;
            --brand-primary: #FFD700;
            --brand-variant: #C5A000;
            --brand-secondary: #E91E63;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --border-subtle: #2F3336;
            --border-strong: #4A4D51;
            --win-highlight: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Tiro Bangla', serif; font-weight: 700; }
        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 var(--border-subtle);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            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 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-strong); }
        .btn-reg { background: var(--gold-gradient); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: var(--bg-surface);
            margin: 20px 0;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 700; color: #FFF; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-section { padding: 20px 0; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; }
        .intro-section p { color: var(--text-secondary); font-size: 14px; }
        .section-header { display: flex; align-items: center; gap: 10px; margin: 25px 0 15px; }
        .section-header h2 { font-size: 20px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            gap: 12px;
            padding: 10px;
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; border-radius: 6px; }
        .article-content h3 { font-size: 16px; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 12px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
        .payment-item {
            background: var(--bg-secondary);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-subtle);
        }
        .payment-item i { font-size: 20px; color: var(--brand-primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-muted); }
        .win-ticker {
            background: var(--bg-surface);
            border-radius: 12px;
            height: 300px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-subtle);
        }
        .ticker-track { animation: scrollUp 25s linear infinite; }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .win-item {
            padding: 12px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .win-user { font-weight: 600; color: var(--brand-primary); }
        .win-amount { color: var(--win-highlight); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; text-align: center; font-weight: 600; border: 1px solid var(--border-subtle); }
        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-subtle);
        }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 24px; color: var(--text-muted); }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); margin-top: 5px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-subtle); }
        .faq-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--brand-primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: #1a1d24;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin: 30px 0;
            border-top: 2px solid var(--brand-primary);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 30px; margin-bottom: 15px; color: var(--brand-primary); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-strong);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        .nav-item:nth-child(3) i { color: var(--brand-primary); font-size: 24px; }
        footer { background: var(--bg-primary); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .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); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 15px; }