body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: system-ui, sans-serif;
  background: linear-gradient(135deg, #4c1d95, #312e81, #701a75);
  color: white;
  overflow: hidden;
  position: relative;
}
h1 {
  font-size: 8rem;
  font-weight: 900;
  background: linear-gradient(to bottom, #fff, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
h2 {
  font-size: 2rem;
  margin-top: 1rem;
}
p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.75rem;
}
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: float 12s ease-in-out infinite;
}
.blob1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -150px;
  background: #d946ef;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(40px);
  }
}
