:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --highlight: #FFEA00;
            --main-bg: #0B0B0B;
            --surface: #1A1A1A;
            --overlay: rgba(0, 0, 0, 0.8);
            --alt-bg: #121212;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverse: #000000;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-def: #333333;
            --border-strong: #444444;
            --brand-border: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', 'Roboto', Arial, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--surface);
            border-bottom: 2px solid var(--brand-border);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-primary); }
        .header-logo img { width: 25px; height: 25px; border-radius: 50%; }
        .header-logo strong { font-size: 16px; font-weight: normal; }
        .header-actions { display: flex; gap: 10px; }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); padding: 5px 15px; border-radius: 5px; cursor: pointer; font-family: inherit; }
        .btn-register { background: var(--primary); color: var(--text-inverse); border: none; padding: 5px 15px; border-radius: 5px; cursor: pointer; font-family: inherit; font-weight: 600; }
        main { max-width: 1000px; margin: 0 auto; padding: 20px 15px; }
        .banner-wrap { width: 100%; margin-bottom: 20px; }
        .banner-wrap img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 15px; cursor: pointer; border: 2px solid var(--border-strong); }
        .reward-section {
            background: linear-gradient(135deg, var(--surface), var(--alt-bg));
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--brand-border);
            margin-bottom: 30px;
        }
        .reward-section h2 { color: var(--primary); margin-bottom: 15px; font-size: 24px; }
        .reward-section p { color: var(--text-secondary); margin-bottom: 20px; }
        .btn-big-reg { background: var(--accent); color: white; border: none; padding: 15px 30px; font-size: 18px; font-weight: bold; border-radius: 50px; cursor: pointer; box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4); }
        .intro-card {
            background: var(--surface);
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 30px;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { font-size: 32px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-title { font-size: 22px; color: var(--primary); margin: 30px 0 20px; text-align: center; border-bottom: 1px solid var(--border-def); padding-bottom: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .game-card { 
            background: var(--surface); 
            border-radius: 15px; 
            overflow: hidden; 
            text-decoration: none; 
            transition: transform 0.3s; 
            border: 1px solid var(--border-def); 
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { color: var(--text-primary); font-size: 16px; text-align: center; padding: 12px; }
        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .payment-item { 
            background: var(--surface); 
            padding: 15px; 
            text-align: center; 
            border-radius: 10px; 
            border: 1px solid var(--border-def); 
            color: var(--text-secondary); 
            font-size: 14px; 
        }
        .payment-item i { display: block; font-size: 20px; margin-bottom: 8px; color: var(--primary); }
        .guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .guide-item { background: var(--alt-bg); padding: 20px; border-radius: 15px; border: 1px solid var(--border-strong); }
        .guide-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-item p { color: var(--text-muted); font-size: 14px; }
        .review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .review-card { background: var(--surface); padding: 15px; border-radius: 15px; border: 1px solid var(--border-def); }
        .rev-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .rev-header i { color: var(--primary); font-size: 24px; }
        .rev-name { font-weight: bold; font-size: 14px; }
        .rev-rating { color: var(--highlight); font-size: 12px; }
        .rev-text { color: var(--text-secondary); font-size: 13px; margin-bottom: 10px; }
        .rev-date { color: var(--text-muted); font-size: 11px; text-align: right; }
        .lottery-list { background: var(--surface); border-radius: 15px; overflow: hidden; }
        .lottery-item { 
            display: flex; 
            justify-content: space-between; 
            padding: 12px 20px; 
            border-bottom: 1px solid var(--border-def); 
            font-size: 14px; 
        }
        .lottery-item:last-child { border-bottom: none; }
        .win-amt { color: var(--primary); font-weight: bold; }
        .provider-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
        }
        .provider-box { 
            background: linear-gradient(45deg, #222, #333); 
            padding: 15px; 
            text-align: center; 
            border-radius: 10px; 
            font-weight: bold; 
            color: var(--primary); 
            border: 1px solid var(--border-strong); 
        }
        .faq-section { margin-top: 30px; }
        .faq-item { background: var(--surface); padding: 15px; border-radius: 10px; margin-bottom: 10px; border: 1px solid var(--border-def); }
        .faq-item h3 { color: var(--primary); font-size: 16px; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }
        .security-section { 
            background: var(--alt-bg); 
            padding: 20px; 
            border-radius: 15px; 
            text-align: center; 
            margin-top: 30px; 
            border: 1px dashed var(--primary); 
        }
        .security-section p { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 24px; color: var(--primary); }
        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--surface); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0; 
            border-top: 2px solid var(--primary); 
            z-index: 2000; 
        }
        .nav-link { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 12px; display: flex; flex-direction: column; gap: 5px; }
        .nav-link i { font-size: 20px; color: var(--primary); }
        footer { 
            background: var(--surface); 
            padding: 30px 15px; 
            border-top: 1px solid var(--border-strong); 
            margin-bottom: 70px; 
            text-align: center; 
        }
        .footer-contact { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; align-items: center; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            text-align: left; 
            max-width: 600px; 
            margin: 0 auto 20px; 
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-def); padding-top: 15px; }
        @media (max-width: 600px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .guide-grid { grid-template-columns: 1fr; }
            .review-grid { grid-template-columns: 1fr; }
        }