body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: #0b1020;
  overflow: hidden;
}

.landing-page {
  position: relative;
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  background:
    radial-gradient(circle at top, #9b5cff33, transparent 40%),
    radial-gradient(circle at bottom, #00b7ff22, transparent 40%), #0b1020;
}

.overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
}

.landing-content {
  position: relative;
  z-index: 2;
  text-align: center;

  padding: 40px 60px;
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(16px);
}

.landing-content h1 {
  font-size: 4rem;
  margin-bottom: 12px;

  background: linear-gradient(90deg, #ff3edb, #9b5cff, #39a9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.status-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.sub-text {
  color: #b6bdd1;
  font-size: 1rem;
}
