²é¿´/±à¼ ´úÂë
ÄÚÈÝ
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Scheduled Maintenance - We'll Be Back Soon</title> <meta name="robots" content="noindex, nofollow"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: #fff; padding: 20px; } .container { text-align: center; max-width: 600px; } .icon { font-size: 80px; margin-bottom: 30px; animation: pulse 2s ease-in-out infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } } h1 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 600; } p { font-size: 1.1rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 15px; } .progress-container { background: rgba(255,255,255,0.1); border-radius: 10px; height: 8px; margin: 40px 0; overflow: hidden; } .progress-bar { height: 100%; background: linear-gradient(90deg, #00d4ff, #7b2cbf); width: 65%; border-radius: 10px; animation: progress 3s ease-in-out infinite; } @keyframes progress { 0%, 100% { width: 65%; } 50% { width: 80%; } } .status { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 30px; font-size: 0.9rem; } .status-dot { width: 10px; height: 10px; background: #00ff88; border-radius: 50%; animation: blink 1.5s ease-in-out infinite; } @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } } .footer { margin-top: 60px; color: rgba(255,255,255,0.4); font-size: 0.85rem; } </style> </head> <body> <div class="container"> <div class="icon">🔧</div> <h1>Scheduled Maintenance</h1> <p>We're currently performing scheduled maintenance to improve our services. We apologize for any inconvenience this may cause.</p> <p>Our team is working diligently to complete the updates. Please check back shortly.</p> <div class="progress-container"> <div class="progress-bar"></div> </div> <div class="status"> <span class="status-dot"></span> <span>Maintenance in progress</span> </div> <div class="footer"> <p>Expected completion: Within the next few hours</p> <p>Thank you for your patience</p> </div> </div> </body> </html>