πŸ“± Please Rotate Your Device

Adventopia is best played in landscape. Please rotate your device.

πŸ—ΊοΈ Adventopia

Loading your adventure...

let deferredPrompt = null; window.addEventListener("beforeinstallprompt", (e) => { e.preventDefault(); deferredPrompt = e; console.log("[App] Install prompt available"); const btn = document.getElementById("install-btn"); if (btn) btn.style.display = ""; }); document.getElementById("install-btn")?.addEventListener("click", async () => { if (!deferredPrompt) return; deferredPrompt.prompt(); const { outcome } = await deferredPrompt.userChoice; console.log("[App] Install outcome:", outcome); if (outcome === "accepted") { document.getElementById("install-btn").style.display = "none"; } deferredPrompt = null; }); window.addEventListener("appinstalled", () => { console.log("[App] PWA installed successfully"); deferredPrompt = null; const btn = document.getElementById("install-btn"); if (btn) btn.style.display = "none"; });