/*
Theme Name: L7+ Streaming
Theme URI: https://l7plus.com
Description: Plataforma de streaming L7+. Tema independiente. Estilo basado en Vayvo con identidad L7+.
Author: L7+ / Eleven Creators
Version: 5.0.0
Requires at least: 6.3
Requires PHP: 8.1
Text Domain: l7plus
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:      #0d0d0d;
  --bg2:     #1e1d26;
  --bg3:     #16151c;
  --border:  rgba(255,255,255,.1);
  --gold:    #c9a84c;
  --gold-d:  #a8892f;
  --cyan:    #c9a84c;
  --text:    #ffffff;
  --muted:   rgba(255,255,255,.65);
  --hh:      70px;
  --mw:      1200px;
  --ease:    .25s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Fira Sans', 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color var(--ease); }
a:hover { color: #fff; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}

/* ============================================================
   LAYOUT — 1200px como Vayvo
   ============================================================ */
.l7w { max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
#l7-page { padding-top: var(--hh); }

/* ============================================================
   HEADER — 70px como Vayvo
   ============================================================ */
#l7h {
  position: fixed; top: 0; left: 0; right: 0;
  min-height: var(--hh);
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease);
}
#l7h.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.6); }
.l7hi {
  display: flex; align-items: center;
  min-height: var(--hh);
  max-width: var(--mw); margin: 0 auto;
  padding: 10px 28px; /* padding vertical para respirar */
}
.l7-logo { flex-shrink: 0; margin-right: 28px; }
.l7-logo a {
  display: flex; align-items: center;
  color: var(--cyan);
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 700; letter-spacing: 2px;
}
.l7-logo a img, .l7-logo a svg, .l7-logo .custom-logo {
  width: auto !important; display: block;
}
/* La altura se controla vía inline style desde PHP (Ajustes → L7+ → Header) */
.l7-logo .custom-logo-link { display: flex; align-items: center; }
.l7-logo .custom-logo-link img { max-width: 240px; }

/* Nav */
.l7-nav { display: flex; align-items: center; height: 100%; flex: 1; gap: 0; }
.l7-nav a {
  display: flex; align-items: center; height: 100%;
  padding: 0 16px;
  color: var(--muted);
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 500;
  position: relative; transition: color var(--ease);
}
.l7-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--cyan);
  transform: scaleX(0); transition: transform var(--ease);
}
.l7-nav a:hover { color: #fff; }
.l7-nav a:hover::after, .l7-nav a.current-menu-item::after { transform: scaleX(1); }
.l7-nav a.current-menu-item { color: #fff; }

/* Header actions */
.l7-ha { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.l7-sbtn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: none; border: none; color: var(--muted);
  font-size: 15px; cursor: pointer; border-radius: 4px;
  transition: color var(--ease), background var(--ease);
}
.l7-sbtn:hover { color: #fff; background: rgba(255,255,255,.07); }

/* Perfil */
.l7-prof { position: relative; }
.l7-pbtn {
  display: flex; align-items: center; gap: 10px;
  background: transparent; border: 1px solid rgba(255,255,255,.2);
  border-radius: 60px;
  padding: 8px 16px 8px 8px;
  color: #fff; font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 500; cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.l7-pbtn:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.l7-av-photo {
  width: 30px; height: 30px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.3);
}
.l7-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cyan); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; flex-shrink: 0;
}
.l7-chev { font-size: 9px; opacity: .45; transition: transform var(--ease); }
.l7-prof.open .l7-chev { transform: rotate(180deg); }
.l7-drop {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; min-width: 210px;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  overflow: hidden; z-index: 200;
}
.l7-prof.open .l7-drop { display: block; }
.l7-drop a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  color: var(--muted);
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease), background var(--ease);
}
.l7-drop a:last-child { border-bottom: none; }
.l7-drop a:hover { color: #fff; background: rgba(255,255,255,.04); }
.l7-drop a i { width: 16px; text-align: center; font-size: 13px; }

/* CTA no logueado */
.l7-hlogin {
  color: var(--muted); font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 500; padding: 10px 14px;
  transition: color var(--ease);
}
.l7-hlogin:hover { color: #fff; }
.l7-hbuy {
  background: transparent; color: #fff !important;
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 500;
  padding: 11px 30px; border-radius: 60px;
  border: 2px solid #fff !important;
  transition: border-color var(--ease), color var(--ease);
}
.l7-hbuy:hover { border-color: var(--cyan) !important; color: var(--cyan) !important; }

/* Hamburger */
.l7-hbg {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 42px; height: 42px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.l7-hbg span {
  display: block; width: 22px; height: 2px;
  background: var(--muted); border-radius: 2px; transition: all .25s;
}
.l7-hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.l7-hbg.open span:nth-child(2) { opacity: 0; }
.l7-hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú móvil */
#l7-mnav {
  display: none; position: fixed; top: var(--hh); left: 0; right: 0; bottom: 0;
  background: var(--bg3); z-index: 999; overflow-y: auto;
  border-top: 1px solid var(--border);
}
#l7-mnav.open { display: block; }
.l7-mni { padding: 24px 28px; }
#l7-mnav a {
  display: block; font-size: 20px; font-weight: 600; letter-spacing: 1px;
  color: var(--muted); padding: 14px 0;
  border-bottom: 1px solid var(--border); transition: color var(--ease);
}
#l7-mnav a:hover { color: var(--cyan); }

/* Search panel */
#l7-sp {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 18px 28px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
#l7-sp.open { display: block; }

/* ============================================================
   SEARCH BAR
   ============================================================ */
.l7-sw { position: relative; }
.l7-si { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 14px; pointer-events: none; }
.l7-sinput {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px; color: #fff; padding: 14px 44px;
  font-size: 16px; font-weight: 300; outline: none; transition: border-color var(--ease);
}
.l7-sinput:focus { border-color: var(--cyan); }
.l7-sinput::placeholder { color: var(--muted); }
.l7-sclear { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--muted); cursor: pointer; font-size: 14px; transition: color var(--ease); }
.l7-sclear:hover { color: #fff; }
.l7-sf { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; align-items: center; }
.l7-fsel {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px; color: var(--muted); padding: 10px 32px 10px 14px;
  font-size: 14px; font-weight: 500; cursor: pointer; outline: none;
  appearance: none; -webkit-appearance: none; min-width: 150px;
  transition: border-color var(--ease), color var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,.35)'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
}
.l7-fsel:hover, .l7-fsel:focus { border-color: rgba(255,255,255,.3); color: #fff; }
.l7-fsel option { background: var(--bg2); }

/* ============================================================
   LOADER + SCROLL TOP
   ============================================================ */
#l7-ldr {
  position: fixed; inset: 0; background: var(--bg); z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity .4s, visibility .4s;
}
#l7-ldr.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.l7-ll { font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 700; letter-spacing: 6px; color: var(--cyan); }
.l7-lb { width: 80px; height: 2px; background: rgba(255,255,255,.1); overflow: hidden; border-radius: 2px; }
.l7-lbf { height: 100%; background: var(--cyan); animation: l7ld 1.2s ease-in-out infinite; }
@keyframes l7ld { 0% { width:0; margin-left:0 } 50% { width:60%; margin-left:20% } 100% { width:0; margin-left:100% } }
#l7-st { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--bg2); border: 1px solid var(--border); color: var(--muted); border-radius: 4px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--ease); z-index: 500; }
#l7-st.on { opacity: 1; visibility: visible; transform: translateY(0); }
#l7-st:hover { color: #fff; border-color: rgba(255,255,255,.3); }

/* ============================================================
   BOTONES — border-radius 60px como Vayvo
   ============================================================ */
.l7btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-weight: 500; font-size: 16px;
  cursor: pointer; border: none;
  transition: all var(--ease); text-decoration: none;
  white-space: nowrap; border-radius: 60px;
}
.l7btn-gold {
  background: var(--cyan); color: #fff;
  padding: 16px 40px;
  border: 2px solid var(--cyan);
}
.l7btn-gold:hover { background: #0b78a2; border-color: #0b78a2; color: #fff; }
.l7btn-ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  padding: 16px 37px;
}
.l7btn-ghost:hover { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.6); }

/* ============================================================
   WATCHLIST BTN
   ============================================================ */
.l7-wlbtn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 500;
  color: #fff; background: transparent;
  border: 2px solid rgba(255,255,255,.35); border-radius: 60px;
  padding: 14px 30px; cursor: pointer; transition: all var(--ease);
}
.l7-wlbtn:hover, .l7-wlbtn.on {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6);
}

/* ============================================================
   HERO — 75vh como Vayvo, con gradiente base
   ============================================================ */
#l7-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  background: #444 center/cover no-repeat;
  margin-bottom: -100px; /* overlap Vayvo */
  overflow: hidden;
}
#l7-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.95) 100%);
}
/* Gradiente base negro en el fondo (como Vayvo #video-page-title-gradient-base) */
#l7-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; background: var(--bg);
  z-index: 0;
}
.l7-hc {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding-bottom: 130px; /* sobre el gradiente base */
}

/* Play button en hero — 100x100 como Vayvo */
#l7-hero-play {
  position: absolute;
  top: calc(50% - 85px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100px; height: 100px;
  border-radius: 50%; border: 3px solid #fff;
  background: rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 42px;
  text-decoration: none;
  transition: all var(--ease);
  box-shadow: 0 0 20px rgba(0,0,0,.2);
}
#l7-hero-play i { margin-left: 5px; }
#l7-hero-play:hover {
  background: rgba(0,0,0,.4);
  box-shadow: 0 0 20px rgba(0,0,0,.5);
  transform: translateX(-50%) scale(1.05);
  color: #fff;
}

/* Título h1 en hero — 70px como Vayvo */
.l7-htitle {
  font-size: 70px; font-weight: 700; margin-bottom: 20px; line-height: 1.05;
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
}
.l7-hmeta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
  margin: 0 0 28px 0; padding: 0; list-style: none; width: 100%;
}
.l7-hmi {
  line-height: 1; margin: 0 16px 6px 0; padding: 0 16px 0 0;
  float: left; border-right: 2px solid rgba(255,255,255,.25);
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-weight: 500; color: rgba(255,255,255,.8); font-size: 17px;
}
.l7-hmi:last-child { border: none; margin-right: 0; padding-right: 0; }
.l7-hdot { display: none; }
.l7-hmi.gold { color: var(--gold); }
.l7-hmi.rating-badge {
  position: relative; top: -3px; left: 1px;
  display: inline-block; text-transform: uppercase;
  padding: 5px; font-size: 14px; line-height: 1;
  border: 1px solid #fff;
}
.l7-hgenres { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.l7-gtag {
  font-size: 15px; color: rgba(255,255,255,.68);
  transition: color var(--ease);
}
.l7-gtag:after { content: ', '; }
.l7-gtag:last-child:after { display: none; }
.l7-hdesc { font-size: 16px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.8); max-width: 600px; margin-bottom: 28px; }
.l7-hactions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 0;
}
.l7-eyebrow {
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 500; color: var(--cyan);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px;
}

/* ============================================================
   SERIE LAYOUT: sidebar 260px + main (como Vayvo)
   ============================================================ */
#l7-serie-layout {
  display: flex; flex-direction: row;
  gap: 0;
  padding-top: 40px;
}
#l7-serie-main {
  float: right;
  width: calc(100% - 315px);
}
#l7-serie-sidebar {
  float: left;
  width: 260px;
  margin-right: 55px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--hh) + 20px);
}

/* Sidebar blocks — fondo #1e1d26 como Vayvo */
.l7-sb-block {
  margin-bottom: 2px;
  padding: 16px 20px;
  background: var(--bg2);
}
.l7-sb-label {
  margin-bottom: 3px;
  font-size: 17px; font-weight: 500;
  color: #848db3;
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  display: block;
}
.l7-sb-value { font-size: 15px; color: rgba(255,255,255,.85); }

/* ============================================================
   GRID DE SERIES — 2 columnas grandes como imagen adjunta
   ============================================================ */
#l7-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.l7-card { position: relative; overflow: hidden; display: block; background: #111; }
.l7-cthumb { position: relative; overflow: hidden; background: #222; aspect-ratio: 16/9; }
.l7-cthumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.l7-card:hover .l7-cthumb img { transform: scale(1.04); }

/* Gradiente sobre imagen — exacto de Vayvo */
.l7-cov {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.95) 100%);
}
/* Border cian en hover — exacto de Vayvo */
.l7-cborder {
  position: absolute; inset: 0;
  border: 2px solid rgba(0,0,0,0);
  pointer-events: none; transition: border-color var(--ease); z-index: 4;
  width: calc(100% - 4px); height: calc(100% - 4px); top: 0; left: 0;
}
.l7-card:hover .l7-cborder { border-color: var(--cyan); }

/* Candado */
.l7-clock { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; background: rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,.6); z-index: 3; }
.l7-clock.ok { color: var(--cyan); border-color: rgba(34,178,238,.4); }

/* Info sobre imagen — como Vayvo */
.l7-cinfo {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 24px 16px; z-index: 2;
}
/* Título tarjeta — 26px como Vayvo */
.l7-ctitle {
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 500;
  color: #fff; margin-bottom: 0;
}
/* Estrellas en tarjeta */
.l7-cstars { margin: 3px 0 4px; }
/* Categoría en tarjeta — 15px, color rgba como Vayvo */
.l7-ccat {
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 15px; color: rgba(255,255,255,.68);
}
/* Meta (año, episodios) */
.l7-cmeta { display: flex; gap: 0; flex-wrap: wrap; margin-top: 2px; }
.l7-cmi {
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 14px; color: rgba(255,255,255,.55);
  padding-right: 8px; margin-right: 8px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.l7-cmi:last-child { border-right: none; }
.l7-cmi.gold { color: var(--gold); }
.l7-cnothumb { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.12); font-size: 32px; }

/* Filtros Isotope — tabs como Vayvo (botones píldora) */
.l7-isof { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.l7-ifbtn {
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--muted); background: transparent;
  border: none; border-radius: 60px; padding: 10px 24px;
  cursor: pointer; transition: all var(--ease);
}
.l7-ifbtn:hover { color: #fff; background: rgba(255,255,255,.07); }
.l7-ifbtn.on {
  background: var(--cyan); color: #fff;
  box-shadow: 0 4px 12px rgba(34,178,238,.3);
}
.l7-ifc { font-size: 13px; opacity: .6; margin-left: 4px; }

/* ============================================================
   EPISODIOS — lista 50/50 como Vayvo
   ============================================================ */
#l7-eps { padding: 40px 0 60px; clear: both; }

/* Nav temporadas */
.l7-snav { display: flex; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 28px; overflow-x: auto; scrollbar-width: none; }
.l7-snav::-webkit-scrollbar { display: none; }
.l7-stab {
  flex-shrink: 0;
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 500;
  color: rgba(255,255,255,.6);
  padding: 18px 28px;
  border-bottom: 2px solid transparent; cursor: pointer;
  white-space: nowrap; transition: all var(--ease);
  background: none; border-left: none; border-right: none; border-top: none;
}
.l7-stab:hover { color: #fff; }
.l7-stab.on { color: #fff; border-bottom-color: var(--cyan); }

/* Lista episodios — flex 50/50 */
.l7-eplist { display: flex; flex-direction: column; gap: 0; }
.l7-epitem {
  display: flex; flex-direction: row; align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  cursor: pointer; transition: background var(--ease);
}
.l7-epitem:last-child { border-bottom: none; }
.l7-epitem:hover { background: rgba(255,255,255,.025); }
.l7-ethumb { width: 50%; flex-shrink: 0; padding-right: 20px; }
.l7-ethi { position: relative; border-radius: 2px; overflow: hidden; background: #222; aspect-ratio: 16/9; }
.l7-ethi img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.l7-epitem:hover .l7-ethi img { transform: scale(1.04); }
.l7-ethi::before {
  content: ''; display: block; position: absolute; width: 100%; height: 100%; bottom: -1px; left: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.85) 100%);
  z-index: 1;
}
/* Play overlay episodio — 74x74 como Vayvo */
.l7-epo {
  display: block; position: absolute; inset: 0;
  text-align: center; opacity: 0; transition: opacity var(--ease); z-index: 2;
}
.l7-epitem:hover .l7-epo { opacity: 1; }
.l7-eppi {
  position: relative; top: calc(50% - 37px);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 100px; width: 74px; height: 74px;
  color: #fff; font-size: 27px;
  border: 3px solid rgba(255,255,255,.8);
  background: rgba(0,0,0,.2);
  box-shadow: 0 0 15px rgba(0,0,0,.2);
  transition: all var(--ease);
}
.l7-eppi i { margin-left: 5px; }
.l7-epitem:hover .l7-eppi { background: rgba(0,0,0,.4); border-color: #fff; box-shadow: 0 0 15px rgba(0,0,0,.5); }
.l7-efbadge { position: absolute; top: 8px; left: 8px; background: var(--cyan); color: #fff; font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 8px; border-radius: 2px; z-index: 3; }
.l7-elocked { position: absolute; inset: 0; background: rgba(0,0,0,.65); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.35); font-size: 28px; z-index: 2; }
.l7-einfo { width: 50%; padding-left: 20px; display: flex; flex-direction: column; justify-content: center; }
/* Título episodio — 22px como Vayvo */
.l7-etitle {
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 500; margin-bottom: 6px;
  color: #fff; display: block; text-decoration: none; transition: color var(--ease);
}
.l7-etitle:hover { color: var(--cyan); }
.l7-emeta { display: flex; flex-wrap: wrap; margin: 0 0 10px; padding: 0; list-style: none; }
.l7-emi {
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 15px; color: rgba(255,255,255,.65);
  margin: 0 8px 5px 0; padding: 0 8px 0 0;
  border-right: 2px solid rgba(255,255,255,.25); display: inline;
}
.l7-emi:last-child { border: none; margin-right: 0; padding-right: 0; }
.l7-emi.free { color: var(--cyan); }
.l7-emi.locked { color: rgba(255,255,255,.3); }
.l7-edesc { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.l7-buycta { margin-top: 30px; padding: 28px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; text-align: center; }
.l7-buycta p { color: rgba(255,255,255,.65); font-size: 15px; margin-bottom: 18px; }

/* Episodio actual en lista */
.l7-ep-current { background: rgba(34,178,238,.04); border-left: 3px solid var(--cyan) !important; cursor: default !important; }

/* ============================================================
   EPISODIO INDIVIDUAL — player/gate
   ============================================================ */
#l7-ep-top { position: relative; background: #000 center/cover no-repeat; }
#l7-ep-top-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,13,13,.15), rgba(13,13,13,.8)); z-index: 1; pointer-events: none; }
#l7-ep-player-wrap { position: relative; z-index: 2; width: 100%; }
#l7-ep-player { width: 100%; aspect-ratio: 16/9; background: #000; display: block; }
#l7-ep-player iframe { width: 100%; height: 100%; border: none; display: block; }
#l7-ep-top { background-color: #000; }
#l7-ep-gate-wrap { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; min-height: 420px; padding: 32px; }
#l7-ep-gate { background: rgba(13,13,13,.9); border: 1px solid rgba(255,255,255,.15); border-radius: 6px; max-width: 540px; width: 100%; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }

/* ============================================================
   CATÁLOGO HEADER
   ============================================================ */
#l7-cath { background: var(--bg); border-bottom: 1px solid var(--border); padding: 60px 0 48px; }
.l7-catey { font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.l7-catt { font-size: clamp(40px, 6vw, 72px); font-weight: 700; font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; color: #fff; margin-bottom: 12px; }
.l7-cats { font-size: 16px; color: rgba(255,255,255,.6); max-width: 480px; }

/* Sin resultados */
.l7-nores { text-align: center; padding: 80px 0; }
.l7-nores i { font-size: 40px; color: rgba(255,255,255,.15); display: block; margin-bottom: 20px; }
.l7-nores h3 { font-size: 22px; font-weight: 500; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.l7-nores p { color: rgba(255,255,255,.3); font-size: 15px; }

/* ============================================================
   ESTRELLAS / RATING
   ============================================================ */
.l7-stars { display: inline-flex; align-items: center; gap: 4px; }
.l7-stars-track { display: flex; gap: 0; font-size: 15px; }
.l7-stars-track i { font-size: 15px; }
.l7-sf-full, .l7-sf-half { color: var(--cyan); }
.l7-sf-empty { color: rgba(34,178,238,.25); }
.l7-stars-num { font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.7); margin-left: 4px; }

/* ============================================================
   SIDEBAR REVIEWS
   ============================================================ */
#l7-sidebar-reviews { margin-bottom: 2px; padding: 18px 20px; background: var(--bg2); }
#l7-sidebar-reviews h3 {
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 500; color: #848db3; margin-bottom: 14px;
}
.l7-sb-review { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.l7-sb-review:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.l7-sb-review-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.l7-sb-review-av { width: 28px; height: 28px; border-radius: 50%; background: rgba(34,178,238,.3); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.l7-sb-review-name { font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; color: #fff; }
.l7-sb-review-date { font-size: 12px; color: rgba(255,255,255,.4); }
.l7-sb-review-text { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.l7-sb-review-btn {
  display: block; width: 100%; text-align: center;
  border-radius: 60px; padding: 13px 32px;
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  color: #fff; background: transparent; border: 2px solid rgba(255,255,255,.3);
  font-size: 14px; cursor: pointer; font-weight: 400; transition: all var(--ease);
}
.l7-sb-review-btn:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.6); }
.l7-open-reviews { cursor: pointer; }

/* ============================================================
   REVIEWS POPUP
   ============================================================ */
#l7-reviews-popup { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9998; overflow-y: auto; }

/* ============================================================
   REVIEWS FORM
   ============================================================ */
.l7-rform label { display: block; font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.l7-rform input[type=text], .l7-rform input[type=email], .l7-rform textarea { width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); border-radius: 4px; color: #fff; padding: 12px 16px; font-size: 15px; outline: none; transition: border-color var(--ease); }
.l7-rform input:focus, .l7-rform textarea:focus { border-color: var(--cyan); }
.l7-rform textarea { resize: vertical; min-height: 90px; }
.l7-rform p { margin-bottom: 14px; }
.l7-stari { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; margin-bottom: 14px; }
.l7-stari input[type=radio] { display: none; }
.l7-stari label { font-size: 28px; color: rgba(34,178,238,.2); cursor: pointer; transition: color var(--ease); }
.l7-stari label:hover, .l7-stari label:hover ~ label, .l7-stari input:checked ~ label { color: var(--cyan); }

/* ============================================================
   DASHBOARD DE USUARIO — tabs Watchlist + Reviews
   ============================================================ */
#l7-dashboard { padding: 40px 0 80px; }
#l7-dashboard-layout { display: flex; gap: 48px; align-items: flex-start; }
#l7-dashboard-sidebar { width: 260px; flex-shrink: 0; position: sticky; top: calc(var(--hh) + 20px); }
#l7-dashboard-main { flex: 1; min-width: 0; }

/* Avatar grande en dashboard */
.l7-dash-avatar { text-align: center; padding: 24px 20px; background: var(--bg2); margin-bottom: 2px; }
.l7-dash-avatar img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; border: 2px solid rgba(255,255,255,.2); }
.l7-dash-avatar .l7-dash-initials { width: 80px; height: 80px; border-radius: 50%; background: var(--cyan); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 700; margin: 0 auto 12px; }
.l7-dash-name { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.l7-dash-email { font-size: 13px; color: rgba(255,255,255,.5); }

/* Sidebar menu del dashboard */
.l7-dash-nav { list-style: none; margin: 0 0 2px; padding: 0; }
.l7-dash-nav li { margin: 0; padding: 0; }
.l7-dash-nav a {
  display: block; padding: 14px 20px;
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,.65);
  background: var(--bg2);
  border-left: 3px solid transparent;
  margin-bottom: 2px; transition: all var(--ease);
}
.l7-dash-nav a:hover { color: #fff; background: rgba(255,255,255,.05); }
.l7-dash-nav a.active { color: #fff; background: rgba(255,255,255,.06); border-left-color: var(--cyan); }
.l7-dash-nav i { width: 18px; text-align: center; margin-right: 10px; font-size: 14px; }

/* Tabs del dashboard main */
#l7-dash-tabs { display: flex; width: 100%; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 28px; overflow: hidden; }
.l7-dash-tab {
  flex: 1; text-align: center;
  font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 500; color: #fff;
  border-top: 2px solid transparent;
  padding: 22px 0;
  background: rgba(255,255,255,0);
  cursor: pointer; border-bottom: none; border-left: none; border-right: none;
  transition: all var(--ease);
}
.l7-dash-tab:hover { background: rgba(255,255,255,.04); }
.l7-dash-tab.on { background: rgba(255,255,255,.06); border-top-color: var(--cyan); }

/* Panels del dashboard */
.l7-dash-panel { display: none; }
.l7-dash-panel.on { display: block; }

/* Grid de watchlist en dashboard */
.l7-wl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }

/* Reviews en dashboard */
.l7-dash-review { padding: 20px; background: var(--bg2); margin-bottom: 2px; }
.l7-dash-review-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; flex-wrap: wrap; gap: 8px; }
.l7-dash-review-serie { font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 600; color: var(--cyan); }
.l7-dash-review-date { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 2px; }
.l7-dash-review-text { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.7; }

/* Edit profile form */
#l7-edit-profile { padding: 24px; background: var(--bg2); }
#l7-edit-profile h3 { font-size: 22px; font-weight: 600; margin-bottom: 20px; }

/* ============================================================
   WOOCOMMERCE
   ============================================================ */
.woocommerce, .woocommerce-page { color: rgba(255,255,255,.65); }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .wc-proceed-to-checkout .checkout-button { background: var(--cyan) !important; color: #fff !important; font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif !important; font-weight: 500 !important; font-size: 16px !important; border: none !important; border-radius: 60px !important; padding: 14px 32px !important; transition: background var(--ease) !important; }
.woocommerce a.button:hover, .woocommerce button.button:hover { background: #0b78a2 !important; }
.woocommerce div.product form.cart .single_add_to_cart_button { width: 100%; justify-content: center; }
.woocommerce input[type=text], .woocommerce input[type=email], .woocommerce input[type=password], .woocommerce textarea, .woocommerce select { background: rgba(255,255,255,.06) !important; border: 1px solid rgba(255,255,255,.2) !important; border-radius: 4px !important; color: #fff !important; padding: 12px 16px !important; outline: none; }
.woocommerce input:focus, .woocommerce textarea:focus { border-color: var(--cyan) !important; }
.woocommerce-MyAccount-navigation { background: var(--bg2); }
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation li a { display: block; padding: 14px 20px; color: rgba(255,255,255,.65); font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 500; border-left: 3px solid transparent; margin-bottom: 2px; transition: all var(--ease); }
.woocommerce-MyAccount-navigation li.is-active a, .woocommerce-MyAccount-navigation li a:hover { color: #fff; background: rgba(255,255,255,.06); border-left-color: var(--cyan); }
table.shop_table { background: var(--bg2); border-collapse: collapse; width: 100%; }
table.shop_table th { background: rgba(255,255,255,.04); color: rgba(255,255,255,.4); font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 14px 16px; border-bottom: 1px solid var(--border); }
table.shop_table td { color: rgba(255,255,255,.7); padding: 14px 16px; border-bottom: 1px solid var(--border); }
.woocommerce-message { background: rgba(34,178,238,.07) !important; border-top: 3px solid var(--cyan) !important; color: #fff !important; border-radius: 4px !important; }
.woocommerce-error { background: rgba(220,50,50,.07) !important; border-top: 3px solid #e04444 !important; border-radius: 4px !important; }

/* ============================================================
   ARMEMBER
   ============================================================ */
.arm_setup_form_div, .arm-form-main-div { background: transparent !important; border: none !important; }
.arm_submit_btn { background: var(--cyan) !important; color: #fff !important; font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif !important; font-weight: 500 !important; border-radius: 60px !important; font-size: 16px !important; padding: 14px 32px !important; }
.arm_membership_setup_form ul.arm_module_plans_ul { margin-bottom: 30px; }
#content-pro .width-container-pro .arm_module_forms_container, #content-pro .width-container-pro .arm_module_gateways_container, #content-pro .width-container-pro .arm_module_plans_container { border-color: rgba(255,255,255,.2); }

/* ============================================================
   FOOTER
   ============================================================ */
#l7-foot { background: var(--bg2); border-top: 1px solid var(--border); padding: 56px 0 0; clear: both; }
.l7-fg { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.l7-flogo { font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; color: var(--cyan); display: inline-block; margin-bottom: 12px; }
.l7-ftag { font-size: 14px; color: rgba(255,255,255,.35); line-height: 1.65; max-width: 240px; }
.l7-fcol h5 { font-family: 'Fira Sans Condensed', 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.l7-fcol ul { display: flex; flex-direction: column; gap: 10px; }
.l7-fcol a { font-size: 15px; font-weight: 400; color: rgba(255,255,255,.5); transition: color var(--ease); }
.l7-fcol a:hover { color: var(--cyan); }
.l7-fb { border-top: 1px solid var(--border); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.l7-fc { font-size: 13px; color: rgba(255,255,255,.25); }

/* ============================================================
   404, SEARCH
   ============================================================ */
.l7-404-num { font-size: clamp(120px,20vw,200px); line-height: 1; color: rgba(34,178,238,.1); letter-spacing: 8px; font-weight: 700; }

/* ============================================================
   TAXONOMY
   ============================================================ */
.l7-tax-pill { font-size: 14px; padding: 8px 18px; border-radius: 60px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: rgba(255,255,255,.5); text-decoration: none; transition: all var(--ease); }
.l7-tax-pill:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.l7-tax-pill.active { border-color: var(--cyan); background: rgba(34,178,238,.1); color: var(--cyan); }

/* ============================================================
   WATCHLIST + MISC
   ============================================================ */
#l7-is-loader { text-align: center; padding: 32px; display: none; }
#l7-is-loader.active { display: block; }
#l7-is-loader i { font-size: 20px; color: rgba(255,255,255,.3); animation: l7spin 1s linear infinite; }
@keyframes l7spin { to { transform: rotate(360deg); } }

.l7-gate { padding: 72px 32px; text-align: center; }
.l7-gate-icon { font-size: 60px; color: rgba(255,255,255,.12); margin-bottom: 24px; }
.l7-gate h3 { font-size: 36px; font-weight: 700; letter-spacing: 2px; color: #fff; margin-bottom: 10px; }
.l7-gate p { font-size: 16px; color: rgba(255,255,255,.6); max-width: 400px; margin: 0 auto 28px; line-height: 1.7; }
.l7-gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Isotope */
#l7-grid.iso { display: flex !important; flex-wrap: wrap; }
#l7-grid.iso .l7-cw { width: calc(50% - 2px); margin: 1px; }

/* ============================================================
   ADMIN BAR FIX
   ============================================================ */
.admin-bar #l7h { top: 32px; }
.admin-bar #l7-mnav { top: calc(var(--hh) + 32px); }
.admin-bar #l7-page { padding-top: calc(var(--hh) + 32px); }
.admin-bar #l7-serie-sidebar, .admin-bar #l7-dashboard-sidebar { top: calc(var(--hh) + 52px); }
html.wp-toolbar { padding-top: 0 !important; }
@media screen and (max-width: 782px) {
  .admin-bar #l7h { top: 46px; }
  .admin-bar #l7-mnav { top: calc(var(--hh) + 46px); }
  .admin-bar #l7-page { padding-top: calc(var(--hh) + 46px); }
}

/* ============================================================
   LANDING PAGE
   ============================================================ */
.l7-landing-header { background: rgba(13,13,13,0) !important; border-bottom: none !important; }
.l7-landing-header.scrolled { background: rgba(13,13,13,.96) !important; border-bottom: 1px solid var(--border) !important; }
body.l7-landing-page #l7-page { padding-top: 0; }

/* ============================================================
   ELEMENTOR
   ============================================================ */
.elementor-page #l7-page { padding-top: var(--hh); }
.e-con, .elementor-section { background: transparent !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  #l7-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .l7-nav { display: none; }
  .l7-hlogin { display: none; }
  .l7-hbg { display: flex; }
  .l7-fg { grid-template-columns: 1fr 1fr; gap: 28px; }
  #l7-hero { height: 60vh; }
  .l7-htitle { font-size: 52px; }
  #l7-serie-layout { flex-direction: column; }
  #l7-serie-main { float: none; width: 100%; }
  #l7-serie-sidebar { float: none; width: 100%; position: static; margin-right: 0; margin-bottom: 0; display: grid; grid-template-columns: 1fr 1fr; }
  #l7-dashboard-layout { flex-direction: column; }
  #l7-dashboard-sidebar { width: 100%; position: static; }
  .l7-wl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #l7-grid { grid-template-columns: repeat(2, 1fr); }
  .l7-epitem { flex-direction: column; }
  .l7-ethumb, .l7-einfo { width: 100%; padding: 0; }
  .l7-einfo { padding-top: 14px; }
  .l7-fg { grid-template-columns: 1fr; }
  .l7-htitle { font-size: 40px; }
  .l7-wl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  :root { --hh: 60px; }
  .l7w { padding: 0 16px; }
  .l7hi { padding: 0 16px; }
  .l7-htitle { font-size: 32px; }
  #l7-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  #l7-grid.iso .l7-cw { width: calc(50% - 2px); }
  #l7-serie-sidebar { grid-template-columns: 1fr; }
  .l7-dash-tab { font-size: 15px; padding: 16px 8px; }
}

/* ── REPRODUCTOR NATIVO HTML5 ── */
#l7-ep-player video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}


/* ============================================================
   MODAL DE EPISODIO — abre player sin navegar
   ============================================================ */
#l7-ep-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.96);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: l7modalIn .25s ease;
}
#l7-ep-modal.open { display: flex; }
@keyframes l7modalIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
#l7-ep-modal-inner {
    width: 100%;
    max-width: 1100px;
    position: relative;
}
#l7-ep-modal-player {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}
#l7-ep-modal-player iframe,
#l7-ep-modal-player video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
#l7-ep-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    transition: color .2s;
    line-height: 1;
}
#l7-ep-modal-close:hover { color: #fff; }
#l7-ep-modal-info {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
#l7-ep-modal-title {
    font-family: 'Fira Sans Condensed','Barlow Condensed',sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#l7-ep-modal-meta {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    white-space: nowrap;
}
#l7-ep-modal-goto {
    font-family: 'Fira Sans Condensed','Barlow Condensed',sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
    flex-shrink: 0;
}
#l7-ep-modal-goto:hover { color: #c9a84c; }
/* Gate dentro del modal */
#l7-ep-modal-gate {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 60px 32px;
    text-align: center;
}
/* Cursor pointer en episodios clickeables */
.l7-epitem.l7-has-modal { cursor: pointer; }
.l7-epitem.l7-has-modal:hover .l7-ethi { opacity: .85; }
