

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Nothing here</title>
  <style>
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      background-color: #000;
      position: relative;
    }
    
    .gradient-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
      background-size: 400% 400%;
      animation: gradient 15s ease infinite;
      z-index: 1;
    }
    
    @keyframes gradient {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
    
    .content {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    
    .soon-text {
      font-size: clamp(2rem, 10vw, 7rem);
      font-weight: 300;
      letter-spacing: -0.05em;
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      background-image: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
      animation: text-shadow 5s ease-in-out infinite alternate;
      padding: 0.1em;
      transform: translateZ(0);
      will-change: transform;
    }
    
    @keyframes text-shadow {
      0% {
        text-shadow: 0 0 0 rgba(255,255,255,0.1);
      }
      100% {
        text-shadow: 0 15px 25px rgba(255,255,255,0.2);
      }
    }
    
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
      z-index: 3;
      pointer-events: none;
      mix-blend-mode: overlay;
    }
    
    .blob {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60vmin;
      height: 60vmin;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 43% 57% 70% 30% / 51% 38% 62% 49%;
      filter: blur(40px);
      animation: blob-animation 20s infinite linear alternate;
      z-index: 1;
      opacity: 0.6;
    }
    
    @keyframes blob-animation {
      0% {
        border-radius: 43% 57% 70% 30% / 51% 38% 62% 49%;
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
      }
      25% {
        border-radius: 51% 49% 40% 60% / 35% 65% 35% 65%;
      }
      50% {
        border-radius: 67% 33% 47% 53% / 37% 20% 80% 63%;
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
      }
      75% {
        border-radius: 32% 68% 39% 61% / 68% 55% 45% 32%;
      }
      100% {
        border-radius: 43% 57% 70% 30% / 51% 38% 62% 49%;
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
      }
    }
    
    .reveal {
      opacity: 0;
      animation: reveal 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    }
    
    @keyframes reveal {
      0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
      }
    }
    
    @media (max-width: 768px) {
      .soon-text {
        font-size: clamp(3rem, 25vw, 10rem);
      }
    }
  </style>
</head>
<body>
  <div class="gradient-bg"></div>
  <div class="blob"></div>
  <div class="content reveal">
    <h1 class="soon-text">Nothing here</h1>
  </div>
  <div class="overlay"></div>
</body>
</html>