/* Custom animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes particle-drift {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.2;
  }
  25% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.6;
  }
  75% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-40px) translateX(-5px);
    opacity: 0.1;
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 2s ease-in-out infinite;
}

.animate-particle-drift {
  animation: particle-drift 12s ease-in-out infinite;
}

/* Custom gradient text */
.gradient-text {
  background: linear-gradient(to right, #6366f1, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
}

/* Loading circle animation */
.loading-circle {
  stroke-dasharray: 276.46;
  stroke-dashoffset: 276.46;
  transition: stroke-dashoffset 0.1s ease-out;
}

/* Hover effects */
.hover-glow:hover {
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Discord icon */
.discord-icon {
  fill: currentColor;
}
