@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Inter:wght@400;600;700&family=Tiro+Bangla&display=swap');

        :root {
            --primary: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #996515;
            --accent: #00FF41;
            --bg-main: #0B0E11;
            --bg-surface: #15191E;
            --bg-elevated: #1E2329;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --border-low: #2B3139;
            --radius-md: 12px;
            --radius-lg: 20px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-low);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
        }

        .header-right {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            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;
        }

        main {
            max-width: 800px;
            margin: 0 auto;
            padding: 15px;
        }

        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-box {
            background: linear-gradient(135deg, #1E2329 0%, #0B0E11 100%);
            border: 2px solid var(--primary);
            border-radius: var(--radius-md);
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
        }

        .jackpot-title {
            color: var(--primary);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            text-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: var(--radius-lg);
            margin-bottom: 30px;
            border-left: 4px solid var(--primary);
        }

        h1 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        h2 {
            font-size: 20px;
            margin: 30px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        h2::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border-low);
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .game-card {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-low);
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
        }

        .payment-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .payment-item {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
        }

        .payment-item i {
            color: var(--primary);
            font-size: 20px;
            width: 25px;
        }

        .guidelines {
            margin-bottom: 30px;
        }

        .guide-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
        }

        .lottery-marquee {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: var(--radius-md);
            height: 200px;
            overflow: hidden;
            position: relative;
            margin-bottom: 30px;
        }

        .lottery-track {
            animation: scrollUp 40s linear infinite;
        }

        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-low);
            font-size: 13px;
        }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .provider-item {
            background: linear-gradient(45deg, #15191E, #1E2329);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            color: var(--primary-light);
            font-weight: 600;
        }

        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: var(--radius-md);
            margin-bottom: 15px;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-header i {
            font-size: 30px;
            color: var(--text-muted);
        }

        .stars {
            color: var(--primary);
            font-size: 12px;
        }

        .faq-container {
            margin-bottom: 30px;
        }

        .faq-item {
            background: var(--bg-elevated);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
        }

        .faq-item h3 {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .security-box {
            background: #000;
            padding: 20px;
            border-radius: var(--radius-md);
            text-align: center;
            border: 1px dashed var(--primary);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-low);
            z-index: 1001;
        }

        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
        }

        .nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
        }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid var(--border-low);
        }

        .footer-contacts {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .copyright {
            font-size: 12px;
            color: var(--text-muted);
        }