:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #FF4500;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0A0B0D;
            --bg-surface: #161B22;
            --bg-overlay: #1C2128;
            --text-primary: #FFFFFF;
            --text-secondary: #B1B1B1;
            --text-muted: #767C85;
            --border-default: #2D333B;
            --border-active: #FFD700;
            --radius: 12px;
        }

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

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

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

        .container {
            padding: 0 15px;
            max-width: 600px;
            margin: 0 auto;
        }

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

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

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

        .brand-name {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
        }

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

        .btn-sm {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }

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

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

        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            overflow: hidden;
            border-radius: var(--radius);
            margin-top: 10px;
        }

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

        .jackpot-section {
            background: var(--bg-surface);
            margin: 20px 0;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--secondary);
        }

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

        .jackpot-amount {
            font-family: 'Inter', sans-serif;
            font-size: 30px;
            font-weight: 700;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

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

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

        .grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 20px 0;
        }

        .card {
            background: var(--bg-surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }

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

        .card-body {
            padding: 10px;
            text-align: center;
        }

        .card-body h3 {
            font-size: 14px;
            color: var(--text-primary);
        }

        .article-list {
            margin: 30px 0;
        }

        .article-card {
            display: flex;
            gap: 15px;
            background: var(--bg-surface);
            padding: 12px;
            border-radius: var(--radius);
            margin-bottom: 15px;
            align-items: center;
        }

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

        .article-info h2, .article-info h3 {
            font-size: 16px;
            margin-bottom: 5px;
        }

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

        .payment-section {
            background: var(--bg-overlay);
            padding: 20px;
            border-radius: var(--radius);
            margin: 20px 0;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }

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

        .payment-item span {
            font-size: 10px;
            display: block;
            color: var(--text-secondary);
        }

        .winners-scroll {
            background: var(--bg-surface);
            border-radius: var(--radius);
            height: 250px;
            overflow: hidden;
            position: relative;
            margin: 20px 0;
            padding: 10px;
            border-left: 3px solid var(--primary);
        }

        .winners-track {
            display: flex;
            flex-direction: column;
            animation: scrollUp 20s linear infinite;
        }

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

        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }

        .winner-name { color: var(--primary); }
        .winner-amount { color: #28A745; font-weight: bold; }

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

        .provider-box {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-default);
            font-weight: 600;
        }

        .review-card {
            background: var(--bg-overlay);
            padding: 20px;
            border-radius: var(--radius);
            margin-bottom: 15px;
        }

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

        .review-header i {
            font-size: 30px;
            color: var(--text-muted);
        }

        .review-rating {
            color: var(--primary);
            margin: 5px 0;
        }

        .faq-section {
            margin: 30px 0;
        }

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

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

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

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

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

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            color: var(--text-secondary);
        }

        .nav-item i {
            font-size: 20px;
        }

        .nav-item.active {
            color: var(--primary);
        }

        footer {
            background: var(--bg-overlay);
            padding: 30px 15px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }

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

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

        .copyright {
            font-size: 12px;
            color: var(--text-muted);
        }