/* ============================================
   THE PARANORMAL SHOW — Global Styles
   Dark & Mysterious · Typography-Driven
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-primary: #000000;
  --bg-secondary: #0d0d0d;
  --bg-card: #111111;
  --bg-elevated: #161616;
  --accent: #e50914;
  --accent-glow: rgba(229, 9, 20, 0.2);
  --accent-light: #ff2a2a;
  --text-primary: #f0f0f2;
  --text-secondary: #9a9aaa;
  --text-muted: #5a5a6a;
  --border: rgba(229, 9, 20, 0.15);
  --border-hover: rgba(229, 9, 20, 0.4);
  /* Brand fonts: Archivo ≈ Helvetica Neue LT Pro Bold Extended, EB Garamond ≈ Garamond Premier Pro */
  --font-heading: 'EB Garamond', 'Times New Roman', serif;
  --font-body: 'Archivo', -apple-system, 'Helvetica Neue', sans-serif;
  --font-display: 'Archivo', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Helper class for the Helvetica-Bold-Extended look */
.ext {
  font-family: 'Archivo', sans-serif;
  font-stretch: 125%;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--text-primary);
}

img {
  max-width: 100%;
  display: block;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-style: italic;
  color: var(--text-primary);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  color: var(--text-primary);
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-display);
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
}

/* Burger menu mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-burger span {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem 2rem 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}

.hero-logo {
  width: 100px;
  height: auto;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero h1 em {
  color: var(--accent-light);
  font-style: italic;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-light);
  color: #fff;
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.btn-icon {
  font-size: 1rem;
}

/* --- Platform Links --- */
.platforms {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.platform-link:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-glow);
}

.platform-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header .label {
  margin-bottom: 1rem;
  display: block;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 500px;
}

/* --- Episode Cards (full-width stacked) --- */
.episodes-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.episode-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  overflow: hidden;
  padding: 2rem;
  align-items: start;
}

.episode-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.episode-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.episode-thumbnail iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.episode-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-thumbnail .placeholder-icon {
  color: var(--text-muted);
  opacity: 0.3;
}

.episode-number {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(10, 10, 10, 0.85);
  padding: 0.35rem 0.7rem;
  backdrop-filter: blur(10px);
  z-index: 2;
  pointer-events: none;
}

.episode-content {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.episode-meta {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.episode-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.episode-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.episode-players {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: auto;
}

.episode-player-slot {
  width: 100%;
  background: var(--bg-secondary);
  overflow: hidden;
}

.episode-player-slot iframe {
  width: 100%;
  display: block;
  border: none;
}

.episode-player-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- About Section / Page --- */
/* Legacy about-hero removed — now uses .hero-fs + .about-hero-fs */

.about-content {
  display: block;
  max-width: 750px;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.team-grid-centered {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-grid-centered .team-card {
  flex: 0 1 260px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.team-role {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- Contact Page --- */
.contact-hero {
  padding: 10rem 0 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all var(--transition);
}

.contact-link-item:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.contact-link-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

.contact-link-item span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* --- Newsletter --- */
.newsletter {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 3.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h3 {
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.newsletter p {
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.9rem 1rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  white-space: nowrap;
}

/* --- Latest Episodes (Home) --- */
.latest-episodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.latest-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.8rem;
  transition: all var(--transition);
}

.latest-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.latest-card .episode-meta {
  margin-bottom: 0.8rem;
}

.latest-card .episode-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.latest-card .episode-desc {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.latest-card .btn-outline {
  font-size: 0.65rem;
  padding: 0.6rem 1.2rem;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--accent-light);
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--border-hover);
  margin: 0 auto 2rem;
}

/* --- Atmospheric Glow Effects --- */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.04;
  z-index: -1;
}

.glow-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -100px;
  right: -100px;
}

.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: #8a3f3f;
  bottom: -50px;
  left: -100px;
}

/* --- Page Header (subpages) --- */
.page-header {
  padding: 10rem 0 3rem;
}

.page-header .label {
  margin-bottom: 1rem;
  display: block;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 550px;
  font-size: 1rem;
  line-height: 1.8;
}

/* --- Cinematic Section Separators --- */
section {
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--border-hover), transparent);
  opacity: 0.5;
}

section:first-of-type::before {
  display: none;
}

/* Emphasis glow on italic headings */
h1 em, h2 em {
  color: var(--accent-light);
  font-style: italic;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 1001;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .latest-episodes {
    grid-template-columns: 1fr;
  }

  .episodes-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
  }

  .newsletter {
    padding: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-right: 1px solid var(--border);
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  section {
    padding: 4rem 0;
  }

  .fs-section {
    min-height: auto !important;
    padding: 6rem 2rem !important;
  }

  .hero-title-fs {
    font-size: 12vw !important;
  }

  .big-text {
    font-size: 6vw !important;
  }

  .massive-text {
    font-size: 8vw !important;
  }

  .feature-title {
    font-size: 10vw !important;
  }

  .ep-row-title {
    font-size: 5vw !important;
  }

  .episode-feature-inner {
    grid-template-columns: 1fr !important;
  }

  .newsletter-form-fs {
    flex-direction: column;
  }

  .newsletter-form-fs input {
    border-right: 1px solid var(--border) !important;
    border-bottom: none;
  }
}


/* ============================================
   BIRTH.TV–INSPIRED FULL-SCREEN SECTIONS
   Cinematic · Immersive · Typography-Driven
   ============================================ */

/* --- Full-screen Section Base --- */
.fs-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 4rem;
  overflow: hidden;
}

.fs-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.fs-left {
  text-align: left;
}

.fs-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Hero Full-Screen --- */
.hero-fs {
  flex-direction: column;
  text-align: center;
  background: #060808;
  position: relative;
  overflow: hidden;
}

/* Curtain background image — high-res */
/* Hero video background (index) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Hero curtain background (about) */
.hero-curtain {
  position: absolute;
  inset: 0;
  background: url('../images/hero-curtain.png') center center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Gradient overlay for hero sections */
.hero-fs::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 8, 0.3) 0%, transparent 25%, transparent 70%, rgba(6, 8, 8, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

/* About hero — shorter than index hero */
.about-hero-fs {
  min-height: 70vh;
}

/* About page — pure black background, no orbs */
.about-page {
  background-color: #000;
}
.about-page section {
  background: transparent;
}

/* Transparent logo overlayed on the curtain */
.hero-logo-overlay {
  position: relative;
  z-index: 2;
  width: min(72vw, 1100px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 40px rgba(0, 0, 0, 0.5));
  animation: heroLogoFade 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

@keyframes heroLogoFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-content-fs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-fs {
  width: 50px;
  height: auto;
  margin-bottom: 2rem;
  opacity: 0.5;
}

.hero-the {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-the em {
  font-style: italic;
}

.hero-name-fs {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  font-style: normal;
  text-indent: 0.35em; /* compensate for letter-spacing on last char */
}

.hero-show-fs {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-indent: 0.5em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.scroll-hint span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Definition Section (dictionary style) --- */
.definition-fs {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.definition-block {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.def-word {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
}

.def-phonetic {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.def-type {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.5vw, 1.3rem);
  font-style: italic;
  color: var(--accent);
}

.def-meaning {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.def-etym {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

.def-etym em {
  color: var(--accent-light);
  font-style: italic;
}

/* --- Tagline Section --- */
.tagline-fs {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.tagline-bg {
  position: absolute;
  inset: 0;
  background: url('../images/tagline-bg.png') center center / cover no-repeat;
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
  filter: brightness(1.15) contrast(0.95);
}

.tagline-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.25) 100%);
}

.tagline-fs .fs-content {
  position: relative;
  z-index: 1;
}

.label-fs {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 2.5rem;
}

.big-text {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--text-primary);
  max-width: 900px;
  margin-bottom: 3rem;
}

.big-text em {
  color: var(--accent-light);
}

.tagline-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--text-primary);
  max-width: 1000px;
  margin-bottom: 3.5rem;
  text-transform: none;
}

.tagline-accent {
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-stretch: 125%;
  font-weight: 700;
  font-style: normal;
  color: #ff1f1f;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.85em;
  display: inline-block;
  transform: translateY(-0.05em);
}

.platforms-fs {
  display: flex;
  gap: 2rem;
}

.platforms-fs a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.platforms-fs a:hover {
  color: var(--text-primary);
}

.platforms-fs a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.platforms-fs a:hover::after {
  width: 100%;
}

/* --- Episode Feature Section --- */
.episode-feature-fs {
  background: var(--bg-secondary);
  padding: 0 !important;
  min-height: auto;
}

.episode-feature-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 100vh;
  width: 100%;
}

.episode-feature-video {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
}

.episode-feature-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.episode-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-guest {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 2rem;
}

.link-fs {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: color var(--transition);
}

.link-fs:hover {
  color: var(--accent-light);
}

/* --- Episodes List (birth.tv director list style) --- */
.episodes-list-fs {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.episodes-stack {
  display: flex;
  flex-direction: column;
}

.ep-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(229, 9, 20, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.ep-row:hover {
  padding-left: 1.5rem;
  border-bottom-color: var(--accent);
}

.ep-row-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color var(--transition);
}

.ep-row:hover .ep-row-title {
  color: var(--accent-light);
}

.ep-row-guest {
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  font-style: italic;
  color: var(--text-muted);
  transition: color var(--transition);
}

.ep-row:hover .ep-row-guest {
  color: var(--text-secondary);
}

/* --- Mission Statement --- */
.mission-fs {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.massive-text {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.massive-text em {
  color: var(--accent-light);
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
}

.mission-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 500px;
}

/* --- Newsletter Full-screen --- */
.newsletter-fs {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.newsletter-form-fs {
  display: flex;
  max-width: 500px;
  width: 100%;
}

.newsletter-form-fs input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 1rem 1.2rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form-fs input:focus {
  border-color: var(--accent);
}

.newsletter-form-fs button {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.newsletter-form-fs button:hover {
  background: var(--accent-light);
  box-shadow: 0 0 30px var(--accent-glow);
}

/* --- Footer Full-screen style --- */
.footer-fs {
  border-top: 1px solid var(--border);
  padding: 2rem 4rem;
}

.footer-fs-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-show-name {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--accent-light);
}

.footer-fs-inner > span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.footer-producer {
  color: var(--accent-light);
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-producer:hover {
  opacity: 0.7;
}

.footer-fs-links {
  display: flex;
  gap: 1.5rem;
}

.footer-fs-links a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-fs-links a:hover {
  color: var(--accent-light);
}

/* --- Reveal Animations --- */
.reveal-text {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}
