:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --highlight: #FFC107;
            --bg-main: #0F0F1A;
            --bg-surface: #1A1A2E;
            --bg-elevated: #252545;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #707070;
            --success: #28A745;
            --error: #DC3545;
            --border-light: #30305A;
            --border-strong: #FFD700;
            --font-primary: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            --font-secondary: '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;
            padding-bottom: 80px;
        }
        header {
            background-color: var(--bg-surface);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--border-strong);
        }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 50%; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 8px; 
            cursor: pointer; 
            border: none; 
            font-weight: 600; 
            font-family: var(--font-secondary);
            transition: 0.3s;
        }
        .btn-login { background: var(--bg-elevated); color: white; border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--bg-main); }
        .btn-large { 
            display: block; 
            width: 100%; 
            max-width: 400px; 
            margin: 20px auto; 
            padding: 15px; 
            font-size: 20px; 
            text-align: center; 
            background: linear-gradient(45deg, var(--primary), var(--highlight)); 
            color: black; 
            text-decoration: none; 
            border-radius: 50px; 
            font-weight: bold; 
        }
        main { max-width: 1000px; margin: 0 auto; padding: 0 15px; }
        .banner-container { width: 100%; margin-bottom: 20px; }
        .banner-container img { 
            width: 100%; 
            aspect-ratio: 2/1; 
            object-fit: cover; 
            border-radius: 15px; 
            cursor: pointer; 
        }
        .reward-section { 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 20px; 
            text-align: center; 
            border: 1px solid var(--border-light);
            margin-bottom: 30px;
        }
        .reward-section h2 { color: var(--primary); margin-bottom: 15px; }
        .reward-section p { color: var(--text-secondary); margin-bottom: 20px; }
        .intro-card { 
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated)); 
            padding: 30px; 
            border-radius: 20px; 
            text-align: center; 
            border-left: 5px solid var(--primary); 
            margin-bottom: 30px; 
        }
        .intro-card h1 { color: var(--primary); font-size: 36px; margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-title { 
            font-size: 24px; 
            color: var(--primary); 
            margin: 30px 0 20px; 
            text-align: center; 
            border-bottom: 2px solid var(--border-light); 
            padding-bottom: 10px; 
        }
        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 30px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            text-decoration: none; 
            transition: 0.3s; 
            border: 1px solid var(--border-light); 
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { 
            width: 100%; 
            aspect-ratio: 1/1; 
            object-fit: cover; 
        }
        .game-card h3 { 
            padding: 12px; 
            font-size: 16px; 
            color: var(--text-primary); 
            text-align: center; 
            background: var(--bg-elevated); 
        }
        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .payment-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 12px; 
            text-align: center; 
            font-size: 12px; 
            color: var(--text-secondary); 
            border: 1px solid var(--border-light); 
        }
        .payment-item i { 
            display: block; 
            font-size: 24px; 
            color: var(--primary); 
            margin-bottom: 8px; 
        }
        .guide-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 30px; 
        }
        .guide-item { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid var(--border-light); 
        }
        .guide-item h3 { color: var(--highlight); margin-bottom: 10px; }
        .guide-item p { color: var(--text-secondary); font-size: 14px; }
        .review-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 30px; 
        }
        .review-card { 
            background: var(--bg-elevated); 
            padding: 20px; 
            border-radius: 15px; 
            position: relative; 
        }
        .user-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-info i { font-size: 30px; color: var(--primary); }
        .user-info span { font-weight: bold; }
        .stars { color: var(--highlight); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); display: block; margin-top: 10px; }
        .lottery-table { 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            margin-bottom: 30px; 
        }
        .lottery-table th, .lottery-table td { 
            padding: 12px; 
            text-align: center; 
            border-bottom: 1px solid var(--border-light); 
        }
        .lottery-table th { background: var(--bg-elevated); color: var(--primary); }
        .win-amount { color: var(--success); font-weight: bold; }
        .provider-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .provider-item { 
            background: linear-gradient(45deg, #252545, #1A1A2E); 
            padding: 15px; 
            text-align: center; 
            border-radius: 10px; 
            border: 1px solid var(--primary); 
            font-weight: bold; 
            color: var(--primary); 
        }
        .faq-section { margin-bottom: 30px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 10px; 
            border: 1px solid var(--border-light); 
            overflow: hidden; 
        }
        .faq-question { 
            padding: 15px; 
            cursor: pointer; 
            font-weight: bold; 
            color: var(--primary); 
            background: var(--bg-elevated); 
        }
        .faq-answer { padding: 15px; color: var(--text-secondary); line-height: 1.6; }
        .security-section { 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 20px; 
            text-align: center; 
            border: 2px dashed var(--primary); 
            margin-bottom: 30px; 
        }
        .security-grid { 
            display: flex; 
            justify-content: center; 
            flex-wrap: wrap; 
            gap: 20px; 
            margin-bottom: 20px; 
        }
        .security-badge { color: var(--primary); font-size: 14px; }
        .security-badge i { display: block; font-size: 30px; margin-bottom: 5px; }
        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-surface); 
            display: flex; 
            justify-content: space-around; 
            padding: 12px 0; 
            border-top: 2px solid var(--border-strong); 
            z-index: 2000; 
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            text-align: center; 
            font-size: 12px; 
            font-family: var(--font-secondary); 
        }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover { color: var(--primary); }
        footer { 
            background: var(--bg-surface); 
            padding: 40px 20px 100px; 
            border-top: 1px solid var(--border-light); 
            text-align: center; 
        }
        .footer-contact { 
            display: flex; 
            justify-content: center; 
            gap: 15px; 
            flex-wrap: wrap; 
            margin-bottom: 30px; 
        }
        .footer-contact a { color: var(--primary); 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 30px; 
        }
        .footer-links a { 
            color: var(--text-secondary); 
            text-decoration: none; 
            font-size: 13px; 
            display: block; 
            padding: 5px 0; 
        }
        .copyright { color: var(--text-muted); font-size: 12px; }
        @media (max-width: 600px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }