:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --highlight: #FFB800;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2D2D2D;
            --overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #757575;
            --text-inverse: #000000;
            --success: #00C851;
            --warning: #FFB800;
            --error: #FF4444;
            --info: #33B5E5;
            --border-light: #333333;
            --border-medium: #4D4D4D;
            --border-strong: #FFD700;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-accent: 'Poppins', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-primary); line-height: 1.5; }
        header { background-color: var(--bg-surface); 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-light); }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; }
        header strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 5px 15px; border-radius: 5px; cursor: pointer; font-family: var(--font-primary); }
        .btn-reg { background: var(--primary); border: none; color: var(--text-inverse); padding: 5px 15px; border-radius: 5px; cursor: pointer; font-family: var(--font-primary); font-weight: 600; }
        main { padding-bottom: 80px; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .reward-section { background: linear-gradient(45deg, var(--bg-surface), var(--bg-elevated)); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid var(--border-medium); }
        .reward-section h2 { color: var(--primary); margin-bottom: 10px; }
        .reward-section p { color: var(--text-secondary); margin-bottom: 20px; }
        .btn-main-reg { background: var(--accent); color: white; padding: 12px 30px; border-radius: 30px; border: none; font-size: 18px; font-weight: bold; cursor: pointer; box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4); }
        .intro-card { background: var(--bg-surface); margin: 15px; padding: 25px; border-radius: 20px; border-left: 5px solid var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
        .intro-card h1 { font-size: 32px; color: var(--primary); margin-bottom: 15px; }
        .section-title { text-align: center; margin: 30px 0 20px; color: var(--primary); font-size: 24px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-light); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { color: var(--text-primary); font-size: 14px; padding: 10px; text-align: center; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 15px; }
        .pay-item { background: var(--bg-elevated); padding: 15px 5px; border-radius: 10px; text-align: center; color: var(--text-secondary); font-size: 12px; border: 1px solid var(--border-light); }
        .pay-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 8px; }
        .guide-section { padding: 0 15px; margin-top: 30px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-light); }
        .guide-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 18px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; }
        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: 15px; border: 1px solid var(--border-medium); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--primary); }
        .review-user { font-weight: bold; color: var(--text-primary); }
        .stars { color: var(--highlight); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); display: block; margin-top: 10px; }
        .lottery-list { padding: 0 15px; }
        .lottery-item { background: var(--bg-surface); display: flex; justify-content: space-between; align-items: center; padding: 12px; border-radius: 10px; margin-bottom: 8px; border: 1px solid var(--border-light); font-size: 13px; }
        .lottery-item .win-amt { color: var(--primary); font-weight: bold; }
        .provider-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .provider-item { background: var(--bg-elevated); padding: 15px; text-align: center; border-radius: 8px; color: var(--primary); font-weight: bold; border: 1px dashed var(--primary); }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-light); }
        .faq-question { padding: 15px; color: var(--primary); font-weight: 600; cursor: pointer; display: block; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .security-section { margin: 30px 15px; padding: 20px; background: var(--bg-surface); border-radius: 15px; text-align: center; border: 1px solid var(--border-medium); }
        .security-section i { font-size: 30px; color: var(--success); margin-bottom: 10px; }
        .security-section p { font-size: 13px; color: var(--text-secondary); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 2px solid var(--primary); z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: var(--text-primary); }
        footer { background: var(--bg-surface); padding: 30px 15px; border-top: 1px solid var(--border-light); color: var(--text-secondary); font-size: 13px; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--primary); text-decoration: none; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; display: block; margin-bottom: 5px; }
        .footer-copy { text-align: center; color: var(--text-muted); border-top: 1px solid var(--border-light); padding-top: 20px; }