/* style.css - Custom styling for Kelex Technology PHP version */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=Space+Grotesk:wght@500;700&display=swap');

/* Base Styles */
body {
  background-color: #030712;
  color: #f8fafc;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Frosted Glass Theme Classes */
.mesh-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}

.cyan-glow {
  background: #22d3ee;
}

.indigo-glow {
  background: #6366f1;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.glass-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.glass-input:focus {
  border-color: rgba(34, 211, 238, 0.5) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.15);
}

/* Custom cyber scanner animations */
@keyframes scan {
  0% {
    transform: translateY(0);
    opacity: 0.1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(350px);
    opacity: 0.1;
  }
}

.animate-scan {
  animation: scan 4s linear infinite;
}

/* Scrollbar customizations */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #030712;
}

::-webkit-scrollbar-thumb {
  background: rgba(34, 211, 238, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(34, 211, 238, 0.6);
}
