<!DOCTYPE html>
<html lang="bn">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Live Visitor Tracking</title>
    <style>
        body { font-family: Arial, sans-serif; text-align: center; padding: 50px; }
        #counter-box { font-size: 24px; color: #2c3e50; border: 2px solid #3498db; display: inline-block; padding: 20px; border-radius: 10px; }
        .count { font-weight: bold; color: #e74c3c; }
    </style>
</head>
<body>

    <div id="counter-box">
        Ekhon website-e achen: <span class="count" id="visitor-count">1</span> Jon
    </div>

    <script src="https://www.gstatic.com/firebasejs/9.0.0/firebase-app.js"></script>
    <script src="https://www.gstatic.com/firebasejs/9.0.0/firebase-database.js"></script>

    <script>
        // Apnar Firebase Config ekhane hobe
        const firebaseConfig = {
            apiKey: "YOUR_API_KEY",
            databaseURL: "YOUR_DATABASE_URL",
            projectId: "YOUR_PROJECT_ID",
        };

        // Firebase initialize kora ebong realtime tracking logic ekhane likhte hoy
        // (Eti ekta advanced process, jodi apni Firebase janen tobe ekhanei code bosaite parben)
    </script>
</body>
</html>