<!DOCTYPE html><html><head><meta charset="utf-8"><title>Tourist is live!</title><meta http-equiv="refresh" content="10;URL=https://tourist.com"><style>body { background: #fff; color: #222; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; margin: 0; font-size: 2.2rem; font-family: "Inter", Arial, sans-serif;} .emoji { font-size: 4rem; margin-bottom: 1rem;} .button { color: #fff; background: #06b6d4; border: none; padding: 0.8em 1.8em; border-radius: 2em; font-weight: 600; font-size: 1.1em; margin-top: 1.2rem; text-decoration: none; transition: background 0.2s; cursor: pointer; box-shadow: 0 2px 16px #0cf2ff22; display: inline-block;} .button:hover { background: #0893a3;} .airbnb { color: #8f8f8f; font-size: 1.1rem; margin-top: 2rem; text-align: center;} .timer { margin-top: 1.2rem; font-size: 1em; color: #aaa;} </style><script>let secs = 10;function countdown() {if (secs > 0) {document.getElementById("timer").innerText = "Redirecting in " + secs + " seconds...";secs--;setTimeout(countdown, 1000);}}window.onload = countdown;</script></head><body><div class="emoji">🌍✨</div><div>Tourist is now available at Tourist.com</div><a class="button" href="https://tourist.com" target="_blank">Go to tourist.com</a><div id="timer" class="timer">Redirecting in 10 seconds...</div><div class="airbnb">Welcome to a world of new adventures.<br>Feel at home wherever you go. 🧳</div></body></html>