Select Your Country
Please select your country to continue.
document.addEventListener('DOMContentLoaded', function () {
const overlay = document.getElementById('overlay');
const modal = document.querySelector('.country-modal');
const links = document.querySelectorAll('.country-item');
function redirectToUrl(url) {
const tempLink = document.createElement('a');
tempLink.href = url;
tempLink.style.display = 'none';
document.body.appendChild(tempLink);
tempLink.click();
document.body.removeChild(tempLink);
}
overlay.addEventListener('click', function () {
const firstLink = links[0]?.href;
if (firstLink) redirectToUrl(firstLink);
});
modal.addEventListener('click', function (event) {
if (!event.target.closest('.country-item')) {
const firstLink = links[0]?.href;
if (firstLink) redirectToUrl(firstLink);
}
});
});