/* dsgo.cz - Custom Styling & Dynamic UI/UX Enhancements */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

body {
  font-family: var(--font-sans);
  background-color: #030712; /* Tailwind slate-950 */
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

/* Glassmorphism Styles */
.glass-nav {
  background: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-panel {
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(6, 182, 212, 0.25); /* cyan-500/25 */
  box-shadow: 0 12px 40px 0 rgba(6, 182, 212, 0.1);
  transform: translateY(-2px);
}

/* Glowing Radial Blobs */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: plus-lighter;
  animation: pulse-glow 8s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1) translate(0px, 0px);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.15) translate(10px, -20px);
    opacity: 0.22;
  }
  100% {
    transform: scale(0.9) translate(-10px, 10px);
    opacity: 0.15;
  }
}

/* Biometric Scan Animations */
@keyframes radar-sweep {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.radar-line {
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.4) 0%, rgba(6, 182, 212, 0) 60%);
  transform-origin: bottom right;
  animation: radar-sweep 4s linear infinite;
}

@keyframes scan-line {
  0%, 100% {
    top: 5%;
    opacity: 0.2;
  }
  50% {
    top: 95%;
    opacity: 1;
  }
}

.scan-laser {
  animation: scan-line 3s ease-in-out infinite;
  box-shadow: 0 0 15px #06b6d4, 0 0 30px #06b6d4;
}

@keyframes circle-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

.pulse-ring {
  animation: circle-pulse 2s infinite ease-in-out;
}

/* Shimmer and Gradient Highlights */
.bg-gradient-radial {
  background: radial-gradient(circle at center, var(--tw-gradient-stops));
}

.gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Premium Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #374151;
}

/* Form inputs & styling */
.custom-input {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease-in-out;
}

.custom-input:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
  outline: none;
}
