body {
            background-color: #0D0D0D;
            color: #FFFFFF;
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: #1A1A1A;
            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 #333333;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: #FFD700;
        }
        .header-right {
            display: flex;
            gap: 8px;
        }
        .btn {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn-login {
            background-color: transparent;
            color: #FFD700;
            border: 1px solid #FFD700;
        }
        .btn-register {
            background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            color: #000000;
        }
        main {
            padding-bottom: 80px;
        }
        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: #1A1A1A;
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #FFD700;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label {
            font-size: 14px;
            color: #B0B0B0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: #FFD700;
            margin-top: 5px;
            font-family: 'Inter', sans-serif;
        }
        .intro-card {
            margin: 15px;
            padding: 20px;
            background: #1A1A1A;
            border-radius: 15px;
            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: #B0B0B0;
            margin: 0;
        }
        .section-title {
            padding: 10px 15px;
            font-size: 18px;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title::before {
            content: '';
            width: 4px;
            height: 18px;
            background: #FFD700;
            border-radius: 2px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: #1A1A1A;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid #333333;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            font-size: 14px;
            color: #FFFFFF;
            padding: 8px;
            margin: 0;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-license-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background: #1A1A1A;
            margin: 15px;
            border-radius: 12px;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 10px;
            color: #808080;
        }
        .payment-item i {
            font-size: 20px;
            color: #FFD700;
        }
        .guidelines-section {
            padding: 15px;
            display: grid;
            gap: 15px;
        }
        .guide-card {
            background: #262626;
            padding: 15px;
            border-radius: 12px;
        }
        .guide-card h3 {
            color: #FFD700;
            font-size: 16px;
            margin: 0 0 8px 0;
        }
        .guide-card p {
            font-size: 13px;
            color: #B0B0B0;
            margin: 0;
        }
        .lottery-marquee {
            background: #1A1A1A;
            margin: 15px;
            border-radius: 12px;
            overflow: hidden;
            height: 150px;
            position: relative;
            border: 1px solid #333333;
        }
        .marquee-content {
            display: flex;
            flex-direction: column;
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .win-item {
            padding: 10px 15px;
            border-bottom: 1px solid #262626;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
        }
        .win-user { color: #FFD700; font-weight: 600; }
        .win-amount { color: #00C853; font-weight: 700; }
        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 15px;
        }
        .provider-item {
            background: #1A1A1A;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            color: #FFD700;
            font-weight: 600;
            border: 1px solid #333333;
        }
        .reviews-container {
            padding: 15px;
            display: grid;
            gap: 15px;
        }
        .review-card {
            background: #1A1A1A;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid #333333;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            background: #262626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFD700;
        }
        .review-info h4 { margin: 0; font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-text { font-size: 13px; color: #B0B0B0; margin: 10px 0; }
        .review-date { font-size: 11px; color: #808080; text-align: right; }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            background: #1A1A1A;
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 15px;
            color: #FFD700;
            margin: 0 0 10px 0;
        }
        .faq-item p {
            font-size: 13px;
            color: #B0B0B0;
            margin: 0;
        }
        .security-section {
            background: #1A1A1A;
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: #FFD700;
        }
        .security-text {
            font-size: 12px;
            color: #808080;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #1A1A1A;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333333;
            z-index: 1000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #808080;
            font-size: 11px;
            gap: 4px;
        }
        .nav-item i { font-size: 18px; }
        footer {
            background: #0D0D0D;
            padding: 30px 15px 100px;
            border-top: 1px solid #333333;
        }
        .footer-contacts {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-contacts a {
            color: #B0B0B0;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #808080;
            text-decoration: none;
            font-size: 12px;
        }
        .footer-bottom {
            text-align: center;
            font-size: 11px;
            color: #4D4D4D;
            padding-top: 20px;
            border-top: 1px solid #1A1A1A;
        }