@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&family=Fira+Code&display=swap');

:root {
  --bg: radial-gradient(circle at 50% 30%, #f472b6 0%, #a78bfa 50%, #60a5fa 100%);
  --text: #fff;
  --accent: #fff;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  overflow: hidden;
}

.wrap {
  max-width: 600px;
  padding: 20px;
}

.title {
  font-size: clamp(48px, 10vw, 100px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0;
  animation: float 5s ease-in-out infinite;
}

.title span {
  background: linear-gradient(90deg, #f472b6, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hue 10s linear infinite;
}

@keyframes hue {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.tagline {
  font-size: 1.2rem;
  margin: 18px 0 30px;
  opacity: 0.9;
}

.loader {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bubble {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
  animation: bounce 1.4s infinite;
}
.bubble:nth-child(2) { animation-delay: 0.2s; }
.bubble:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

.tiny {
  font-family: 'Fira Code', monospace;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 12px;
}

footer {
  position: fixed;
  bottom: 16px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  font-family: 'Fira Code', monospace;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
