/* Custom cyber aesthetic & animations */

/* Cyber Grid Background */
.cyber-grid {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(6, 182, 212, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6, 182, 212, 0.07) 1px, transparent 1px);
}

/* Laser sweep animation in scanning box */
.scanner-laser {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #06b6d4, #3b82f6, transparent);
  box-shadow: 0 0 15px #06b6d4;
  animation: laserSweep 1.8s ease-in-out infinite;
}

@keyframes laserSweep {
  0% {
    top: 0%;
    opacity: 0.2;
  }
  50% {
    top: 98%;
    opacity: 1;
  }
  100% {
    top: 0%;
    opacity: 0.2;
  }
}

/* Touch active scale */
.active\:scale-98:active {
  transform: scale(0.98);
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0b0f19;
}
::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #06b6d4;
}

/* Presets pill hover transition */
.preset-chip {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}