/* Fire Angel News — Cinematic Intro */
.intro-pure {
  position: fixed; inset: 0; z-index: 9999;
  background: #000;
  overflow: hidden;
  transition: opacity 3s ease;
}
.intro-pure.intro-out {
  opacity: 0;
  pointer-events: none;
}
.intro-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0;
  animation: introFade 3s ease-out forwards;
}
@keyframes introFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.intro-video.fading-out {
  animation: introFadeOut 3s ease-in forwards;
}
@keyframes introFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
/* Subtle gradient at top + bottom so controls are readable over any frame */
.intro-pure::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
  z-index: 5;
  pointer-events: none;
}
.intro-controls {
  position: absolute;
  top: 24px;
  right: 28px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.intro-btn {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.95);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  padding: 8px 14px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  border-radius: 1px;
  text-transform: uppercase;
}
.intro-btn:hover {
  border-color: #e8743a;
  color: #fff;
  background: rgba(232,116,58,0.4);
}
.intro-skip-btn { font-weight: 600; }
