<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Maintenance</title>
<style>
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; display: flex; justify-content: center; align-items: center; min-height: 100vh; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; }
  .container { text-align: center; padding: 2rem; max-width: 600px; }
  .icon { font-size: 4rem; margin-bottom: 1rem; }
  h1 { font-size: 2rem; margin-bottom: 1rem; font-weight: 600; }
  p { font-size: 1.1rem; opacity: 0.9; line-height: 1.6; }
</style>
</head>
<body>
<div class="container">
  <div class="icon">🔧</div>
  <h1>Under Maintenance</h1>
  <p>This site is currently under maintenance. Please check back later.</p>
</div>
</body>
</html>