@keyframes glow {
  0% {
    box-shadow: 0 0 5px var(--color-primary);
  }
  50% {
    box-shadow: 0 0 20px var(--color-primary);
  }
  100% {
    box-shadow: 0 0 5px var(--color-primary);
  }
}

@keyframes scaleFade {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes backgroundPan {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.splash-bg-animated {
  background: repeating-linear-gradient(270deg, #d0dfcd, #a8d68d, #d0e6cc);
  background-size: 600% 600%;
  animation: backgroundPan 5s ease infinite;
}

.logo-animated {
  animation: glow 2.5s infinite ease-in-out;
  border-radius: 1rem;
  transition: transform 0.4s ease;
  width: 240px;
}

.tagline {
  font-size: 3rem;
  font-family: var(--font-secondary);
  color: var(--color-text);
  animation: scaleFade 1.2s ease-in-out;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s forwards;
  animation-delay: 1s;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.3rem;
}
