document.addEventListener("DOMContentLoaded", function () { const button = document.querySelector(".fixed-button"); if (!button) return; window.addEventListener("scroll", function () { if (window.scrollY > 400) { button.classList.add("is-visible"); } else { button.classList.remove("is-visible"); } }); });