:root {
            --primary-bg: #0A0A0A;
            --secondary-bg: #141414;
            --surface-bg: #1F1F1F;
            --brand-primary: #FFD700;
            --brand-secondary: #FFB800;
            --brand-accent: #FF4D4D;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #BDBDBD;
            --text-muted: #757575;
            --border-subtle: #2C2C2C;
            --border-default: #3D3D3D;
            --border-active: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--primary-bg);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background-color: var(--secondary-bg);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            font-family: 'Hind Siliguri', sans-serif;
        }
        .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%; aspect-ratio: 2 / 1; cursor: pointer; border-radius: 12px; overflow: hidden; margin-top: 10px; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: var(--surface-bg);
            margin: 20px 0;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-title { color: var(--brand-secondary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Roboto', sans-serif;
        }
        .intro-section { padding: 20px 0; text-align: center; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 14px; }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 20px 0;
        }
        .game-card {
            background: var(--surface-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }
        .game-card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: var(--text-primary); }
        .article-list { margin: 30px 0; display: flex; flex-direction: column; gap: 15px; }
        .article-item {
            display: flex;
            background: var(--secondary-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .article-img { width: 100px; height: 100px; flex-shrink: 0; }
        .article-img img { width: 100%; height: 100%; object-fit: cover; }
        .article-info { padding: 10px; }
        .article-info h2 { font-size: 16px; margin-bottom: 5px; color: var(--brand-primary); }
        .article-info p { font-size: 12px; color: var(--text-secondary); line-height: 1.3; }
        .payment-section {
            background: var(--secondary-bg);
            padding: 20px;
            border-radius: 12px;
            margin: 30px 0;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            text-align: center;
        }
        .payment-item { font-size: 24px; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item span { font-size: 10px; }
        .lottery-wrapper {
            background: var(--surface-bg);
            border-radius: 12px;
            margin: 30px 0;
            padding: 15px;
            height: 300px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-subtle);
        }
        .lottery-scroll {
            display: flex;
            flex-direction: column;
            gap: 10px;
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            background: var(--secondary-bg);
            border-radius: 8px;
            font-size: 12px;
        }
        .lottery-item span:first-child { color: var(--brand-primary); }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .provider-block { background: var(--surface-bg); padding: 15px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); }
        .reviews-section { margin: 30px 0; }
        .review-card {
            background: var(--surface-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 4px solid var(--brand-primary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-stars { color: var(--brand-primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin: 30px 0; }
        .faq-item { background: var(--surface-bg); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--brand-primary); border-bottom: 1px solid var(--border-subtle); font-size: 15px; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: var(--secondary-bg);
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid var(--border-subtle);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 30px; margin-bottom: 15px; color: var(--brand-primary); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        footer { background: var(--secondary-bg); padding: 30px 0 100px 0; border-top: 1px solid var(--border-subtle); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--surface-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--brand-primary);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; color: var(--brand-primary); }