@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 5px rgba(0, 217, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.8), 0 0 30px rgba(139, 92, 246, 0.6);
  }
}

.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: #1F2937;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00D9FF 0%, #8B5CF6 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00E5FF 0%, #A855F7 100%);
}

/* Neon text effect */
.neon-text {
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.8),
               0 0 20px rgba(0, 217, 255, 0.6),
               0 0 30px rgba(0, 217, 255, 0.4);
}

.neon-purple {
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.8),
               0 0 20px rgba(139, 92, 246, 0.6),
               0 0 30px rgba(139, 92, 246, 0.4);
}

/* Tech gradient backgrounds */
.bg-tech-gradient {
  background: linear-gradient(135deg, #000000 0%, #1F2937 50%, #000000 100%);
}

.bg-cyber-gradient {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}
