Select Your Country * { margin: 0; padding: 0; box-sizing: border-box; } body, html { width: 100vw; height: 100vh; overflow: hidden; } body { background-image: url('https://digiboost-pressel-screenshots.s3.sa-east-1.amazonaws.com/154d6041b8d3063908b5193a1a1e7c/68439bb114c631ce6c9b5899/1749262326787.jpeg'); background-size: cover; background-position: top center; background-repeat: no-repeat; } @media (max-width: 768px) { body { background-image: url('https://digiboost-pressel-screenshots.s3.sa-east-1.amazonaws.com/154d6041b8d3063908b5193a1a1e7c/68439bb114c631ce6c9b5899/1749262326677.jpeg'); background-size: cover; background-position: top center; } } .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */ z-index: 999; } .country-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90%; max-width: 500px; background: white; padding: 20px; border-radius: 8px; text-align: center; z-index: 1000; } .country-modal h2 { font-size: 24px; margin-bottom: 10px; } .country-modal p { font-size: 16px; margin-bottom: 20px; } .country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: 4px; } .country-item { width: 80px; height: 80px; background-size: cover; background-position: center; border-radius: 8px; cursor: pointer; transition: transform 0.3s ease; } .country-item:hover { transform: scale(1.1); }

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); } }); });