body {
            margin: 0;
            padding: 0;
            background-color: #050505;
            color: #FFFFFF;
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            background-color: #121212;
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #333333;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo-container img {
            width: 25px;
            height: 25px;
        }
        .logo-container strong {
            font-size: 16px;
            font-weight: 400;
            color: #FFD700;
        }
        .header-btns {
            display: flex;
            gap: 10px;
        }
        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login {
            background-color: transparent;
            color: #FFFFFF;
            border: 1px solid #FFD700;
        }
        .btn-register {
            background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            color: #050505;
        }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            overflow: hidden;
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            background: #1E1E1E;
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #FFD700;
        }
        .jackpot-label {
            color: #FFD700;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        #jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: #FFFFFF;
            font-family: monospace;
        }
        .intro-section {
            padding: 20px 15px;
            text-align: center;
        }
        .intro-section h1 {
            font-size: 32px;
            color: #FFD700;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .intro-section p {
            font-size: 16px;
            color: #BDBDBD;
        }
        .section-title {
            padding: 0 15px;
            margin-top: 25px;
            font-size: 24px;
            color: #FFD700;
            border-left: 4px solid #00A86B;
            margin-left: 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background-color: #1E1E1E;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #333333;
            transition: transform 0.2s;
            text-decoration: none;
            color: inherit;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            font-size: 14px;
            padding: 10px;
            text-align: center;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .article-card {
            display: flex;
            background: #121212;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #222222;
            text-decoration: none;
        }
        .article-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }
        .article-content {
            padding: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .article-content h3 {
            font-size: 16px;
            color: #FFD700;
            margin: 0 0 5px 0;
            line-height: 1.3;
        }
        .article-content p {
            font-size: 12px;
            color: #BDBDBD;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .payment-section {
            background: #121212;
            padding: 20px 15px;
            margin: 20px 0;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i {
            font-size: 24px;
            color: #FFD700;
            margin-bottom: 5px;
        }
        .payment-item span {
            display: block;
            font-size: 10px;
            color: #BDBDBD;
        }
        .lottery-section {
            background: #1E1E1E;
            margin: 15px;
            border-radius: 12px;
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 1px solid #333333;
        }
        .lottery-track {
            display: flex;
            flex-direction: column;
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 12px 15px;
            border-bottom: 1px solid #222222;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .lottery-info div:first-child {
            font-weight: 600;
            color: #FFFFFF;
            font-size: 14px;
        }
        .lottery-info div:last-child {
            color: #BDBDBD;
            font-size: 12px;
        }
        .lottery-amount {
            color: #2ECC71;
            font-weight: 700;
            font-size: 14px;
        }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-block {
            background: #1E1E1E;
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: #FFD700;
            border: 1px solid #333333;
        }
        .reviews-section {
            padding: 15px;
        }
        .review-card {
            background: #121212;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid #222222;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 24px;
            color: #616161;
        }
        .stars {
            color: #FFD700;
            font-size: 12px;
        }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: #1E1E1E;
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 16px;
            color: #FFD700;
            margin-bottom: 10px;
        }
        .faq-item p {
            font-size: 14px;
            color: #BDBDBD;
            margin: 0;
        }
        .security-section {
            padding: 20px 15px;
            background: #121212;
            text-align: center;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: #FFD700;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #121212;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333333;
            z-index: 1001;
        }
        .nav-item {
            text-align: center;
            text-decoration: none;
            color: #BDBDBD;
            font-size: 12px;
        }
        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 3px;
        }
        .nav-item.active {
            color: #FFD700;
        }
        footer {
            padding: 30px 15px 100px 15px;
            background: #050505;
            border-top: 1px solid #333333;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #BDBDBD;
            text-decoration: none;
            font-size: 14px;
        }
        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: #616161;
            border-top: 1px solid #222222;
            padding-top: 20px;
        }