// Navigation to next screen document.getElementById('continueBtn').addEventListener('click', () => { // Add transition effect document.body.style.opacity = '0'; document.body.style.transition = 'opacity 0.5s ease-out'; // Navigate to Start Scene after transition setTimeout(() => { window.location.href = 'start_scene.html'; }, 500); }); // Add transition effect to Skip button document.querySelector('.top-6.right-6').addEventListener('click', () => { document.body.style.opacity = '0'; document.body.style.transition = 'opacity 0.5s ease-out'; setTimeout(() => { window.location.href = 'start_scene.html'; }, 500); });