* { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: #0B0E11;
            color: #FFFFFF;
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: #15191E;
            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 #2B3139;
        }
        header .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #FFFFFF;
        }
        header .brand img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .brand strong {
            font-size: 16px;
            font-weight: 400;
        }
        header .auth-btns {
            display: flex;
            gap: 10px;
        }
        header button {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        header .login-btn {
            background: transparent;
            color: #FFFFFF;
            border: 1px solid #D4AF37;
        }
        header .reg-btn {
            background: #D4AF37;
            color: #0B0E11;
        }
        main {
            padding-bottom: 80px;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            overflow: hidden;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: #1E2329;
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #D4AF37;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label {
            color: #D4AF37;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: #FFD700;
            font-family: 'Inter', sans-serif;
        }
        .intro-card {
            background: #15191E;
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #D4AF37;
        }
        .intro-card h1 {
            font-size: 24px;
            color: #D4AF37;
            margin-bottom: 12px;
        }
        .intro-card p {
            color: #B7BDC6;
            font-size: 16px;
        }
        .section-title {
            padding: 0 15px;
            margin: 20px 0 15px;
            font-size: 20px;
            border-left: 4px solid #006A4E;
            margin-left: 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: #1E2329;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid #2B3139;
            transition: 0.3s;
        }
        .game-card:hover {
            border-color: #D4AF37;
            transform: translateY(-3px);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: #FFFFFF;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-license {
            background: #15191E;
            margin: 25px 15px;
            padding: 20px;
            border-radius: 12px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i {
            font-size: 24px;
            color: #D4AF37;
            margin-bottom: 8px;
        }
        .payment-item span {
            display: block;
            font-size: 12px;
            color: #B7BDC6;
        }
        .guidelines {
            margin: 25px 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .guide-item {
            background: #1E2329;
            padding: 15px;
            border-radius: 12px;
        }
        .guide-item h2 {
            color: #D4AF37;
            font-size: 18px;
            margin-bottom: 10px;
        }
        .lottery-marquee {
            background: #000;
            margin: 20px 0;
            padding: 10px 0;
            overflow: hidden;
            border-top: 1px solid #2B3139;
            border-bottom: 1px solid #2B3139;
        }
        .marquee-content {
            display: flex;
            animation: scroll 40s linear infinite;
            white-space: nowrap;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .lottery-item {
            display: inline-flex;
            align-items: center;
            padding: 0 20px;
            color: #B7BDC6;
            font-size: 13px;
        }
        .lottery-item span {
            color: #0ECB81;
            font-weight: 700;
            margin: 0 5px;
        }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .provider-block {
            background: linear-gradient(135deg, #15191E 0%, #1E2329 100%);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: #D4AF37;
            border: 1px solid #2B3139;
        }
        .reviews-section {
            padding: 0 15px;
            margin: 20px 0;
        }
        .review-card {
            background: #15191E;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid #2B3139;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 30px;
            color: #D4AF37;
        }
        .rating {
            color: #FFD700;
            font-size: 12px;
        }
        .faq-section {
            padding: 0 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: #1E2329;
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 16px;
            color: #D4AF37;
            margin-bottom: 8px;
        }
        .faq-item p {
            color: #B7BDC6;
            font-size: 14px;
        }
        .security-section {
            background: #0B0E11;
            padding: 20px 15px;
            text-align: center;
            border-top: 1px solid #2B3139;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .security-icons i {
            font-size: 30px;
            color: #5E6673;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #15191E;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #2B3139;
            z-index: 1001;
        }
        .navigator a {
            color: #B7BDC6;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
        }
        .navigator a i {
            font-size: 18px;
            margin-bottom: 4px;
        }
        footer {
            background: #0B0E11;
            padding: 30px 15px 100px;
            border-top: 1px solid #2B3139;
        }
        .footer-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 30px;
        }
        .footer-contact a {
            color: #D4AF37;
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #B7BDC6;
            text-decoration: none;
            font-size: 14px;
        }
        .footer-bottom {
            text-align: center;
            color: #5E6673;
            font-size: 12px;
        }