body {
            background-color: #0B0E11;
            color: #FFFFFF;
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        header {
            background-color: #1E2329;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2F3336;
        }
        .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: #FFD700;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.2s;
        }
        .btn-login {
            background-color: transparent;
            color: #FFFFFF;
            border: 1px solid #474D57;
        }
        .btn-register {
            background-color: #FFD700;
            color: #000000;
        }
        main {
            padding-bottom: 80px;
            max-width: 800px;
            margin: 0 auto;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            object-fit: cover;
            cursor: pointer;
            display: block;
        }
        .jackpot-container {
            background: linear-gradient(180deg, #1E2329 0%, #000000 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #FFD700;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label {
            color: #FFD700;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }
        .jackpot-value {
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #F0B90B;
            letter-spacing: 2px;
        }
        .intro-card {
            background-color: #1E2329;
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #FFD700;
        }
        .intro-card h1 {
            font-size: 20px;
            color: #FFD700;
            margin: 0 0 10px 0;
        }
        .intro-card p {
            font-size: 14px;
            color: #B7BDC6;
            margin: 0;
        }
        .section-title {
            padding: 0 15px;
            margin: 20px 0 10px;
            font-size: 18px;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: #1E2329;
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid #2F3336;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            font-size: 14px;
            color: #FFFFFF;
            padding: 10px;
            margin: 0;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-section {
            background-color: #1E2329;
            margin: 20px 15px;
            padding: 15px;
            border-radius: 12px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i {
            font-size: 24px;
            color: #FFD700;
            display: block;
            margin-bottom: 5px;
        }
        .payment-item span {
            font-size: 10px;
            color: #B7BDC6;
        }
        .guidelines-section {
            padding: 0 15px;
        }
        .guide-card {
            background-color: #1E2329;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 12px;
        }
        .guide-card h3 {
            color: #FFD700;
            font-size: 16px;
            margin: 0 0 8px 0;
        }
        .guide-card p {
            font-size: 13px;
            color: #B7BDC6;
            margin: 0;
        }
        .lottery-marquee {
            background-color: #000000;
            margin: 20px 0;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            border-top: 1px solid #2F3336;
            border-bottom: 1px solid #2F3336;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }
        .lottery-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #1E2329;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 0 10px;
            font-size: 12px;
        }
        .lottery-item span { color: #0ECB81; font-weight: bold; }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .provider-item {
            background: linear-gradient(45deg, #1E2329, #2B3139);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: #FFD700;
            border: 1px solid #2F3336;
        }
        .comment-section {
            padding: 0 15px;
        }
        .comment-card {
            background-color: #1E2329;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .comment-header i {
            font-size: 24px;
            color: #707A8A;
        }
        .comment-user h4 { margin: 0; font-size: 14px; }
        .comment-stars { color: #F0B90B; font-size: 12px; }
        .comment-body { font-size: 13px; color: #B7BDC6; }
        .comment-date { font-size: 11px; color: #707A8A; margin-top: 8px; }
        .faq-section {
            padding: 0 15px;
        }
        .faq-item {
            background-color: #1E2329;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: #FFD700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 15px 15px;
            font-size: 14px;
            color: #B7BDC6;
        }
        .safety-section {
            margin: 20px 15px;
            padding: 20px;
            background-color: #1E2329;
            border-radius: 12px;
            text-align: center;
        }
        .safety-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: #0ECB81;
        }
        .safety-text { font-size: 12px; color: #707A8A; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #1E2329;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #2F3336;
            z-index: 1000;
        }
        .nav-item {
            text-align: center;
            text-decoration: none;
            color: #B7BDC6;
            font-size: 12px;
        }
        .nav-item i {
            font-size: 20px;
            display: block;
            margin-bottom: 4px;
        }
        footer {
            background-color: #000000;
            padding: 30px 15px 100px;
            border-top: 1px solid #2F3336;
        }
        .footer-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
            justify-content: center;
        }
        .footer-contact a {
            color: #B7BDC6;
            text-decoration: none;
            font-size: 13px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #707A8A;
            text-decoration: none;
            font-size: 12px;
        }
        .footer-bottom {
            text-align: center;
            font-size: 11px;
            color: #707A8A;
            padding-top: 20px;
            border-top: 1px solid #2F3336;
        }