:root {
            --bg-primary: #0A0B0D;
            --bg-secondary: #16181D;
            --bg-surface: #21242C;
            --brand-primary: #FFD700;
            --brand-secondary: #FFB800;
            --brand-accent: #00E676;
            --brand-premium: #D4AF37;
            --text-primary: #FFFFFF;
            --text-secondary: #BDBDBD;
            --text-muted: #828282;
            --border-default: #2C2F36;
            --border-focused: #FFD700;
        }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        h1, h2, h3 { margin: 0; font-family: 'Noto Sans Bengali', sans-serif; font-weight: 700; }
        h1 { font-size: 32px; color: var(--brand-primary); text-align: center; margin: 20px 0; }
        h2 { font-size: 24px; color: var(--brand-secondary); margin-bottom: 15px; }
        h3 { font-size: 20px; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        .container { padding: 0 16px; max-width: 1200px; margin: 0 auto; }
        header {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-default);
            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; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: #000; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            margin-bottom: 20px;
            cursor: pointer;
            overflow: hidden;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-surface), #333);
            border: 2px solid var(--brand-premium);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
        }
        .jackpot-label { color: var(--brand-primary); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 40px; font-weight: bold; color: var(--text-primary); font-family: 'Noto Sans Bengali', sans-serif; overflow: hidden; height: 50px; }
        .intro-section { text-align: center; margin-bottom: 40px; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
        .game-img { aspect-ratio: 1/1; width: 100%; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .article-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 10px;
            padding: 10px;
            gap: 15px;
            align-items: center;
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; flex-shrink: 0; }
        .article-text h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 5px; }
        .article-text p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-section { margin-bottom: 40px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .payment-item {
            background: var(--bg-secondary);
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 20px; color: var(--brand-primary); margin-bottom: 5px; display: block; }
        .winning-ticker {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 15px;
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-default);
            margin-bottom: 40px;
        }
        .winning-scroll { animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .win-item {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .win-user { color: var(--brand-accent); }
        .win-amount { color: var(--brand-primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 40px; }
        .provider-item { background: var(--bg-surface); padding: 20px; text-align: center; border-radius: 8px; font-weight: bold; border-left: 4px solid var(--brand-primary); }
        .reviews-list { margin-bottom: 40px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-head i { font-size: 24px; color: var(--brand-primary); }
        .review-user { font-weight: bold; font-size: 14px; }
        .review-rating { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin-bottom: 40px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-question { font-weight: bold; color: var(--brand-primary); margin-bottom: 8px; font-size: 16px; }
        .faq-answer { font-size: 14px; color: var(--text-secondary); }
        .security-box {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-premium);
            margin-bottom: 100px;
        }
        .security-box i { font-size: 30px; color: var(--brand-accent); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-secondary); padding: 40px 16px 120px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a { color: var(--text-muted); font-size: 14px; }
        .footer-copy { color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }