/* Parent-app full-screen video iframe overlay */
.video-iframe-backdrop {
  position: fixed;
  inset: 0;
  z-index: 13000;
  display: flex;
  flex-direction: column;
  background: #040810;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.video-iframe-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}
.video-iframe-backdrop.is-exiting {
  opacity: 0;
  pointer-events: none;
}
.video-iframe-backdrop iframe {
  flex: 1;
  width: 100%;
  border: none;
  background: #040810;
}

/* Path milestone — awaiting word intro (restored from batch-preview.css) */
.coach-trail-node.unlock-ready .coach-orb {
  animation: unlockPulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.55), 0 0 28px rgba(251, 191, 36, 0.35);
}
.coach-trail-node.unlock-ready .coach-node-sub {
  color: #fbbf24;
  font-weight: 800;
}
@keyframes unlockPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.coach-trail-hit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

/* Subtle replay link in coach game picker modal */
.coach-replay-intro-link {
  display: inline-block;
  width: auto;
  margin-top: 0;
  padding: 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  text-align: center;
}
.coach-replay-intro-link:hover {
  color: rgba(255, 255, 255, 0.72);
}
.coach-replay-intro { display: none !important; }
