/* Custom theme styles for NEOM Shield (درع نيوم) */

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
  }
  50% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.55);
  }
}

.category-card {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card:active {
  transform: scale(0.98);
}

/* Face Scan Laser Animation */
@keyframes laserSweep {
  0% {
    top: 5%;
    opacity: 0.8;
  }
  50% {
    top: 90%;
    opacity: 1;
  }
  100% {
    top: 5%;
    opacity: 0.8;
  }
}

.laser-active {
  opacity: 1 !important;
  animation: laserSweep 1.2s infinite ease-in-out;
}

/* Scrollbar customized for kids theme */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1fdf6;
}
::-webkit-scrollbar-thumb {
  background: #10B981;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #059669;
}

/* Ensure nice smooth touch feedback */
button {
  -webkit-tap-highlight-color: transparent;
}