:root {
            --bg-primary: #0A0B0C;
            --bg-secondary: #16181A;
            --bg-tertiary: #212427;
            --brand-primary: #FFD700;
            --brand-hover: #E6C200;
            --brand-gold-grad: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --accent-red: #FF4D4D;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #6C757D;
            --border-default: #2D3035;
            --border-active: #FFD700;
            --radius-md: 12px;
            --radius-lg: 20px;
        }
        * { 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.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Noto Sans Bengali', sans-serif; }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-secondary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-login { background: transparent; border: 1px solid var(--brand-primary); color: var(--brand-primary); }
        .btn-register { background: var(--brand-gold-grad); border: none; 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-container {
            margin: 20px 15px;
            background: var(--bg-tertiary);
            padding: 20px;
            border-radius: var(--radius-md);
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 1.2rem; margin-bottom: 10px; font-weight: bold; }
        .jackpot-value {
            font-family: 'Galada', cursive;
            font-size: 2.5rem;
            background: var(--brand-gold-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
        }
        .intro-section { padding: 25px 15px; text-align: center; }
        .intro-section h1 { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 1rem; }
        .section-title { margin: 25px 15px 15px; font-size: 1.25rem; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card {
            background: var(--bg-secondary);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 0.9rem; text-align: center; color: var(--text-primary); }
        .article-list { display: flex; flex-direction: column; gap: 15px; padding: 0 15px; }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 0.95rem; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 0.8rem; color: var(--text-secondary); height: 40px; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item {
            background: var(--bg-tertiary);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 0.75rem; color: var(--text-secondary); }
        .lottery-box {
            height: 300px;
            overflow: hidden;
            margin: 15px;
            background: var(--bg-secondary);
            border-radius: var(--radius-md);
            padding: 10px;
            border: 1px solid var(--border-default);
            position: relative;
        }
        .lottery-scroll { animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 10px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
        }
        .lottery-item span { color: var(--brand-primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item {
            background: var(--bg-tertiary);
            padding: 20px;
            text-align: center;
            border-radius: var(--radius-md);
            font-weight: bold;
            color: var(--brand-primary);
            border: 1px solid var(--border-default);
        }
        .review-grid { display: flex; flex-direction: column; gap: 15px; padding: 0 15px; }
        .review-card {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 2rem; color: var(--text-muted); }
        .review-rating { color: var(--brand-primary); font-size: 0.8rem; }
        .review-content { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 0.75rem; color: var(--text-muted); }
        .faq-section { padding: 0 15px 30px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-secondary); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .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: 0.9rem; border-top: 1px solid var(--border-default); padding-top: 10px; }
        .security-section { padding: 20px 15px; background: var(--bg-tertiary); text-align: center; margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 2rem; color: var(--brand-primary); }
        .security-text { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            height: 65px;
            background: 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: 0.75rem; }
        .nav-item i { display: block; font-size: 1.2rem; margin-bottom: 3px; color: var(--brand-primary); }
        footer { background: 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: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); font-size: 0.85rem; }
        .footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid var(--border-default); padding-top: 20px; }