
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: #fff0f5;
  color: #2b2b2b;
  text-align: center;
  padding: 2em;
}
.logo {
  width: 120px;
  margin-bottom: 1em;
}
.container {
  max-width: 600px;
  margin: 0 auto;
}
.cta-button {
  display: inline-block;
  background: #ff82b2;
  color: white;
  padding: 0.8em 1.5em;
  text-decoration: none;
  border-radius: 100px;
  margin-top: 1em;
  transition: all 0.3s ease;
}
.cta-button:hover {
  box-shadow: 0 0 10px #ff82b288;
  transform: scale(1.05);
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
.footer {
  margin-top: 4em;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.footer.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Rotating Taglines Fade Style */
.rotating-taglines {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #fff;
  height: 1.5em;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.rotating-taglines span {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  width: 100%;
}

.rotating-taglines span.visible {
  opacity: 1;
}
