:root {
            --bg-primary: #0A0B0C;
            --bg-secondary: #14171A;
            --bg-tertiary: #1C2024;
            --bg-surface: #252A30;
            --brand-primary: #FFD700;
            --brand-variant: #FFC107;
            --brand-secondary: #00C853;
            --brand-accent: #D4AF37;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --border-default: #30363D;
            --border-active: #FFD700;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Tiro Bangla', serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-primary);
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }
        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-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo img { width: 25px; height: 25px; border-radius: 4px; }
        .header-logo strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .header-btns { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); 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 {
            background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-surface));
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-accent);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 18px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--brand-variant); font-family: var(--font-secondary); }
        .section-padding { padding: 25px 15px; }
        .intro-h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; line-height: 1.25; }
        .intro-p { color: var(--text-secondary); margin-bottom: 20px; }
        .grid-container { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
            text-decoration: none;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
        }
        .section-title { font-size: 20px; color: var(--brand-primary); margin-bottom: 20px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        .article-card {
            background: var(--bg-tertiary);
            border-radius: 10px;
            margin-bottom: 15px;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100%; height: 180px; object-fit: cover; border-top-left-radius: 10px; border-top-right-radius: 10px; }
        .article-content { padding: 15px; }
        .article-content h2 { font-size: 18px; margin-bottom: 8px; color: var(--brand-primary); }
        .article-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.4; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
        }
        .payment-item i { font-size: 24px; color: var(--brand-primary); margin-bottom: 8px; display: block; }
        .lottery-box {
            background: var(--bg-secondary);
            height: 200px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .lottery-scroll {
            position: absolute;
            width: 100%;
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--bg-tertiary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        .lottery-user { color: var(--brand-secondary); }
        .lottery-amount { color: var(--brand-primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-item {
            background: var(--bg-tertiary);
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 12px;
            border-left: 3px solid var(--brand-primary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--text-muted); }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .faq-item {
            background: var(--bg-secondary);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
            border: 1px solid var(--border-default);
        }
        .faq-q { color: var(--brand-primary); font-weight: 600; margin-bottom: 10px; font-size: 16px; }
        .faq-a { color: var(--text-secondary); font-size: 14px; }
        .security-section {
            background: var(--bg-tertiary);
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            margin-top: 20px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 30px; margin-bottom: 15px; color: var(--brand-secondary); }
        .security-text { font-size: 13px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-primary); padding: 40px 15px 100px; 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-secondary); text-decoration: none; font-size: 14px; }
        .footer-bottom { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--bg-tertiary); padding-top: 20px; }