// Check if the user has visited the reward page
        window.onload = function() {
            const visitedRewardPage = localStorage.getItem('visitedRewardPage');
            if (visitedRewardPage === 'true') {
                // Show a reward message or redirect to a reward page
                alert('Congratulations! You have received your reward.');
                // Optionally redirect to a reward page
                // window.location.href = "https://occultarevelare.neocities.org/reward";
            }
        };
        // Check URL and update localStorage if visiting the specific URL
        (function() {
            const currentURL = window.location.href;
            const rewardPageURL = 'https://occultarevelare.neocities.org/boo/hint1';
            if (currentURL === rewardPageURL) {
                localStorage.setItem('visitedRewardPage', 'true');
            }
        })();