/* ================================================
   SPACESHIPS — Positioned inside funnel tunnel
   ================================================ */
.ship {
  position: absolute;
  z-index: 5;
  width: 140px;
  height: 90px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ship img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ship-visible {
  opacity: 1;
}

/* ══════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .ship {
    transition-duration: 0.01s !important;
  }
}
