:root {
            --bg-main: #0a0b0d;
            --bg-surface: #15181c;
            --bg-elevated: #1e2229;
            --primary: #ffbf00;
            --secondary: #d4af37;
            --accent: #00e676;
            --text-primary: #ffffff;
            --text-secondary: #b0b3b8;
            --text-muted: #65676b;
            --border-default: #2d323a;
            --border-focused: #d4af37;
            --font-primary: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-container img { width: 25px; height: 25px; object-fit: contain; }
        .logo-container strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }
        .hero { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1e2229 0%, #0a0b0d 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--secondary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 14px; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--primary); font-family: monospace; }
        .content-section { padding: 20px 15px; }
        h1 { font-size: 24px; margin-bottom: 15px; color: var(--primary); }
        h2 { font-size: 20px; margin: 25px 0 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        h3 { font-size: 16px; margin: 10px 0; font-weight: 500; }
        p { color: var(--text-secondary); margin-bottom: 15px; font-size: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: 0.3s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card-info { padding: 10px; text-align: center; }
        .article-list { display: flex; flex-direction: column; gap: 15px; }
        .article-item {
            display: flex;
            background: var(--bg-surface);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-item img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 12px; flex: 1; }
        .article-content h3 { font-size: 14px; margin: 0 0 5px; color: var(--primary); }
        .article-content p { font-size: 12px; margin: 0; line-height: 1.4; height: 3.2em; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
        .payment-item { background: var(--bg-surface); padding: 15px 5px; border-radius: 8px; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--secondary); margin-bottom: 5px; display: block; }
        .lottery-box {
            height: 300px;
            overflow: hidden;
            background: var(--bg-elevated);
            border-radius: 12px;
            padding: 10px;
            margin: 20px 0;
            position: relative;
        }
        .lottery-scroll { animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 12px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .lottery-user { color: var(--accent); font-weight: 600; }
        .lottery-win { color: var(--primary); }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-item { background: var(--bg-surface); padding: 20px; text-align: center; border-radius: 8px; font-weight: 600; border: 1px solid var(--border-default); }
        .review-card { background: var(--bg-elevated); padding: 20px; border-radius: 12px; 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: 24px; color: var(--text-muted); }
        .review-stars { color: var(--primary); font-size: 12px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--primary); border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; }
        .security-box { background: #000; border: 1px dashed var(--accent); padding: 20px; border-radius: 12px; text-align: center; margin-top: 30px; }
        .security-box i { color: var(--accent); font-size: 30px; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 5px;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        footer { background: #000; padding: 40px 15px 100px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: var(--text-secondary); font-size: 14px; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }