Only you can see this notice.
- Al seleccionar una opción, se actualiza toda la página.
- Se abre en una nueva ventana.
document.addEventListener("DOMContentLoaded", function () {
document.body.style.overflow = "hidden";
const checkbox = document.getElementById("legalCheck");
const enterBtn = document.getElementById("enterBtn");
const exitBtn = document.getElementById("exitBtn");
const overlay = document.getElementById("age-verification-overlay");
checkbox.addEventListener("change", function () {
enterBtn.disabled = !this.checked;
});
enterBtn.addEventListener("click", function () {
overlay.remove(); // 👈 ESTO ES LA CLAVE
document.body.style.overflow = "";
});
exitBtn.addEventListener("click", function () {
window.location.href = "https://www.google.com";
});
});