:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #00FF41;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-variant: #262626;
            --bg-nav: #050505;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-contrast: #000000;
            --success: #28A745;
            --error: #DC3545;
            --border-default: #404040;
            --font-main: 'Hind Siliguri', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-nav);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-contrast); }
        .btn-register:hover { background: var(--primary-hover); }
        
        main { max-width: 800px; margin: 0 auto; padding: 15px; }
        
        .banner { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(135deg, #1a1a1a, #262626);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--secondary); font-family: 'system-ui'; }

        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary); margin-bottom: 25px; }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }

        .section-title { font-size: 18px; color: var(--primary); margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
        
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--bg-variant); padding: 10px; border-radius: 8px; text-align: center; }
        .payment-item i { font-size: 20px; color: var(--primary); display: block; margin-bottom: 5px; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }

        .guide-container { margin-bottom: 25px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-card h3 { font-size: 16px; color: var(--secondary); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }

        .lottery-ticker { background: var(--bg-surface); border-radius: 10px; padding: 10px; height: 200px; overflow: hidden; position: relative; border: 1px solid var(--border-default); }
        .lottery-list { animation: scrollList 30s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 8px; border-bottom: 1px solid var(--bg-variant); display: flex; justify-content: space-between; font-size: 12px; }
        .lottery-user { color: var(--primary); }
        .lottery-win { color: var(--secondary); font-weight: 700; }

        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: linear-gradient(45deg, #262626, #1a1a1a); padding: 12px; border-radius: 8px; text-align: center; color: var(--primary); font-weight: 600; border: 1px solid var(--border-default); }

        .review-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-info h4 { font-size: 14px; color: var(--text-primary); }
        .review-stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 5px; text-align: right; }

        .faq-container { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; font-size: 14px; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); }

        .security-section { background: var(--bg-variant); padding: 20px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .age-badge { display: inline-block; border: 2px solid var(--error); color: var(--error); padding: 2px 8px; border-radius: 50%; font-weight: 700; font-size: 14px; margin-bottom: 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: var(--bg-nav);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; font-weight: 500; }

        footer { background: var(--bg-nav); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--bg-variant); padding-top: 20px; }