:root {
  --bg: #0d1026;
  --bg-2: #161a3a;
  --accent: #ff4d6d;
  --accent-2: #5b8cff;
  --text: #f4f6ff;
  --muted: #aab0d6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: radial-gradient(circle at 20% 20%, var(--bg-2), var(--bg) 60%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Animated background shapes */
.bg-shapes {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 14s ease-in-out infinite;
}

.shape-1 {
  width: 380px;
  height: 380px;
  background: var(--accent);
  top: -80px;
  left: -60px;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: var(--accent-2);
  bottom: -100px;
  right: -40px;
  animation-delay: -5s;
}

.shape-3 {
  width: 260px;
  height: 260px;
  background: #8a5bff;
  top: 40%;
  left: 60%;
  animation-delay: -9s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-40px) translateX(20px); }
}

/* Content */
.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.title {
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.subtitle {
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}
