:root {
            --bg-primary: #0A0B0C;
            --bg-secondary: #14171A;
            --bg-elevated: #1C1F23;
            --brand-primary: #FFD700;
            --brand-variant: #FDB813;
            --brand-secondary: #00E676;
            --brand-accent: #FF3D00;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --border-default: #2F3336;
            --radius-md: 12px;
            --radius-lg: 20px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        .container { padding: 0 16px; width: 100%; max-width: 600px; margin: 0 auto; }
        header {
            background-color: var(--bg-secondary);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0 16px;
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .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;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background-color: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background-color: var(--brand-primary); color: #000; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            margin-top: 10px;
            cursor: pointer;
            overflow: hidden;
            border-radius: var(--radius-md);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1C1F23 0%, #0A0B0C 100%);
            border: 1px solid var(--brand-primary);
            border-radius: var(--radius-md);
            padding: 20px;
            margin: 20px 0;
            text-align: center;
            position: relative;
        }
        .jackpot-title { color: var(--brand-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-secondary);
            text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
        }
        .intro-section { margin: 30px 0; }
        .intro-section h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 12px; line-height: 1.25; }
        .intro-section p { font-size: 16px; color: var(--text-secondary); text-align: justify; }
        .section-header { margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 20px; font-weight: 600; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card {
            background: var(--bg-elevated);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .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; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 12px; }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 12px; }
        .article-content h3 { font-size: 15px; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 13px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: var(--radius-md);
        }
        .payment-item { text-align: center; font-size: 12px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--brand-primary); margin-bottom: 5px; display: block; }
        .lottery-wrapper { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 15px; height: 250px; overflow: hidden; border: 1px solid var(--border-default); }
        .lottery-scroll { animation: scrollList 20s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 10px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; font-size: 13px; }
        .lottery-item span:last-child { color: var(--brand-secondary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: var(--bg-elevated); padding: 15px; border-radius: 8px; text-align: center; font-weight: 600; color: var(--text-secondary); border: 1px solid var(--border-default); }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: var(--radius-md); margin-bottom: 12px; border-left: 3px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { font-size: 20px; color: var(--text-muted); }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-body { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-item { background: var(--bg-elevated); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; color: var(--brand-primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); }
        .safety-box { background: rgba(0, 230, 118, 0.05); border: 1px dashed var(--brand-secondary); border-radius: var(--radius-md); padding: 20px; text-align: center; margin: 30px 0; }
        .safety-box i { font-size: 30px; color: var(--brand-secondary); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            height: 65px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 12px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-primary); padding: 30px 16px 100px; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); font-size: 14px; text-align: center; }
        .footer-bottom { text-align: center; color: var(--text-muted); font-size: 12px; padding-top: 20px; border-top: 1px solid var(--border-default); }