<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

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


  <title>Crystal Cistern</title>

  <meta name="description" content="Crystal Cistern is coming soon." />

  <meta name="robots" content="noindex, nofollow" />


  <style>

    * {

      box-sizing: border-box;

      margin: 0;

      padding: 0;

    }


    body {

      min-height: 100vh;

      background:

        radial-gradient(circle at top, rgba(140, 220, 255, 0.22), transparent 35%),

        linear-gradient(180deg, #020617 0%, #03111f 50%, #000000 100%);

      color: #e6faff;

      font-family: Georgia, "Times New Roman", serif;

      display: flex;

      align-items: center;

      justify-content: center;

      text-align: center;

      overflow: hidden;

    }


    .container {

      padding: 40px;

      max-width: 800px;

    }


    .small {

      letter-spacing: 0.35em;

      text-transform: uppercase;

      font-size: 12px;

      opacity: 0.7;

      margin-bottom: 24px;

    }


    h1 {

      font-size: clamp(42px, 8vw, 96px);

      font-weight: 400;

      letter-spacing: 0.08em;

      text-transform: uppercase;

      text-shadow: 0 0 35px rgba(120, 220, 255, 0.35);

    }


    .line {

      width: 120px;

      height: 1px;

      background: rgba(180, 240, 255, 0.7);

      margin: 32px auto;

      box-shadow: 0 0 18px rgba(120, 220, 255, 0.8);

    }


    p {

      font-size: 15px;

      letter-spacing: 0.2em;

      text-transform: uppercase;

      opacity: 0.75;

    }


    .glow {

      position: fixed;

      width: 420px;

      height: 420px;

      border-radius: 50%;

      background: rgba(90, 210, 255, 0.12);

      filter: blur(80px);

      bottom: -160px;

      left: 50%;

      transform: translateX(-50%);

      pointer-events: none;

    }

  </style>

</head>


<body>

  <div class="glow"></div>


  <main class="container">

    <div class="small">Digital Cistern Experience</div>

    <h1>Crystal Cistern</h1>

    <div class="line"></div>

    <p>Coming Soon</p>

  </main>

</body>

</html>