/* ============================================
   ABERRANTE TV — estilo cinematográfico minimalista
   ============================================ */

:root {
  --tv-bg: #0a0a0a;
  --tv-text: #ffffff;
  --tv-muted: rgba(255, 255, 255, 0.52);
  --tv-dim: rgba(255, 255, 255, 0.32);
  --tv-border: rgba(255, 255, 255, 0.1);
  --tv-ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* Margen lateral: centra el contenido en un máx ~1500px en pantallas anchas */
  --tv-gutter: max(clamp(20px, 3.5vw, 48px), calc((100vw - 1500px) / 2));
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }


.tv-body {
  background: var(--tv-bg);
  color: var(--tv-text);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* Intro de entrada */
.tv-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease-out;
}
.tv-intro.hide { opacity: 0; pointer-events: none; }

.tv-intro-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ============================================
   HEADER
   ============================================ */
.tv-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--tv-gutter);
  z-index: 200;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  transition: background 0.4s var(--tv-ease), border-color 0.4s var(--tv-ease);
}

.tv-header.solid {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--tv-border);
}

.tv-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tv-logo-img {
  height: 30px;
  width: auto;
  opacity: 0.95;
}

.tv-logo-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: #fff;
  color: #000;
  border-radius: 20px;
  padding: 2px 7px;
  line-height: 1;
}

/* Nav con efecto "tubelight" (barra de luz que se desliza) */
.tv-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--tv-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 5px;
}

.tv-nav a {
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 400;
  color: var(--tv-muted);
  padding: 8px 22px;
  border-radius: 30px;
  white-space: nowrap;
  transition: color 0.3s var(--tv-ease);
}

.tv-nav a:hover { color: #fff; }
.tv-nav a.active { color: #fff; }

.tv-nav-tube {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 0;
  height: calc(100% - 10px);
  background: rgba(255,255,255,0.1);
  border-radius: 30px;
  z-index: 1;
  transition: left 0.45s var(--tv-ease), width 0.45s var(--tv-ease);
}

.tv-nav-tube::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 0 16px 3px rgba(255,255,255,0.7), 0 0 30px 8px rgba(255,255,255,0.35);
}

.tv-header-right { display: flex; align-items: center; gap: 18px; }

.tv-back {
  font-size: 13px;
  color: var(--tv-muted);
  transition: color 0.3s var(--tv-ease);
}
.tv-back:hover { color: #fff; }

/* ============================================
   HERO
   ============================================ */
.tv-hero {
  position: relative;
  aspect-ratio: 21 / 9;
  max-height: 92vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.tv-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Video de fondo del hero (Originals en reproducción silenciosa) */
.tv-hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.tv-hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
}

.tv-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, var(--tv-bg) 1%, rgba(10,10,10,0.15) 45%, transparent 78%),
    linear-gradient(to right, rgba(10,10,10,0.8) 0%, transparent 60%);
}

.tv-hero-content {
  position: relative;
  z-index: 3;
  padding: 0 var(--tv-gutter) clamp(64px, 11vh, 120px);
  max-width: 680px;
}

.tv-hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.tv-hero-title {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.tv-hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--tv-muted);
  margin-bottom: 28px;
}

.tv-hero-watch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s var(--tv-ease), border-color 0.3s var(--tv-ease);
}

.tv-hero-watch:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Barra de progreso segmentada (estilo stories) */
.tv-hero-progress {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Punto por defecto (no reproduciéndose) */
.tv-hero-progress .seg {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
  cursor: pointer;
  transition: width 0.4s var(--tv-ease), height 0.4s var(--tv-ease),
              border-radius 0.4s var(--tv-ease), background 0.4s var(--tv-ease);
}

/* Barra de carga cuando se está reproduciendo */
.tv-hero-progress .seg.active {
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.25);
}

.tv-hero-progress .seg-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
}


/* ============================================
   FILAS
   ============================================ */
.tv-rows {
  position: relative;
  z-index: 3;
  margin-top: clamp(-60px, -6vh, -30px);
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vh, 64px);
}

.tv-row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--tv-gutter);
  margin-bottom: 18px;
}

.tv-row-titles h2 {
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.tv-row-titles p {
  font-size: 13px;
  font-weight: 300;
  color: var(--tv-muted);
  margin-top: 4px;
}

.tv-row-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tv-row-viewall {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tv-muted);
  transition: color 0.3s var(--tv-ease);
}
.tv-row-viewall:hover { color: #fff; }

.tv-row-arrows { display: flex; gap: 8px; }

.tv-row-arrows button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--tv-border);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s var(--tv-ease), color 0.3s var(--tv-ease);
}
.tv-row-arrows button:hover { background: rgba(255,255,255,0.1); color: #fff; }

.tv-row-soon {
  margin: 0 var(--tv-gutter);
  height: clamp(120px, 16vw, 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--tv-border);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}
.tv-row-soon span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tv-dim);
}

.tv-track {
  display: flex;
  gap: 16px;
  padding: 4px var(--tv-gutter) 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tv-track::-webkit-scrollbar { display: none; }

/* ---- TARJETA ---- */
.tv-card {
  flex-shrink: 0;
  width: clamp(200px, 17vw, 270px);
  cursor: pointer;
  scroll-snap-align: start;
}

.tv-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #161616;
  transition: transform 0.4s var(--tv-ease), box-shadow 0.4s var(--tv-ease);
}

.tv-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--tv-ease);
}

.tv-card:hover .tv-card-thumb {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.tv-card:hover img {
  transform: scale(1.05);
}

.tv-card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s var(--tv-ease), transform 0.4s var(--tv-ease);
}
.tv-card:hover .tv-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.tv-card-info { padding: 12px 2px 0; }

.tv-card-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.tv-card-sub {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--tv-muted);
  margin-top: 2px;
}

/* ---- Fila de afiches verticales (Originales) ---- */
.tv-row--posters .tv-card {
  width: clamp(150px, 13vw, 195px);
}
.tv-row--posters .tv-card-thumb {
  aspect-ratio: 2 / 3;
}

/* ============================================
   CTA — envía tu pieza (fondo de onda)
   ============================================ */
.tv-cta {
  position: relative;
  overflow: hidden;
  margin: clamp(40px, 6vh, 80px) 0 0;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0c0e1a;
}

.tv-cta-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.tv-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,5,10,0.25) 0%, rgba(5,5,10,0.72) 100%);
}

.tv-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 4vw, 48px);
}

.tv-cta-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}

.tv-cta-title {
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.tv-cta-text {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 32px;
}

.tv-cta-btn {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 40px;
  padding: 15px 34px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s var(--tv-ease), opacity 0.3s var(--tv-ease);
}
.tv-cta-btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* ---- Modal formulario ---- */
.tv-form-modal {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--tv-ease), visibility 0.35s var(--tv-ease);
}
.tv-form-modal.open { opacity: 1; visibility: visible; }

.tv-form-card {
  position: relative;
  width: min(100%, 520px);
  background: #111319;
  border: 1px solid var(--tv-border);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
}

.tv-form-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none; border: none;
  color: var(--tv-muted);
  font-size: 18px; cursor: pointer;
  transition: color 0.2s ease;
}
.tv-form-close:hover { color: #fff; }

.tv-form-title { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; }
.tv-form-sub { font-size: 14px; font-weight: 300; color: var(--tv-muted); margin-top: 8px; margin-bottom: 26px; }

.tv-form { display: flex; flex-direction: column; gap: 12px; }
.tv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.tv-form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--tv-border);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s var(--tv-ease);
}
.tv-form-input::placeholder { color: rgba(255,255,255,0.35); }
.tv-form-input:focus { border-color: rgba(255,255,255,0.45); }
.tv-form-textarea { resize: none; min-height: 90px; }

.tv-form-submit {
  margin-top: 6px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.25s var(--tv-ease);
}
.tv-form-submit:hover { opacity: 0.88; }

.tv-form-success {
  display: none;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  padding: 8px 0;
}
.tv-form-success.show { display: block; }

@media (max-width: 600px) {
  .tv-form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.tv-footer {
  border-top: 1px solid var(--tv-border);
  padding: clamp(48px, 7vh, 80px) var(--tv-gutter) 36px;
}

.tv-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.tv-footer-brand .tv-logo-img { height: 24px; }

.tv-footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--tv-muted);
  max-width: 320px;
  margin-top: 18px;
}

.tv-footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tv-dim);
  margin-bottom: 18px;
}

.tv-footer-col a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: var(--tv-muted);
  margin-bottom: 12px;
  transition: color 0.3s var(--tv-ease);
}
.tv-footer-col a:hover { color: #fff; }

.tv-footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--tv-border);
}
.tv-footer-bottom p {
  font-size: 12px;
  color: var(--tv-dim);
}

/* ============================================
   VISTA DE DETALLE
   ============================================ */
.tv-detail {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: var(--tv-bg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--tv-ease), visibility 0.4s var(--tv-ease);
}
.tv-detail.open { opacity: 1; visibility: visible; }

.tv-detail-bar {
  flex-shrink: 0;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 var(--tv-gutter);
}

.tv-detail-back {
  background: none;
  border: none;
  color: var(--tv-muted);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s var(--tv-ease);
}
.tv-detail-back:hover { color: #fff; }

.tv-detail-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 var(--tv-gutter) 80px;
}

/* Escenario: portada grande que se reemplaza por el video al reproducir */
.tv-detail-stage {
  position: relative;
  width: min(100%, 1080px);
  margin: 4px auto 0;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.tv-detail-cover { position: absolute; inset: 0; }
.tv-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tv-detail-cover-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.25) 100%);
}
.tv-detail-bigplay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.3s var(--tv-ease), background 0.3s var(--tv-ease);
}
.tv-detail-bigplay:hover { transform: translate(-50%, -50%) scale(1.08); background: rgba(0,0,0,0.5); }
.tv-detail-bigplay svg { margin-left: 3px; }

.tv-detail-player { position: absolute; inset: 0; display: none; }
.tv-detail-player iframe { width: 100%; height: 100%; }

/* Al reproducir: oculta portada, muestra video */
.tv-detail-stage.playing .tv-detail-cover { display: none; }
.tv-detail-stage.playing .tv-detail-player { display: block; }

.tv-detail-info { width: min(100%, 1080px); margin: 30px auto 0; }

.tv-detail-title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.tv-detail-type { font-size: 14px; color: var(--tv-muted); }

/* Meta al final: tipo + tags, separado con un divisor */
.tv-detail-meta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--tv-border);
}

/* Botón Reproducir (rectangular redondeado, estilo Netflix) */
.tv-detail-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 11px 26px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.25s var(--tv-ease), transform 0.25s var(--tv-ease);
}
.tv-detail-play:hover { opacity: 0.86; transform: translateY(-1px); }

/* Descripción */
.tv-detail-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin-top: 26px;
}

/* Crédito al creador + redes */
.tv-detail-credit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 22px;
}
.tv-detail-credit-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--tv-muted);
}
.tv-detail-credit-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.tv-detail-credit-country {
  font-size: 14px;
  font-weight: 300;
  color: var(--tv-muted);
}
.tv-detail-credit-country:empty { display: none; }
/* Bloque "Contacta al autor" (debajo de la descripción) */
.tv-detail-contact { margin-top: 28px; }
.tv-detail-contact-label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--tv-muted);
  margin-bottom: 12px;
}

.tv-detail-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tv-social {
  font-size: 13px;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--tv-border);
  border-radius: 30px;
  padding: 6px 14px;
  transition: background 0.3s var(--tv-ease), border-color 0.3s var(--tv-ease);
}
.tv-social:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }

.tv-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.tv-detail-like, .tv-detail-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--tv-border);
  color: #fff;
  border-radius: 40px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s var(--tv-ease), border-color 0.3s var(--tv-ease), color 0.3s var(--tv-ease);
}
.tv-detail-like:hover, .tv-detail-share:hover { background: rgba(255,255,255,0.12); }

.tv-detail-like.liked { color: #ff3b1d; border-color: rgba(255,59,29,0.5); }
.tv-detail-like.liked svg { fill: #ff3b1d; stroke: #ff3b1d; }

.tv-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tv-detail-tags span {
  font-size: 12px;
  color: var(--tv-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--tv-border);
  border-radius: 30px;
  padding: 6px 14px;
}

.tv-detail-related { width: min(100%, 1080px); margin: 56px auto 0; }
.tv-detail-related h2 { font-size: 20px; font-weight: 600; margin-bottom: 18px; }
.tv-detail-related .tv-track { padding: 4px 0 8px; }

/* Toast (enlace copiado) */
.tv-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 40px;
  opacity: 0;
  visibility: hidden;
  z-index: 7000;
  transition: opacity 0.3s var(--tv-ease), transform 0.3s var(--tv-ease), visibility 0.3s var(--tv-ease);
}
.tv-toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .tv-nav { display: none; }
  /* En móvil mandamos solo con la altura; anulamos el aspect-ratio 21/9
     (si no, el navegador calcula el ancho desde la altura y desborda) */
  .tv-hero { aspect-ratio: auto; height: 76vh; max-height: none; }
  .tv-hero-title { font-size: clamp(34px, 11vw, 56px); }
  .tv-card { width: 74vw; }
  .tv-row--posters .tv-card { width: 50vw; }
  .tv-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tv-footer-brand { grid-column: 1 / -1; }

  /* Sin margen negativo: evita que la barra de progreso del hero
     se solape con el título de la primera fila */
  .tv-rows { margin-top: 16px; }
  .tv-hero-progress { bottom: 20px; }
}
