body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #0a0a23, #1a1a3f);
  color: white;
  overflow: hidden;
}

.container {
  text-align: center;
  padding-top: 10vh;
  position: relative;
}

.logo-wrapper {
  animation: float 4s ease-in-out infinite;
}

.logo {
  width: 220px;
  filter: drop-shadow(0 0 12px #9f3160) brightness(1.2);
}

.headline {
  font-size: 3rem;
  margin-top: 2rem;
  color: white;
  text-shadow: 0 0 10px #9f3160;
}

.subtext {
  font-size: 1.2rem;
  color: #ccc;
  margin-top: 1rem;
  font-weight: 300;
}

.cta {
  margin-top: 2rem;
  padding: 12px 28px;
  font-size: 1rem;
  background: white;
  color: #9f3160;
  border: 2px solid #9f3160;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta:hover {
  background: #9f3160;
  color: white;
  box-shadow: 0 0 12px #9f3160;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.logo-wrapper {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}