/* css/lanes/fleet.css — owned by the "fleet" lane (ZX-540 aerobatic aircraft). */
/* Uses base.css tokens (--coral, --phos, Satoshi, JetBrains Mono); defines none. */

/* ---- hangar: AEROBATIC tier ------------------------------------------------ */
.fleet-card .fleet-art {
  display: block;
  background: #101318;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  margin: 8px 0 10px;
  padding: 10px 14px;
}
.fleet-card .fleet-art svg { display: block; width: 100%; height: auto; }
.fleet-legal {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(232, 234, 238, 0.42);
  margin-top: 8px;
  text-transform: uppercase;
}

/* ---- in-flight HUD chip ------------------------------------------------------ */
#fleet-hud {
  position: absolute;
  top: 64px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-family: "JetBrains Mono", monospace;
  pointer-events: none;
  text-align: right;
}
#fleet-hud .fh-time {
  font-size: 18px;
  font-weight: 700;
  color: var(--coral, #ff5f3e);
  background: rgba(13, 15, 18, 0.78);
  border: 1px solid rgba(255, 95, 62, 0.35);
  border-radius: 4px;
  padding: 4px 10px;
}
#fleet-hud .fh-g {
  font-size: 12px;
  color: #e8eaee;
  background: rgba(13, 15, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  padding: 2px 8px;
}
#fleet-hud .fh-legal {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(232, 234, 238, 0.38);
}

/* ---- crash overlay ----------------------------------------------------------- */
#fleet-crash {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(8, 9, 11, 0.62);
  z-index: 60;
}
#fleet-crash .fc-box {
  background: #14171b;
  border: 1px solid rgba(255, 95, 62, 0.5);
  border-radius: 8px;
  padding: 22px 28px;
  max-width: 420px;
  text-align: center;
}
#fleet-crash h3 {
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--coral, #ff5f3e);
  margin: 0 0 10px;
}
#fleet-crash p {
  font-size: 13px;
  color: rgba(232, 234, 238, 0.75);
  margin: 0 0 16px;
}
#fleet-crash .fc-reset {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0d0f12;
  background: var(--coral, #ff5f3e);
  border: 0;
  border-radius: 4px;
  padding: 9px 26px;
  cursor: pointer;
}
#fleet-crash .fc-reset:hover { filter: brightness(1.08); }
