.gradient-bg {
  background: linear-gradient(45deg, black, transparent);
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 1s ease-out both;
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-in {
  animation: slide-in 0.8s ease forwards;
}

.animate-slide-in.delay-100 {
  animation-delay: 0.1s;
}

.animate-slide-in.delay-300 {
  animation-delay: 0.3s;
}

.animate-slide-in.delay-500 {
  animation-delay: 0.5s;
}

@keyframes float-up {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-float-up {
  animation: float-up 1s ease-out forwards;
}

.trackingwidest {
  letter-spacing: 0.6em;
}

@keyframes blob-pulse {

  0%,
  100% {
    transform: scale(1);
    border-radius: 50%;
  }

  50% {
    transform: scale(1.05) rotate(1deg);
    border-radius: 45% 55% 65% 35% / 55% 45% 35% 65%;
  }
}

.animate-blob-pulse {
  animation: blob-pulse 8s infinite ease-in-out;
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 30s linear infinite;
}

@keyframes bounce-slow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

.animate-bounce-slow {
  animation: bounce-slow 2.5s infinite;
}

@keyframes ping-slow {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-ping-slow {
  animation: ping-slow 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 40s linear infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-slow {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.4;
  }
}

.animate-pulse-slow {
  animation: pulse-slow 6s ease-in-out infinite;
}

.animate-pulse-slower {
  animation: pulse-slow 10s ease-in-out infinite;
}

html {
  scroll-behavior: smooth;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 1s ease-out both;
}

.animate-spin-slow {
  animation: spin-slow 10s linear infinite;
}

.active {
  color: #facc15;
  font-weight: bold;
}

.card {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease;
}

.card.show {
  opacity: 1;
  transform: scale(1);
}

.line-x,
.line-y {
  background-color: #3b82f6;
  transition: all 0.6s ease;
}

.line-x {
  height: 4px;
  width: 0;
}

.line-x.grow {
  width: 80px;
}

.line-y {
  width: 4px;
  height: 0;
  margin: 0 auto;
}

.animate-fade-slide {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease-out forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-spin-slow {
  animation: spin 20s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.text-xl {
  font-size: 1rem !important;
}