/* ============================================================
   AIRLINKS — DISCOVER REEL
   Vertical short-video feed, scroll-snap, controls overlay.
   ============================================================ */

.reel-container {
  height: calc(100vh - var(--header-height));
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  background: #000;
  margin: 0 -24px;
}
.reel-slide {
  height: calc(100vh - var(--header-height));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.reel-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.reel-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 35%,
    rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.85) 100%);
  z-index: 1; pointer-events: none;
}
.reel-overlay {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  width: 100%; padding: 48px;
  color: #fff;
}
.reel-info { max-width: 640px; }
.reel-chip {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  margin-bottom: 16px;
  border: 0.5px solid rgba(255,255,255,0.2);
}
.reel-city {
  color: #fff !important;
  font-size: 64px !important; font-weight: 700 !important;
  margin: 0 0 8px !important; line-height: 1 !important;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.reel-tagline { font-size: 22px; font-weight: 500; margin: 0 0 16px; opacity: 0.95; }
.reel-desc { font-size: 16px; line-height: 1.6; margin: 0 0 28px; opacity: 0.85; max-width: 480px; }
.reel-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.reel-side { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-bottom: 8px; }
.reel-side-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.reel-side-btn:hover { background: rgba(255,255,255,0.25); }
.reel-counter {
  color: #fff; font-size: 13px; font-weight: 500;
  background: rgba(0,0,0,0.4);
  padding: 4px 10px; border-radius: 999px;
  backdrop-filter: blur(8px);
}
.reel-progress {
  position: absolute; top: 16px; left: 24px; right: 24px;
  display: flex; gap: 4px; z-index: 3;
}
.reel-progress span {
  flex: 1; height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 999px;
  transition: background 0.3s;
}
.reel-progress span.active { background: #fff; }
.reel-help {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 5;
  pointer-events: none;
  animation: reel-bounce 2s ease-in-out infinite;
}
.reel-help-card {
  background: rgba(0,0,0,0.6); color: #fff;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px;
  display: flex; align-items: center; gap: 6px;
  backdrop-filter: blur(12px);
}
@keyframes reel-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
main:has(.reel-container) { min-height: auto; }
