@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Sans+Bengali:wght@300;400;500;600;700&display=swap');
        body {
            background-color: #0D0D0D;
            color: #FFFFFF;
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: #1A1A1A;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            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;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: #FFD700;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 0.875rem;
        }
        .btn-login {
            background-color: transparent;
            color: #FFFFFF;
            border: 1px solid #FFD700;
        }
        .btn-register {
            background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            color: #0D0D0D;
        }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            background: #1A1A1A;
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #FFD700;
        }
        .jackpot-title {
            color: #FFD700;
            font-size: 1rem;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            font-size: 2rem;
            font-weight: 700;
            color: #00FF41;
            font-family: monospace;
        }
        .intro-section {
            padding: 20px;
            text-align: center;
        }
        .intro-section h1 {
            font-size: 1.5rem;
            color: #FFD700;
            margin-bottom: 15px;
        }
        .intro-section p {
            color: #B0B0B0;
            font-size: 1rem;
        }
        .section-title {
            padding: 0 20px;
            margin: 20px 0 10px;
            font-size: 1.25rem;
            border-left: 4px solid #FFD700;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: #1A1A1A;
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid #222222;
            transition: transform 0.2s;
        }
        .game-card:active {
            transform: scale(0.95);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }
        .game-card h3 {
            padding: 8px;
            margin: 0;
            font-size: 0.875rem;
            text-align: center;
            color: #FFFFFF;
        }
        .article-list {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .article-item {
            background: #1A1A1A;
            border-radius: 12px;
            display: flex;
            gap: 15px;
            padding: 10px;
            text-decoration: none;
            color: inherit;
            border: 1px solid #262626;
        }
        .article-item img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
        }
        .article-content h3 {
            font-size: 0.95rem;
            margin: 0 0 5px;
            color: #FFD700;
        }
        .article-content p {
            font-size: 0.75rem;
            color: #B0B0B0;
            margin: 0;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
        }
        .payment-item {
            background: #262626;
            padding: 15px 5px;
            text-align: center;
            border-radius: 8px;
            font-size: 0.75rem;
        }
        .payment-item i {
            display: block;
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: #FFD700;
        }
        .lottery-section {
            background: #1A1A1A;
            margin: 15px;
            border-radius: 12px;
            padding: 15px;
        }
        .lottery-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #333333;
            font-size: 0.85rem;
        }
        .lottery-user { color: #B0B0B0; }
        .lottery-game { color: #FFFFFF; }
        .lottery-win { color: #00FF41; font-weight: 600; }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-block {
            background: #262626;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-weight: bold;
            color: #B0B0B0;
            border: 1px solid #333333;
        }
        .review-list {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .review-card {
            background: #1A1A1A;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid #262626;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 24px;
            color: #FFD700;
        }
        .review-info h4 {
            margin: 0;
            font-size: 0.9rem;
        }
        .stars {
            color: #FFD700;
            font-size: 0.75rem;
        }
        .review-body {
            font-size: 0.85rem;
            color: #B0B0B0;
        }
        .review-date {
            font-size: 0.7rem;
            color: #707070;
            margin-top: 8px;
            display: block;
        }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: #1A1A1A;
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 1rem;
            color: #FFD700;
            margin: 0 0 10px;
        }
        .faq-item p {
            font-size: 0.875rem;
            color: #B0B0B0;
            margin: 0;
        }
        .security-section {
            padding: 20px;
            text-align: center;
            background: #1A1A1A;
            margin-top: 20px;
        }
        .security-icons {
            font-size: 2rem;
            margin-bottom: 15px;
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #FFD700;
        }
        .security-text {
            font-size: 0.8rem;
            color: #B0B0B0;
            max-width: 300px;
            margin: 0 auto 15px;
        }
        .eighteen-plus {
            display: inline-block;
            border: 2px solid #FF5252;
            color: #FF5252;
            padding: 2px 8px;
            border-radius: 50%;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .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: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: #B0B0B0;
            text-align: center;
            font-size: 0.7rem;
        }
        .nav-item i {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 4px;
        }
        .nav-item.active, .nav-item:hover {
            color: #FFD700;
        }
        footer {
            padding: 30px 20px 100px;
            background: #0D0D0D;
            border-top: 1px solid #222222;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #707070;
            text-decoration: none;
            font-size: 0.8rem;
        }
        .footer-copyright {
            text-align: center;
            font-size: 0.75rem;
            color: #707070;
            line-height: 1.6;
        }
        @keyframes countUp {
            from { opacity: 0.8; }
            to { opacity: 1; transform: scale(1.02); }
        }
        .jackpot-amount {
            animation: countUp 0.5s infinite alternate;
        }