/* Animasi neon */
@keyframes neon-pulse {
  0% { opacity: 0.8; }
  50% { opacity: 0.4; }
  100% { opacity: 0.8; }
}

.neon-border {
  border: 2px solid rgba(0, 247, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.2);
  animation: neon-pulse 1.5s infinite;
}

/* Efek gradien teks */
.text-neon-blue {
  background: linear-gradient(45deg, #00f7ff, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Responsive design tambahan */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .logo-hover {
    width: 180px;
  }
}

.logo-hover {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(0, 231, 255, 0.3));
  width: 6rem;
  height: auto;
  margin: 20px;
}

@media (max-width: 768px) {
  .logo-hover {
    width: 4rem;
  }
}

.logo-hover:hover {
  transform: rotate(15deg) scale(1.4);
  filter: drop-shadow(0 0 12px rgba(0, 97, 255, 0.5));
}

@keyframes pulse-glow {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

.animate-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}