* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: #0B0E11;
            color: #FFFFFF;
            font-family: 'Hind Siliguri', 'Noto Sans Bengali', Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            display: block;
        }
        header {
            background-color: #151A21;
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2D3436;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .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 15px;
            border-radius: 4px;
            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: #000000;
        }
        main {
            padding-bottom: 80px;
        }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background-color: #1E232B;
            margin: 15px;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #C5A021;
        }
        .jackpot-title {
            color: #FFD700;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        #jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: #FFFFFF;
            font-family: 'Arial', sans-serif;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section {
            padding: 20px 15px;
            text-align: center;
        }
        .intro-section h1 {
            font-size: 24px;
            color: #FFD700;
            margin-bottom: 10px;
        }
        .intro-section p {
            font-size: 14px;
            color: #B0B3B8;
        }
        .section-title {
            padding: 0 15px;
            margin: 20px 0 10px;
            font-size: 20px;
            color: #FFD700;
            border-left: 4px solid #E61E26;
            margin-left: 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: #151A21;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #2D3436;
            transition: transform 0.2s;
        }
        .game-card:active {
            transform: scale(0.98);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
        }
        .game-card h3 {
            padding: 8px;
            font-size: 14px;
            text-align: center;
            color: #FFFFFF;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list {
            padding: 0 15px;
        }
        .article-card {
            display: flex;
            background-color: #1A1A1A;
            margin-bottom: 12px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #1F2633;
        }
        .article-img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }
        .article-info {
            padding: 10px;
            flex: 1;
        }
        .article-info h2 {
            font-size: 16px;
            margin-bottom: 5px;
            color: #FFD700;
        }
        .article-info p {
            font-size: 12px;
            color: #B0B3B8;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .payment-section {
            background-color: #151A21;
            padding: 20px 15px;
            margin-top: 20px;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i {
            font-size: 24px;
            color: #B0B3B8;
            margin-bottom: 5px;
        }
        .payment-item span {
            display: block;
            font-size: 10px;
            color: #65676B;
        }
        .lottery-container {
            background-color: #1A1A1A;
            margin: 15px;
            border-radius: 8px;
            height: 200px;
            overflow: hidden;
            border: 1px solid #2D3436;
            position: relative;
        }
        .lottery-scroll {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 10px 15px;
            border-bottom: 1px solid #2D3436;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
        }
        .user-name { color: #FFD700; }
        .win-amount { color: #00C853; font-weight: 700; }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .provider-block {
            background-color: #1E232B;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #2D3436;
            color: #FFD700;
            font-weight: 600;
        }
        .review-section {
            padding: 0 15px;
        }
        .review-card {
            background-color: #151A21;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid #1F2633;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            background-color: #1E232B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFD700;
        }
        .review-stars { color: #F1C40F; font-size: 12px; }
        .review-content { font-size: 13px; color: #B0B3B8; margin: 10px 0; }
        .review-date { font-size: 11px; color: #65676B; }
        .faq-section { padding: 0 15px; }
        .faq-item {
            background-color: #1A1A1A;
            margin-bottom: 10px;
            border-radius: 8px;
            border: 1px solid #2D3436;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: #FFD700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
        }
        .faq-answer {
            padding: 0 15px 15px;
            font-size: 14px;
            color: #B0B3B8;
        }
        .safety-section {
            background-color: #151A21;
            margin: 20px 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #E61E26;
        }
        .safety-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: #00C853;
        }
        .safety-text { font-size: 12px; color: #B0B3B8; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #151A21;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #2D3436;
            z-index: 1000;
        }
        .nav-item {
            text-align: center;
            color: #B0B3B8;
            font-size: 10px;
        }
        .nav-item i { font-size: 20px; margin-bottom: 4px; display: block; }
        .nav-item.active { color: #FFD700; }
        footer {
            background-color: #0B0E11;
            padding: 30px 15px 100px;
            border-top: 1px solid #2D3436;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a { font-size: 13px; color: #B0B3B8; }
        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: #65676B;
            border-top: 1px solid #1F2633;
            padding-top: 20px;
        }