<!DOCTYPE html>
<html lang="uk">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Тимчасово недоступно</title>
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0f0f0f;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #fff;
    }
    .card {
      text-align: center;
      padding: 48px 40px;
      max-width: 480px;
    }
    .icon { font-size: 56px; margin-bottom: 24px; }
    h1 { font-size: 28px; font-weight: 700; margin-bottom: 12px; color: #c084fc; }
    p  { font-size: 16px; line-height: 1.6; color: #a1a1aa; }
  </style>
</head>
<body>
  <div class="card">
    <div class="icon">🔧</div>
    <h1>Тимчасово недоступно</h1>
    <p>Сайт зараз на технічному обслуговуванні.<br>Спробуйте зайти трохи пізніше.</p>
  </div>
</body>
</html>