:root {
  --bg: #0f0c29;
  --card-bg: rgba(255, 255, 255, 0.08);
  --text: #f5f3ff;
  --muted: #c3bce0;
  --accent: #a78bfa;
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: var(--text);
  overflow: hidden;
  position: relative;
  padding: 24px;
}

/* Floating gradient blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}
.blob-1 { width: 360px; height: 360px; background: #7c3aed; top: -80px; left: -60px; }
.blob-2 { width: 300px; height: 300px; background: #ec4899; bottom: -70px; right: -50px; animation-delay: -4s; }
.blob-3 { width: 260px; height: 260px; background: #38bdf8; top: 40%; left: 55%; animation-delay: -8s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 56px 48px;
  border-radius: 28px;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.wave {
  display: inline-block;
  font-size: 5rem;
  transform-origin: 70% 70%;
  animation: wave 2.4s ease-in-out infinite;
}

@keyframes wave {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  margin: 18px 0 10px;
  background: linear-gradient(90deg, #fff, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #1a1440;
  background: linear-gradient(90deg, #a78bfa, #f0abfc);
  box-shadow: 0 8px 24px rgba(167, 139, 250, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(167, 139, 250, 0.6);
}
.cta:active { transform: translateY(0) scale(0.99); }

footer {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.9rem;
}
.heart { color: #f472b6; }
