@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes grow {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 195, 255, 0.8), 0 0 40px rgba(138, 43, 226, 0.4);
  }
}

.animate-fade {
  animation: fade 0.6s ease-in-out;
}

.animate-grow {
  animation: grow 0.8s ease-out;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00c3ff, #8a2be2);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00d4ff, #9d3ef5);
}

/* Futuristic gradient backgrounds */
.bg-futuristic-gradient {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 50%, #16213e 100%);
}

.bg-neon-gradient {
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
}

.text-neon-blue {
  color: #00c3ff;
  text-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
}

.text-deep-blue {
  color: #1e3a8a;
}

.text-purple {
  color: #8a2be2;
}

.border-neon {
  border-color: #00c3ff;
  box-shadow: 0 0 15px rgba(0, 195, 255, 0.3);
}
