body {
            background-color: #01080e;
            color: #ffffff;
            font-family: 'Hind Siliguri', 'Siyam Rupali', 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        header {
            background-color: #0a1219;
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #1e2b38;
        }
        .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;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            border: none;
            border-radius: 6px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s ease;
        }
        .btn-login {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #ffd700;
        }
        .btn-register {
            background-color: #ffd700;
            color: #000000;
        }
        .hero-banner {
            width: 100%;
            display: block;
            cursor: pointer;
            aspect-ratio: 2 / 1;
            overflow: hidden;
        }
        .hero-banner img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .jackpot-container {
            background: linear-gradient(180deg, #0a1219 0%, #121d27 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #d4af37;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label {
            color: #ffd700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            color: #ffd700;
            font-size: 28px;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section {
            padding: 20px 15px;
            text-align: center;
        }
        .intro-section h1 {
            font-size: 22px;
            color: #ffd700;
            margin-bottom: 15px;
        }
        .intro-section p {
            font-size: 14px;
            color: #b0bec5;
        }
        .section-title {
            padding: 0 15px;
            margin: 20px 0 15px;
            font-size: 18px;
            border-left: 4px solid #ffd700;
            margin-left: 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: #121d27;
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            color: #ffffff;
            border: 1px solid #1e2b38;
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            font-size: 14px;
            padding: 8px;
            margin: 0;
            text-align: center;
        }
        .article-list {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .article-item {
            background-color: #0a1219;
            border-radius: 10px;
            display: flex;
            gap: 12px;
            padding: 10px;
            border: 1px solid #1e2b38;
            text-decoration: none;
            color: inherit;
        }
        .article-item img {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
        }
        .article-content h3 {
            font-size: 14px;
            margin: 0 0 5px 0;
            color: #ffd700;
        }
        .article-content p {
            font-size: 12px;
            color: #b0bec5;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 0 15px;
        }
        .payment-item {
            background-color: #121d27;
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
        }
        .payment-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 5px;
            color: #ffd700;
        }
        .winners-list {
            background-color: #0a1219;
            margin: 0 15px;
            padding: 10px;
            border-radius: 10px;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .winner-row {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            padding: 8px 0;
            border-bottom: 1px solid #1e2b38;
        }
        .winner-row span:nth-child(2) {
            color: #00c853;
            font-weight: 600;
        }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .provider-block {
            background-color: #121d27;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            border: 1px solid #1e2b38;
            font-weight: 600;
            color: #b0bec5;
        }
        .review-list {
            padding: 0 15px;
        }
        .review-card {
            background-color: #121d27;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid #1e2b38;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            color: #ffd700;
            font-size: 12px;
        }
        .review-text {
            font-size: 13px;
            color: #b0bec5;
        }
        .faq-section {
            padding: 0 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background-color: #0a1219;
            border-radius: 8px;
            padding: 15px;
            border: 1px solid #1e2b38;
        }
        .faq-item h3 {
            font-size: 15px;
            color: #ffd700;
            margin: 0 0 10px 0;
        }
        .faq-item p {
            font-size: 13px;
            color: #b0bec5;
            margin: 0;
        }
        .security-section {
            margin: 20px 15px;
            padding: 20px;
            background-color: #121d27;
            border-radius: 12px;
            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;
            right: 0;
            background-color: #0a1219;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #1e2b38;
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            color: #b0bec5;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
        }
        .nav-item i {
            font-size: 18px;
            margin-bottom: 4px;
        }
        footer {
            padding: 30px 15px 100px;
            background-color: #01080e;
            text-align: center;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #78909c;
            text-decoration: none;
            font-size: 13px;
        }
        .footer-bottom {
            font-size: 12px;
            color: #78909c;
            border-top: 1px solid #1e2b38;
            padding-top: 20px;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .scrolling-content {
            animation: scrollUp 20s linear infinite;
        }