.glass-panel {
  background: rgba(18, 20, 22, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(192, 192, 192, 0.2);
}
.glass-float {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(18, 20, 22, 0.8);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(192, 192, 192, 0.1);
}
.glass-input {
  background: #ffffff;
  border: 1px solid rgba(192, 192, 192, 0.3);
  color: #000000;
  transition: all 0.3s ease;
}
select.glass-input {
  background: #0D0E10;
  color: #e2e2e5;
}
.glass-input:focus,
.glass-input:focus-visible {
  border-color: #eac349;
  outline: none;
  box-shadow: 0 0 15px rgba(234, 195, 73, 0.4), inset 0 0 8px rgba(234, 195, 73, 0.2);
}
.text-glow {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
@keyframes subtleWave {
  0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
  50% { transform: scale(1.05) translate(-1%, 1%); opacity: 0.5; }
  100% { transform: scale(1) translate(0, 0); opacity: 0.3; }
}
.bg-wave-effect {
  background: radial-gradient(circle at 50% 50%, rgba(0, 51, 102, 0.2) 0%, transparent 60%);
  animation: subtleWave 15s ease-in-out infinite;
}
.zebra-row:nth-child(even) { background-color: rgba(51, 53, 55, 0.3); }
.zebra-row:hover { background-color: rgba(255, 255, 255, 0.05); backdrop-filter: blur(4px); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0c0e10; }
::-webkit-scrollbar-thumb { background: #333537; border-radius: 4px; }
.btn-primary {
  background-color: #003366;
  color: #C0C0C0;
  transition: all 0.3s ease;
  position: relative;
}
.btn-primary:hover {
  background-color: #004488;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}
.btn-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #cca830;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::after {
  opacity: 1;
}
.nav-link.active {
  color: #a7c8ff;
  border-bottom: 2px solid #cca830;
  padding-bottom: 4px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(18,20,22,0.3) 0%, rgba(18,20,22,0.6) 50%, rgba(18,20,22,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
}

:focus-visible {
  outline: 2px solid #eac349;
  outline-offset: 3px;
  border-radius: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
