:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --highlight: #FFFFFF;
            --bg-main: #0B0D17;
            --bg-surface: #1A1D29;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --grad-start: #1a1d29;
            --grad-end: #0b0d17;
            --success: #4CAF50;
            --error: #F44336;
            --warning: #FF9800;
            --info: #2196F3;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #6B7280;
            --on-brand: #0B0D17;
            --border-light: #2D3142;
            --border-medium: #3F445E;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Hind Siliguri', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-img { width: 25px; height: 25px; }
        .logo-text { font-size: 16px; font-weight: normal; }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            border: none;
            transition: 0.3s;
            font-family: 'Hind Siliguri', sans-serif;
        }
        .btn-login { background: var(--border-medium); color: var(--text-primary); }
        .btn-register { background: var(--primary); color: var(--on-brand); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        main { padding-bottom: 80px; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            display: block;
            object-fit: cover;
        }
        .jackpot-section {
            background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
            padding: 30px 20px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
        }
        .jackpot-label { color: var(--primary); font-size: 18px; margin-bottom: 10px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: bold;
            color: var(--highlight);
            text-shadow: 0 0 10px var(--primary);
            font-family: 'Roboto', sans-serif;
        }

        .intro-section { padding: 40px 20px; text-align: center; max-width: 1000px; margin: 0 auto; }
        .intro-section h1 { font-size: 28px; color: var(--primary); margin-bottom: 20px; line-height: 1.3; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; }

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

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 20px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border-light);
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--primary); transform: scale(1.02); }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 12px;
            font-size: 14px;
            text-align: center;
            color: var(--text-primary);
        }

        .article-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0 20px;
        }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border-light);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { font-size: 16px; color: var(--primary); 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; }

        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 0 20px;
            margin: 30px 0;
        }
        .pay-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 10px;
            text-align: center;
            font-size: 12px;
            border: 1px solid var(--border-light);
        }
        .pay-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 8px; }

        .lottery-container {
            background: var(--bg-surface);
            height: 200px;
            overflow: hidden;
            position: relative;
            margin: 0 20px;
            border-radius: 15px;
            border: 1px solid var(--border-light);
        }
        .lottery-list {
            position: absolute;
            width: 100%;
            animation: scrollUp 20s linear infinite;
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 20px;
            border-bottom: 1px solid var(--border-light);
            font-size: 13px;
        }
        @keyframes scrollUp {
            0% { top: 0; }
            100% { top: -100%; }
        }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0 20px;
        }
        .provider-box {
            background: var(--border-medium);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            color: var(--primary);
        }

        .comment-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 0 20px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-light);
        }
        .user-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-info i { font-size: 24px; color: var(--secondary); }
        .user-name { font-weight: bold; font-size: 14px; }
        .user-rating { color: var(--primary); font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 11px; color: var(--text-muted); text-align: right; }

        .faq-section { padding: 0 20px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-light);
            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 {
            padding: 30px 20px;
            text-align: center;
            background: var(--bg-surface);
            margin: 30px 0;
            border-top: 2px solid var(--primary);
        }
        .sec-icon { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .sec-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .age-badge {
            display: inline-block;
            border: 2px solid var(--error);
            color: var(--error);
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 0;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            border-top: 2px solid var(--border-strong);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            text-align: center;
            font-size: 11px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-light);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
        }
        .copyright {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-light);
            padding-top: 20px;
        }