<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>Temporary Page</title>

  <style>

    * {

      box-sizing: border-box;

    }

    body {

      margin: 0;

      min-height: 100vh;

      display: flex;

      align-items: center;

      justify-content: center;

      background: #0a0a0a;

      color: #fff;

      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    }

    .container {

      text-align: center;

      padding: 40px;

    }

    h1 {

      margin: 0 0 12px;

      font-size: 32px;

    }

    p {

      margin: 0;

      color: #999;

      font-size: 16px;

    }

  </style>

</head>

<body>

  <main class="container">

    <h1>Coming Soon</h1>

    <p>This page is temporarily unavailable.</p>

  </main>

</body>

</html>