@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Tiro+Bangla&display=swap');

        :root {
            --bg-main: #0A0E14;
            --bg-surface: #161B22;
            --bg-elevated: #21262D;
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --emerald: #00875A;
            --accent-red: #E31B23;
            --text-primary: #FFFFFF;
            --text-secondary: #B1B8C0;
            --border-subtle: #30363D;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Tiro Bangla', serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        header {
            background-color: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary-gold);
        }

        .header-right {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 6px 14px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }

        .btn-login {
            background-color: transparent;
            color: var(--primary-gold);
            border: 1px solid var(--primary-gold);
        }

        .btn-register {
            background-color: var(--primary-gold);
            color: var(--bg-main);
        }

        .hero-banner {
            width: 100%;
            cursor: pointer;
            display: block;
            aspect-ratio: 2 / 1;
        }

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-surface) 0%, #1a2129 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-gold);
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        .jackpot-label {
            color: var(--primary-gold-light);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-secondary);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); color: var(--primary-gold-light); }
            100% { transform: scale(1); }
        }

        .intro-section {
            padding: 20px 15px;
        }

        .intro-section h1 {
            font-size: 28px;
            color: var(--primary-gold);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .intro-section p {
            font-size: 16px;
            color: var(--text-secondary);
        }

        .section-title {
            padding: 10px 15px;
            font-size: 22px;
            border-left: 4px solid var(--primary-gold);
            margin: 20px 0 15px 15px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }

        .game-card {
            background-color: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: all 0.3s;
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            text-align: center;
            color: var(--text-primary);
        }

        .article-list {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .article-card {
            display: flex;
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }

        .article-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }

        .article-content {
            padding: 12px;
            flex: 1;
        }

        .article-content h3 {
            font-size: 16px;
            color: var(--primary-gold-light);
            margin-bottom: 5px;
        }

        .article-content p {
            font-size: 13px;
            color: var(--text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .payments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 0 15px;
            margin-bottom: 20px;
        }

        .payment-item {
            background-color: var(--bg-elevated);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
        }

        .payment-item i {
            font-size: 20px;
            color: var(--primary-gold);
            display: block;
            margin-bottom: 5px;
        }

        .lottery-section {
            margin: 20px 15px;
            background-color: var(--bg-surface);
            border-radius: 12px;
            padding: 15px;
            border: 1px solid var(--emerald);
        }

        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed var(--border-subtle);
            font-size: 14px;
        }

        .lottery-user { color: var(--text-secondary); }
        .lottery-win { color: var(--emerald); font-weight: bold; }

        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }

        .provider-block {
            background-color: var(--bg-elevated);
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            font-weight: bold;
        }

        .review-list {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .review-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-header i {
            background-color: var(--bg-elevated);
            padding: 10px;
            border-radius: 50%;
            color: var(--primary-gold);
        }

        .rating {
            color: var(--primary-gold);
            font-size: 12px;
            margin-bottom: 8px;
        }

        .review-date {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 10px;
        }

        .faq-container {
            padding: 0 15px;
        }

        .faq-item {
            margin-bottom: 15px;
            background-color: var(--bg-surface);
            border-radius: 10px;
            padding: 15px;
        }

        .faq-item h3 {
            font-size: 16px;
            color: var(--primary-gold);
            margin-bottom: 8px;
        }

        .faq-item p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .security-section {
            margin: 20px 15px;
            padding: 20px;
            background-color: #0d1117;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-subtle);
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: var(--emerald);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }

        .nav-item {
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
        }

        .nav-item i {
            display: block;
            font-size: 18px;
            margin-bottom: 4px;
        }

        footer {
            padding: 30px 15px 100px;
            background-color: var(--bg-main);
            border-top: 1px solid var(--border-subtle);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-links a {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .footer-bottom {
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .article-list { display: grid; grid-template-columns: 1fr 1fr; }
        }