<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Adventure Paused</title><style>body{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;background:linear-gradient(135deg,#fdcb6e 0%,#e17055 100%);color:#333;text-align:center;padding:40px 20px;line-height:1.6;margin:0;min-height:100vh;display:flex;flex-direction:column;justify-content:center}.container{max-width:800px;margin:0 auto;background-color:rgba(255,255,255,0.9);border-radius:15px;padding:30px;box-shadow:0 10px 30px rgba(0,0,0,0.1)}h1{font-size:2.5em;margin-bottom:20px;color:#d63031}p{font-size:1.2em;margin-bottom:15px}.emoji{font-size:3em;margin:20px 0}.btn{display:inline-block;background-color:#0984e3;color:white;padding:12px 25px;text-decoration:none;border-radius:25px;font-weight:bold;margin-top:20px;transition:transform 0.3s ease,background-color 0.3s ease}.btn:hover{background-color:#0984e3;transform:scale(1.05)}.loading{display:inline-block;width:50px;height:50px;border:5px solid rgba(255,255,255,.3);border-radius:50%;border-top-color:#fff;animation:spin 1s ease-in-out infinite}@keyframes spin{to{transform:rotate(360deg)}}</style></head><body><div class="container"><h1>Backend Service Taking a Break</h1><div class="emoji">🏄‍♂️ 🧗‍♀️ 🚵‍♂️</div><p><strong>Looks like the backend service is currently offline!</strong></p><p>This personal project doesn't have 24/7 monitoring - just me building cool stuff when I can!</p><p>The server might be:</p><ul style="text-align:left;display:inline-block"><li>Still starting up</li><li>Paused at a debug breakpoint</li><li>Getting upgraded with awesome new features</li><li>Or I might be out mountain biking instead of maintaining it</li></ul><div class="loading" style="margin:20px auto"></div><p>Trying again in a few seconds...</p><script>window.onload = function() { setTimeout(function() { window.location.reload(); }, 5000); }</script></div></body></html>