<!DOCTYPE html> <html lang="en"> <head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>VMAX-Pro</title> </head> <body>    <h1>VMAX-Pro</h1>    <script>        const originalTitle = "VMAX-Pro";        const awayTitle = "🔥 We miss you | VMAX-Pro";         document.addEventListener('visibilitychange', function() {            if (document.hidden) {                document.title = awayTitle;            } else {                document.title = originalTitle;            }        });    </script> </body> </html>