:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-surface: #262626;
            --brand-primary: #FFD700;
            --brand-secondary: #B8860B;
            --brand-accent: #FF4500;
            --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --border-default: #333333;
            --border-active: #FFD700;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.5;
            padding-bottom: 70px;
        }

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

        .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;
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: 0.3s;
        }

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

        .btn-register {
            background: var(--gold-gradient);
            color: #000;
        }

        .hero-banner {
            width: 100%;
            cursor: pointer;
        }

        .hero-banner img {
            width: 100%;
            aspect-ratio: 2 / 1;
            display: block;
            object-fit: cover;
        }

        .jackpot-container {
            background: var(--bg-secondary);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
        }

        .jackpot-title {
            color: var(--brand-primary);
            font-size: 18px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: sans-serif;
        }

        .intro-section {
            padding: 20px;
        }

        .intro-section h1 {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 10px;
        }

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

        .card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: 0.3s;
            text-decoration: none;
            display: block;
        }

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

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

        .article-list {
            padding: 15px;
        }

        .article-card {
            display: flex;
            gap: 12px;
            background: var(--bg-secondary);
            margin-bottom: 12px;
            border-radius: 10px;
            padding: 10px;
            border: 1px solid var(--border-default);
        }

        .article-card img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
        }

        .article-info h2 {
            font-size: 16px;
            margin: 0 0 5px 0;
            color: var(--brand-primary);
        }

        .article-info p {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0;
        }

        .payment-section {
            padding: 20px;
            background: var(--bg-secondary);
            margin: 15px;
            border-radius: 12px;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .payment-item {
            background: var(--bg-surface);
            padding: 12px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        .payment-item i {
            color: var(--brand-primary);
            font-size: 20px;
        }

        .lottery-wrapper {
            background: var(--bg-secondary);
            margin: 15px;
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            position: relative;
        }

        .lottery-scroll {
            animation: scrollUp 20s linear infinite;
        }

        .lottery-item {
            padding: 10px 20px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }

        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .providers-section {
            padding: 15px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .provider-block {
            background: var(--bg-surface);
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--brand-primary);
        }

        .review-section {
            padding: 15px;
        }

        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
            border: 1px solid var(--border-default);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .user-meta {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .rating {
            color: #FFC107;
        }

        .faq-section {
            padding: 20px;
        }

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

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

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

        .security-section {
            padding: 20px;
            text-align: center;
            background: var(--bg-secondary);
            margin: 15px;
            border-radius: 12px;
        }

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

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

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

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

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

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

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