* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: #0A0B0D;
            color: #FFFFFF;
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: #16181C;
            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: 10px;
        }
        .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: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login {
            background-color: transparent;
            color: #FFFFFF;
            border: 1px solid #FFD700;
        }
        .btn-register {
            background-color: #FFD700;
            color: #000000;
        }
        .btn-register:hover {
            background-color: #FFC107;
        }
        main {
            padding-bottom: 80px;
        }
        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: linear-gradient(180deg, #1F2228 0%, #16181C 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #FFD700;
        }
        .jackpot-title {
            color: #B0B3B8;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            color: #FFD700;
            font-size: 30px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
        }
        .intro-card {
            background-color: #16181C;
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            border: 1px solid #2F3336;
        }
        .intro-card h1 {
            font-size: 20px;
            color: #FFD700;
            margin-bottom: 10px;
        }
        .intro-card p {
            font-size: 14px;
            color: #B0B3B8;
        }
        .section-title {
            margin: 20px 15px 10px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-title::before {
            content: '';
            width: 4px;
            height: 18px;
            background-color: #FFD700;
            border-radius: 2px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: #16181C;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid #2F3336;
            transition: transform 0.2s;
        }
        .game-card:active {
            transform: scale(0.95);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 8px;
            font-size: 14px;
            color: #FFFFFF;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background-color: #16181C;
            margin: 15px;
            border-radius: 15px;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            color: #B0B3B8;
            font-size: 10px;
        }
        .payment-item i {
            font-size: 20px;
            color: #FFD700;
        }
        .guidelines-section, .faq-section {
            padding: 0 15px;
            margin-top: 20px;
        }
        .guide-card, .faq-item {
            background-color: #16181C;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
            border: 1px solid #2F3336;
        }
        .guide-card h2, .faq-item h2 {
            font-size: 16px;
            color: #FFD700;
            margin-bottom: 8px;
        }
        .guide-card p, .faq-item p {
            font-size: 13px;
            color: #B0B3B8;
            text-align: justify;
        }
        .lottery-marquee {
            background-color: #1F2228;
            margin: 15px 0;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }
        .lottery-item {
            display: inline-block;
            margin-right: 30px;
            font-size: 12px;
            color: #FFFFFF;
        }
        .lottery-item span {
            color: #00E676;
            font-weight: 600;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .provider-item {
            background-color: #1F2228;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            color: #FFD700;
            font-weight: 600;
            border: 1px solid #2F3336;
        }
        .reviews-section {
            padding: 0 15px;
        }
        .review-card {
            background-color: #16181C;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 4px solid #FFD700;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 24px;
            color: #B0B3B8;
        }
        .review-info h3 {
            font-size: 14px;
            color: #FFFFFF;
        }
        .stars {
            color: #FFAB00;
            font-size: 12px;
        }
        .review-date {
            font-size: 11px;
            color: #65676B;
            float: right;
        }
        .security-section {
            background-color: #121418;
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed #2F3336;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: #00C853;
        }
        .security-text {
            font-size: 12px;
            color: #B0B3B8;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #16181C;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #2F3336;
            z-index: 1000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #B0B3B8;
            font-size: 12px;
        }
        .nav-item i {
            font-size: 18px;
            margin-bottom: 4px;
        }
        .nav-item:active {
            color: #FFD700;
        }
        footer {
            background-color: #121418;
            padding: 30px 15px 100px;
            border-top: 1px solid #2F3336;
        }
        .footer-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 25px;
        }
        .footer-contact a {
            color: #B0B3B8;
            text-decoration: none;
            font-size: 13px;
            border: 1px solid #2F3336;
            padding: 5px 12px;
            border-radius: 20px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #65676B;
            text-decoration: none;
            font-size: 13px;
        }
        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: #65676B;
            border-top: 1px solid #1F2228;
            padding-top: 20px;
        }