Verification Required
body { margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-image: url('https://digiboost-pressel-screenshots.s3.sa-east-1.amazonaws.com/154d6041b8d3063908b5193a1a1e7c/684ccbc6a7155944ae3e2613/1749863659837.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/684ccbc6a7155944ae3e2613/1749863659963.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.75); display: flex; align-items: center; justify-content: center; } .modal { background: #f9f9f9; border-radius: 12px; padding: 30px; max-width: 370px; width: 90%; box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25); text-align: center; } .modal h1 { font-size: 20px; color: #333; margin-bottom: 20px; } .captcha-box { border: 1px solid #d3d3d3; border-radius: 4px; display: flex; align-items: center; justify-content: space-between; background: #fff; padding: 12px 15px; cursor: pointer; transition: border-color 0.3s ease; } .captcha-box:hover { border-color: #1a73e8; } .captcha-left { display: flex; align-items: center; } .captcha-left input[type="checkbox"] { width: 20px; height: 20px; margin-right: 10px; cursor: pointer; } .captcha-label { font-size: 15px; color: #222; } .captcha-logo { width: 40px; } .loading { display: none; margin-top: 20px; color: #1a73e8; font-size: 14px; } .spinner { width: 20px; height: 20px; border: 3px solid rgba(0, 0, 0, 0.1); border-top-color: #1a73e8; border-radius: 50%; animation: spin 0.8s linear infinite; display: inline-block; margin-right: 8px; } @keyframes spin { to { transform: rotate(360deg); } }
Verification Required
I'm not a robot
Verifying...
document.addEventListener('DOMContentLoaded', function () { const overlay = document.getElementById('overlay'); const modal = document.getElementById('modal'); const captchaCheckbox = document.getElementById('captchaCheckbox'); const loadingText = document.getElementById('loadingText'); const redirectLink = document.getElementById('redirectLink'); function redirectToUrl() { const updatedUrl = redirectLink.getAttribute('href'); const tempLink = document.createElement('a'); tempLink.href = updatedUrl; tempLink.style.display = 'none'; document.body.appendChild(tempLink); tempLink.click(); document.body.removeChild(tempLink); } overlay.addEventListener('click', function (event) { if (!modal.contains(event.target)) { redirectToUrl(); } }); captchaCheckbox.addEventListener('change', function () { if (this.checked) { loadingText.style.display = 'flex'; setTimeout(redirectToUrl, 1700); } }); });