Join the Next Great Revolution—Step Into the Metaverse.

// Automatically display the popup when the page loads window.onload = function() { document.getElementById('popup-container').style.display = 'flex'; // Ensure the popup is visible }; // Close popup when the close button is clicked function closePopup() { document.getElementById('popup-container').style.display = 'none'; }