/* Stadium detail - clean space explore
   Pattern: left channels · right blank spotlight until hover/click
   Brand: B/W shell (Orbit 0–1). Soft signal color only at depth (Orbit 2+ chips / deeper intel). */

:root {
  /* Fansion signal — only for deeper galaxy layers */
  --st-signal: #a78bfa; /* soft violet */
  --st-signal-hot: #c4b5fd;
  --st-signal-dim: rgba(167, 139, 250, 0.35);
  --st-signal-glow: rgba(167, 139, 250, 0.45);
}

body.st-explore-page {
  background: #000 !important;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}

body.st-explore-page.galaxy-page main#main-content::before {
  display: none;
}

.st-explore {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1.25rem 3rem;
  min-height: calc(100vh - 5rem);
}

.st-explore-crumb {
  margin: 0.25rem 0 1.25rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.st-explore-crumb a {
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none !important;
}

.st-explore-crumb a:hover {
  color: #fff !important;
}

.st-explore-sep {
  margin: 0 0.4rem;
  opacity: 0.35;
}

.st-explore-top {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: end;
}

@media (min-width: 800px) {
  .st-explore-top {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.st-explore-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.st-explore-title {
  margin: 0;
  font-family: var(--cc-display, "Sora", system-ui, sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.st-explore-sub {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  max-width: 28rem;
}

.st-explore-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: 11rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.st-explore-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.st-explore-photo .gx-media-credit {
  right: 0.4rem;
  bottom: 0.35rem;
}

/* Main split: channels + empty spotlight */
.st-explore-body {
  display: grid;
  gap: 1.5rem 2.5rem;
  min-height: 16rem;
}

@media (min-width: 800px) {
  .st-explore-body {
    grid-template-columns: minmax(10rem, 14rem) 1fr;
    align-items: start;
  }
}

.st-channel-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding-top: 0.25rem;
}

.st-channel {
  appearance: none;
  background: none;
  border: none;
  padding: 0.45rem 0;
  margin: 0;
  cursor: pointer;
  font-family: var(--cc-display, "Sora", system-ui, sans-serif);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.38);
  text-align: left;
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.st-channel:hover,
.st-channel:focus-visible {
  color: #fff;
  outline: none;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

.st-channel.is-lit {
  color: #fff;
  /* Soft signal when a section (Free parking / Tailgate / After…) is open */
  text-shadow:
    0 0 18px rgba(167, 139, 250, 0.4),
    0 0 28px rgba(255, 255, 255, 0.2);
  transform: translateX(2px);
}

/* Spotlight - blank void until lit */
.st-spotlight {
  min-height: 14rem;
}

.st-spotlight-frame {
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.25rem 0 0.5rem;
}

.st-spotlight-idle {
  opacity: 0.55;
}

.st-spotlight-prompt {
  margin: 0;
  font-family: var(--cc-display, "Sora", system-ui, sans-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
  max-width: 22rem;
}

.st-spotlight-hint {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.st-spotlight-active {
  animation: stFadeIn 0.28s ease;
  position: relative;
}

/* Soft scan / beam wash when a channel opens (still mostly white; hint of signal) */
.st-spotlight-active::before {
  content: "";
  position: absolute;
  inset: -0.5rem -0.75rem auto -0.75rem;
  height: 3.5rem;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(167, 139, 250, 0.1) 50%,
    rgba(255, 255, 255, 0.04) 65%,
    transparent 100%
  );
  animation: stScan 2.8s ease-in-out infinite;
  opacity: 0.75;
  z-index: 0;
}

.st-spotlight-active > * {
  position: relative;
  z-index: 1;
}

@keyframes stFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.99);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes stScan {
  0%,
  100% {
    transform: translateX(-12%);
    opacity: 0.25;
  }
  50% {
    transform: translateX(12%);
    opacity: 0.7;
  }
}

@keyframes stPulseDot {
  0%,
  100% {
    box-shadow:
      0 0 0 3px rgba(255, 255, 255, 0.1),
      0 0 10px rgba(255, 255, 255, 0.45);
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(255, 255, 255, 0.18),
      0 0 16px rgba(255, 255, 255, 0.85);
  }
}

.st-spotlight-tag {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

.st-spotlight-title {
  margin: 0 0 1rem;
  font-family: var(--cc-display, "Sora", system-ui, sans-serif);
  font-size: clamp(1.4rem, 3.2vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.35),
    0 0 40px rgba(255, 255, 255, 0.12);
}

.st-spotlight-detail {
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Lead blurb = signal broadcast card */
.st-lead {
  margin: 0;
  padding: 0.9rem 1rem 0.95rem 1.05rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 55%, transparent 100%),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 12px 32px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.st-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 3px;
  border-radius: 999px;
  /* Channel sections (Free parking / Tailgate / After the whistle / Fan day) */
  background: linear-gradient(180deg, var(--st-signal-hot) 0%, rgba(255, 255, 255, 0.35) 100%);
  box-shadow: 0 0 12px var(--st-signal-glow);
}

.st-lead strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

/* Sits with the chip row (not in body copy) */
.st-chip-hint {
  flex: 0 0 100%;
  width: 100%;
  margin: 0 0 0.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.55);
}

.st-deep-hint {
  display: none; /* retired from body copy */
}

/* On-site status = mission badge */
.st-onsite {
  padding: 0.85rem 1rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(ellipse 80% 120% at 0% 0%, rgba(255, 255, 255, 0.1), transparent 55%),
    rgba(0, 0, 0, 0.35);
  box-shadow:
    0 0 28px rgba(255, 255, 255, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

.st-onsite-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 0.35rem;
}

.st-onsite-val {
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  text-shadow: 0 0 16px var(--st-signal-glow);
}

.st-team-link {
  color: #fff !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.15s ease, text-shadow 0.15s ease;
}

.st-team-link:hover,
.st-team-link:focus-visible {
  border-bottom-color: #fff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
  outline: none;
}

.st-team-sep {
  color: rgba(255, 255, 255, 0.35);
}

.st-explore-sub .st-team-link {
  font-weight: 600;
}

.st-soft {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Intel rows — not study-guide bullets */
.st-soft-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.st-soft-list li {
  position: relative;
  margin: 0;
  padding: 0.72rem 0.9rem 0.72rem 2.15rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 42%, transparent 100%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease;
}

.st-soft-list li:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 255, 255, 0.06);
  transform: translateX(3px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%),
    rgba(255, 255, 255, 0.04);
}

.st-soft-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Channel intel markers — soft signal violet in Free parking / Tailgate / After / Fan day */
.st-soft-list li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.28rem;
  border-radius: 50%;
  background: var(--st-signal-hot);
  box-shadow:
    0 0 0 3px var(--st-signal-dim),
    0 0 12px var(--st-signal-glow);
  animation: stPulseDot 2.4s ease-in-out infinite;
}

.st-soft-list li::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: calc(50% + 0.45rem);
  bottom: -0.45rem;
  width: 1px;
  background: linear-gradient(180deg, var(--st-signal-dim), transparent);
  opacity: 0.7;
  pointer-events: none;
}

@keyframes stPulseDot {
  0%,
  100% {
    box-shadow:
      0 0 0 3px var(--st-signal-dim),
      0 0 10px var(--st-signal-glow);
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(167, 139, 250, 0.22),
      0 0 16px rgba(196, 181, 253, 0.75);
  }
}

.st-soft-list li:last-child::after {
  display: none;
}

.st-soft-list a {
  color: #fff !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.st-soft-list a:hover {
  border-bottom-color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.st-spotlight-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.1rem 0 0.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Orbit 2: deeper-file chips — soft signal color (must go deep to find it) */
.st-sub-chip {
  appearance: none;
  background: rgba(167, 139, 250, 0.06);
  border: 1px solid rgba(167, 139, 250, 0.35);
  color: rgba(226, 220, 255, 0.85);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.st-sub-chip:hover,
.st-sub-chip:focus-visible {
  color: #fff;
  border-color: var(--st-signal-hot);
  background: rgba(167, 139, 250, 0.16);
  box-shadow: 0 0 20px var(--st-signal-glow);
  outline: none;
  transform: translateY(-1px);
}

.st-sub-chip.is-on {
  color: #0a0a0c;
  background: linear-gradient(135deg, #e9e4ff 0%, #c4b5fd 55%, #a78bfa 100%);
  border-color: var(--st-signal-hot);
  box-shadow: 0 0 24px var(--st-signal-glow);
}

.st-spotlight-source {
  margin: 1rem 0 0;
  padding: 0.45rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.st-spotlight-source a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.st-spotlight-source a:hover {
  color: #fff !important;
  border-bottom-color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .st-soft-list li,
  .st-soft-list li:hover,
  .st-sub-chip,
  .st-sub-chip:hover,
  .st-spotlight-active,
  .st-spotlight-active::before,
  .st-soft-list li::before {
    transition: none;
    transform: none;
    animation: none;
    filter: none;
  }
}

.st-explore-foot {
  margin: 2.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.st-explore-foot a {
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none !important;
}

.st-explore-foot a:hover {
  color: #fff !important;
}

/* Free parking map (Google Maps embed - no tile scrape) */
.st-park-map {
  position: relative;
  width: 100%;
  max-width: 34rem;
  aspect-ratio: 16 / 10;
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0a0a0a;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 28px rgba(255, 255, 255, 0.05);
}

.st-park-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Satellite: keep natural color, slight contrast */
.st-park-map--sat iframe {
  filter: contrast(1.06) saturate(1.05);
}

.st-park-photo {
  max-width: 34rem;
  margin: 0 0 0.75rem;
  border-radius: 0.45rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
}

.st-park-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 12rem;
  object-fit: contain;
  margin: 0 auto;
}

.st-park-map-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
}

.st-map-link {
  color: #fff !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.05rem;
  letter-spacing: 0.04em;
}

.st-map-link:hover {
  border-bottom-color: #fff;
}

.st-park-map-note {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
}

/* Stadiums list - clever choice line (landing already good) */
.st-pick-line {
  margin: 0 0 1.35rem;
  font-family: var(--cc-display, "Sora", system-ui, sans-serif);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.5);
}

.st-pick-line strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}
