/* LATAM Pass Radar - Light Theme Styles */

:root {
  --latam-navy: #0f172a;
  --latam-red: #e11d48;
  --latam-coral: #f43f5e;
  --latam-indigo: #4338ca;
  --latam-slate: #334155;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  background-color: #f8fafc;
  color: #0f172a;
}

/* Crisp Clean Card effects */
.glass-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.glass-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.glass-card:hover {
  border-color: rgba(225, 29, 72, 0.35);
  box-shadow: 0 10px 25px -5px rgba(225, 29, 72, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

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

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

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

/* Pulsing Badge Animations */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.pulse-active {
  animation: pulse-ring 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

/* Airline Flight Route visual line */
.flight-route-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flight-route-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6 0%, #e11d48 100%);
  z-index: 1;
}

.flight-route-plane {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  padding: 0 6px;
}

/* Button interactive animations */
.btn-latam-primary {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: white;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-latam-primary:hover {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.35);
  transform: translateY(-1px);
}

.btn-latam-primary:active {
  transform: translateY(0);
}

/* Spinner */
@keyframes spin-fast {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin-fast {
  animation: spin-fast 0.8s linear infinite;
}
