:root {
    --bg: #0D0D0D;
    --bg2: #161616;
    --panel: #1C1C1C;
    --linea: #2A2A2A;
    --tinta: #FFFFFF;
    --tinta2: #B5B5B5;
    --tinta3: #7A7A7A;
    --rosa: #FF1E7E;
    --rojo: #FF2D55;
    --titulo: 'Montserrat', sans-serif;
    --cuerpo: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--cuerpo); background: var(--bg); color: var(--tinta); min-height: 100vh; line-height: 1.5; }

/* ═══ HEADER ═══ */
header { position: sticky; top: 0; z-index: 50; background: rgba(13,13,13,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--linea); }
header::before { content: ''; display: block; height: 3px; background: var(--rosa); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 16px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-flame { width: 30px; height: 30px; }
.logo-text { font-family: var(--titulo); font-weight: 900; font-size: 24px; letter-spacing: -0.5px; color: var(--tinta); }
.logo-text b { color: var(--rosa); }
nav { display: flex; gap: 20px; flex-wrap: wrap; }
nav a { color: var(--tinta2); text-decoration: none; font-family: var(--titulo); font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; transition: color 0.2s; padding: 4px 0; }
nav a:hover { color: var(--rosa); }
nav a.active { color: var(--tinta); border-bottom: 3px solid var(--rosa); }

.main { max-width: 1200px; margin: 0 auto; padding: 0 28px 60px; }

/* ═══ HERO ═══ */
.hero { padding: 60px 0 40px; text-align: center; }
.hero-label { display: inline-block; font-family: var(--titulo); font-weight: 800; font-size: 12px; letter-spacing: 3px; color: var(--rosa); border: 1px solid var(--rosa); border-radius: 100px; padding: 8px 18px; margin-bottom: 24px; }
.hero h1, .hero-title { font-family: var(--titulo); font-weight: 900; font-size: clamp(36px, 6vw, 68px); letter-spacing: -1.5px; line-height: 1.02; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 span, .hero-title span { color: var(--rosa); }
.hero-subtitle { font-size: 17px; color: var(--tinta2); max-width: 620px; margin: 0 auto 36px; line-height: 1.6; }

.search-box { max-width: 700px; margin: 0 auto 28px; display: flex; background: var(--bg2); border: 2px solid var(--linea); border-radius: 100px; padding: 6px 6px 6px 26px; transition: all 0.2s; }
.search-box:focus-within { border-color: var(--rosa); box-shadow: 0 0 0 4px rgba(255,30,126,0.15); }
.search-box input { flex: 1; background: none; border: 0; outline: 0; font: 500 16px var(--cuerpo); color: var(--tinta); min-width: 0; }
.search-box input::placeholder { color: var(--tinta3); }
.btn-search { font-family: var(--titulo); font-weight: 800; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; background: var(--rosa); color: #fff; border: 0; border-radius: 100px; padding: 14px 30px; cursor: pointer; transition: all 0.2s; }
.btn-search:hover { background: var(--rojo); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { font-size: 13px; font-weight: 600; color: var(--tinta2); background: var(--bg2); border: 1px solid var(--linea); border-radius: 100px; padding: 8px 16px; cursor: pointer; transition: all 0.2s; font-family: var(--cuerpo); }
.chip:hover { color: var(--rosa); border-color: var(--rosa); }

.recientes { margin-top: 32px; }
.recientes-label { font-family: var(--titulo); font-weight: 800; font-size: 12px; letter-spacing: 2px; color: var(--tinta3); margin-bottom: 12px; text-transform: uppercase; text-align: center; }

/* ═══ RESULTADOS ═══ */
.resultados { padding-top: 40px; }
.resultados-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 1px solid var(--linea); }
.btn-volver { display: inline-flex; align-items: center; gap: 8px; font-family: var(--titulo); font-weight: 800; font-size: 13px; letter-spacing: 1.5px; color: var(--rosa); background: transparent; border: 2px solid var(--rosa); border-radius: 100px; padding: 10px 20px; cursor: pointer; text-transform: uppercase; transition: all 0.2s; text-decoration: none; }
.btn-volver:hover { background: var(--rosa); color: #fff; }
.meta-busqueda { font-size: 14px; color: var(--tinta2); }
.meta-busqueda b { color: var(--tinta); }

.loader { background: var(--bg2); border: 1px solid var(--linea); border-radius: 14px; padding: 40px; text-align: center; }
.loader-icon { font-size: 48px; margin-bottom: 16px; animation: bounce 1s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.loader-text { font-family: var(--titulo); font-weight: 800; font-size: 15px; letter-spacing: 2px; color: var(--tinta2); margin-bottom: 20px; text-transform: uppercase; }
.loader-bar { max-width: 320px; height: 6px; background: var(--linea); border-radius: 100px; margin: 0 auto; overflow: hidden; }
.loader-bar i { display: block; height: 100%; width: 5%; border-radius: 100px; background: var(--rosa); transition: width 0.5s ease; }

.resumen-card { background: var(--bg2); border: 1px solid var(--linea); border-left: 5px solid var(--rosa); border-radius: 14px; padding: 28px 32px; margin-bottom: 32px; }
.etiqueta-ia { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; font-family: var(--titulo); font-weight: 800; font-size: 13px; letter-spacing: 2px; color: var(--rosa); text-transform: uppercase; }
.resumen-card p { font-size: 16px; line-height: 1.7; color: var(--tinta2); }

/* ═══ ETIQUETAS ═══ */
.cat-badge, .tag { display: inline-block; font-family: var(--titulo); font-weight: 800; font-size: 11px; padding: 6px 12px; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 4px; }
.cat-trucos, .tag-trucos { background: var(--rosa); color: #fff; }
.cat-guias, .tag-guias { background: transparent; color: var(--rosa); border: 1px solid var(--rosa); }
.cat-codigos, .tag-codigos { background: #fff; color: #0D0D0D; }
.cat-noticias, .tag-noticias { background: var(--rojo); color: #fff; }
.cat-gaming { background: var(--rosa); color: #fff; }
.cat-noticia { background: var(--rojo); color: #fff; }

.grid-resultados { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.lista { display: grid; gap: 24px; }

/* ═══ TARJETAS ═══ */
.card { background: var(--bg2); border: 1px solid var(--linea); border-radius: 14px; padding: 28px; transition: all 0.25s; }
.card:hover { border-color: var(--rosa); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,30,126,0.12); }
.card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.tag { font-family: var(--titulo); font-weight: 800; font-size: 11px; letter-spacing: 1.5px; padding: 6px 12px; border-radius: 4px; text-transform: uppercase; }
.tag-guia { background: transparent; color: var(--rosa); border: 1px solid var(--rosa); }
.tag-codigo { background: var(--rosa); color: #fff; }
.tag-noticia { background: var(--rojo); color: #fff; }
.tag-plat { background: transparent; color: var(--tinta3); border: 1px solid var(--linea); font-weight: 700; }
.card h3 { font-family: var(--titulo); font-weight: 800; font-size: 22px; letter-spacing: -0.3px; line-height: 1.25; margin-bottom: 14px; }

.codigo { background: #0A0A0A; border: 1px solid var(--linea); border-left: 4px solid var(--rosa); border-radius: 8px; padding: 14px 18px; margin: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.codigo code { font-family: 'JetBrains Mono', monospace; font-size: 15px; color: var(--rosa); font-weight: 700; word-break: break-all; }
.codigo button { font-family: var(--titulo); font-weight: 800; font-size: 11px; letter-spacing: 1px; background: transparent; color: var(--tinta2); border: 1px solid var(--linea); border-radius: 6px; padding: 8px 14px; cursor: pointer; transition: all 0.2s; }
.codigo button:hover { border-color: var(--rosa); color: var(--rosa); }

.guia { list-style: none; counter-reset: paso; margin: 16px 0; display: grid; gap: 10px; }
.guia li { counter-increment: paso; position: relative; padding: 14px 18px 14px 58px; background: var(--panel); border: 1px solid var(--linea); border-radius: 10px; font-size: 14px; line-height: 1.65; color: var(--tinta2); }
.guia li::before { content: counter(paso, decimal-leading-zero); position: absolute; left: 16px; top: 14px; font-family: var(--titulo); font-weight: 900; font-size: 16px; color: var(--rosa); }

.como { font-size: 14px; line-height: 1.6; color: var(--tinta2); margin: 14px 0; }
.como b { color: var(--tinta); }

.seccion { margin-top: 14px; padding: 16px 18px; border-radius: 10px; }
.seccion h5 { font-family: var(--titulo); font-weight: 800; font-size: 12px; letter-spacing: 1.5px; margin-bottom: 8px; text-transform: uppercase; }
.seccion p, .seccion li { font-size: 14px; line-height: 1.6; color: var(--tinta2); }
.seccion ul { padding-left: 18px; display: grid; gap: 6px; }
.sec-experta { background: var(--panel); border-left: 4px solid var(--rosa); }
.sec-experta h5 { color: var(--rosa); }
.sec-uso { background: var(--panel); border-left: 4px solid var(--tinta3); }
.sec-uso h5 { color: var(--tinta2); }
.sec-errores { background: rgba(255,45,85,0.06); border-left: 4px solid var(--rojo); }
.sec-errores h5 { color: var(--rojo); }
.sec-alt { background: var(--panel); border-left: 4px solid var(--tinta3); }
.sec-alt h5 { color: var(--tinta2); }

.noticia-cuerpo p { font-size: 15px; line-height: 1.7; color: var(--tinta2); margin-bottom: 14px; }
.bullets-30 { background: #0A0A0A; border: 2px solid var(--rojo); border-radius: 12px; padding: 20px 22px; margin-top: 18px; }
.bullets-30 h5 { font-family: var(--titulo); font-weight: 900; font-size: 14px; letter-spacing: 2px; color: var(--rojo); margin-bottom: 12px; text-transform: uppercase; }
.bullets-30 ul { list-style: none; display: grid; gap: 10px; }
.bullets-30 li { position: relative; padding-left: 24px; font-size: 14px; line-height: 1.55; color: var(--tinta); }
.bullets-30 li::before { content: '▸'; position: absolute; left: 4px; color: var(--rojo); font-weight: 900; }

.notas { margin-top: 14px; font-size: 13px; line-height: 1.6; color: var(--tinta2); background: var(--panel); padding: 12px 16px; border-radius: 8px; border-left: 3px solid var(--rojo); }

.card-pie { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--linea); font-size: 13px; color: var(--tinta3); flex-wrap: wrap; }
.card-pie a { color: var(--rosa); text-decoration: none; font-weight: 700; }
.card-pie a:hover { text-decoration: underline; }

.share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.share-label { font-size: 12px; color: var(--tinta3); font-weight: 600; }
.share a { font-family: var(--titulo); font-weight: 800; font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; text-decoration: none; transition: all 0.2s; border: 1px solid var(--linea); color: var(--tinta2); background: var(--panel); }
.share-wa:hover { background: #25D366; border-color: #25D366; color: #0D0D0D; }
.share-tw:hover { background: #fff; border-color: #fff; color: #0D0D0D; }
.share-fb:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.share-em:hover { background: var(--rosa); border-color: var(--rosa); color: #fff; }

.card-fuente { margin-top: 12px; font-size: 13px; }
.card-fuente a { color: var(--rosa); text-decoration: none; font-weight: 700; }
.card-fuente a:hover { text-decoration: underline; }

.fuentes { position: sticky; top: 90px; background: var(--bg2); border: 1px solid var(--linea); border-radius: 14px; padding: 22px; }
.fuentes h4 { font-family: var(--titulo); font-weight: 800; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; text-transform: uppercase; }
.fuentes h4 span { color: var(--rosa); }
.fuentes ol { list-style: none; display: grid; gap: 14px; counter-reset: f; }
.fuentes li { counter-increment: f; font-size: 13px; line-height: 1.45; }
.fuentes li a { color: var(--tinta2); text-decoration: none; font-weight: 600; display: block; }
.fuentes li a::before { content: "[" counter(f, decimal-leading-zero) "] "; color: var(--rosa); font-family: var(--titulo); font-size: 11px; font-weight: 800; }
.fuentes li a:hover { color: var(--rosa); }
.fuentes li small { color: var(--tinta3); font-size: 11px; display: block; margin-top: 3px; word-break: break-all; }

.ad-container { background: var(--bg2); border: 1px solid var(--linea); border-radius: 12px; padding: 20px; text-align: center; }
.ad-home { margin: 32px 0; text-align: center; }
.ad-footer { max-width: 1200px; margin: 40px auto; padding: 0 28px; text-align: center; }

/* ═══ HOME ═══ */
.layout-home { margin-top: 50px; }
.destacada { background: linear-gradient(135deg, var(--bg2) 0%, #1a0f15 100%); border: 2px solid var(--rosa); border-radius: 16px; padding: 32px; position: relative; overflow: hidden; margin-bottom: 40px; }
.destacada::after { content: '🔥'; position: absolute; right: -20px; bottom: -30px; font-size: 140px; opacity: 0.08; transform: rotate(-12deg); }
.destacada-badge { display: inline-block; background: var(--rosa); color: #fff; font-family: var(--titulo); font-weight: 800; font-size: 11px; letter-spacing: 2px; padding: 6px 14px; border-radius: 4px; margin-bottom: 16px; text-transform: uppercase; }
.destacada h2 { font-family: var(--titulo); font-weight: 900; font-size: 28px; letter-spacing: -0.5px; margin-bottom: 10px; text-transform: uppercase; }
.destacada h2 a { color: var(--tinta); text-decoration: none; }
.destacada h2 a:hover { color: var(--rosa); }
.destacada p { color: var(--tinta2); line-height: 1.6; max-width: 700px; }

.section-header { margin-bottom: 28px; }
.section-label { display: inline-block; font-family: var(--titulo); font-weight: 800; font-size: 12px; letter-spacing: 3px; color: var(--rosa); border: 1px solid var(--rosa); border-radius: 100px; padding: 6px 14px; margin-bottom: 12px; }
.section-title { font-family: var(--titulo); font-weight: 900; font-size: clamp(28px, 4vw, 44px); letter-spacing: -1px; text-transform: uppercase; }
.no-articulos { text-align: center; color: var(--tinta3); padding: 40px; }

.grid-articulos { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.card-articulo { position: relative; text-decoration: none; color: inherit; background: var(--bg2); border: 1px solid var(--linea); border-radius: 14px; padding: 24px; transition: all 0.2s; display: flex; flex-direction: column; }
.card-articulo:hover { border-color: var(--rosa); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,30,126,0.12); }
.card-articulo .cat-badge { align-self: flex-start; margin-bottom: 14px; }
.card-articulo h3 { font-family: var(--titulo); font-weight: 800; font-size: 18px; letter-spacing: -0.3px; color: var(--tinta); margin-bottom: 10px; line-height: 1.3; text-transform: uppercase; }
.card-articulo p { font-size: 13px; color: var(--tinta2); line-height: 1.6; flex-grow: 1; }
.card-footer-articulo { margin-top: 16px; font-size: 12px; color: var(--tinta3); display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--linea); font-weight: 600; }
.leer-mas { color: var(--rosa); font-weight: 800; letter-spacing: 1px; font-family: var(--titulo); }

/* ═══ FOOTER ═══ */
footer { background: #0A0A0A; border-top: 3px solid var(--rosa); margin-top: 60px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 44px 28px; text-align: center; }
.footer-logo { font-family: var(--titulo); font-weight: 900; font-size: 28px; letter-spacing: -0.5px; }
.footer-logo b { color: var(--rosa); }
.footer-tag { color: var(--tinta3); font-size: 14px; margin: 10px 0 6px; }
.footer-text { font-size: 13px; color: var(--tinta3); margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer-links a { color: var(--tinta2); text-decoration: none; }
.footer-links a:hover { color: var(--rosa); }

/* ═══════════════════════════════════════════════════════ */
/* ═══ MINI-CARD PODCAST HOME (clase independiente)        */
/* ═══════════════════════════════════════════════════════ */
.podcast-card-home {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #1a0f15 0%, var(--bg2) 100%);
    border: 2px solid var(--rosa);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 40px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.podcast-card-home::after {
    content: '🎧';
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 140px;
    opacity: 0.08;
    transform: rotate(-12deg);
    pointer-events: none;
}
.podcast-card-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,30,126,0.25);
    border-color: var(--rojo);
}
.podcast-card-home-cover {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: #0A0A0A;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--rosa);
    box-shadow: 0 0 20px rgba(255,30,126,0.2);
}
.podcast-card-home-cover svg { width: 60%; height: 60%; filter: drop-shadow(0 0 10px rgba(255,30,126,0.6)); }
.podcast-card-home-info { flex: 1; min-width: 0; position: relative; z-index: 1; }
.podcast-card-home-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rosa), var(--rojo));
    color: #fff;
    font-family: var(--titulo);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.podcast-card-home-info h2 {
    font-family: var(--titulo);
    font-weight: 900;
    font-size: clamp(18px, 2.5vw, 26px);
    letter-spacing: -0.4px;
    line-height: 1.25;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--tinta);
}
.podcast-card-home-info p {
    font-size: 14px;
    color: var(--tinta2);
    line-height: 1.6;
    margin-bottom: 14px;
}
.podcast-card-home-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--titulo);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.podcast-card-home-meta .dur { color: var(--tinta2); }
.podcast-card-home-meta .play { color: var(--rosa); }
.podcast-card-home:hover .play { color: var(--rojo); }

/* ═══════════════════════════════════════════════════════ */
/* ═══ PODCAST PÁGINAS (podcast.html y episodios)          */
/* ═══════════════════════════════════════════════════════ */

.breadcrumb {
    font-size: 13px;
    color: var(--tinta3);
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--linea);
}
.breadcrumb a { color: var(--rosa); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--tinta2); }

.podcast-hero { padding: 60px 0 40px; text-align: center; }
.podcast-hero h1 { font-family: var(--titulo); font-weight: 900; font-size: clamp(44px, 8vw, 88px); letter-spacing: -2px; line-height: 1.02; text-transform: uppercase; margin-bottom: 20px; }
.podcast-hero h1 span { color: var(--rosa); }

/* Cabecera del episodio */
.ep-header {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--bg2) 0%, #1a0f15 100%);
    border: 2px solid var(--rosa);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 0 60px rgba(255,30,126,0.15);
    flex-wrap: wrap;
}
.ep-cover {
    position: relative;
    width: 240px;
    height: 240px;
    background: #0A0A0A;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--rosa);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    flex-shrink: 0;
    overflow: hidden;
}
.ep-cover svg { width: 65%; height: 65%; filter: drop-shadow(0 0 24px rgba(255,30,126,0.5)); }
.ep-number {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--rosa);
    color: #fff;
    font-family: var(--titulo);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 2;
}
.ep-meta { flex: 1; min-width: 280px; }
.ep-series {
    display: inline-block;
    background: var(--rosa);
    color: #fff;
    font-family: var(--titulo);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.ep-meta h1 {
    font-family: var(--titulo);
    font-weight: 900;
    font-size: clamp(22px, 3vw, 34px);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--tinta);
}
.ep-details {
    display: flex;
    gap: 10px;
    color: var(--tinta2);
    font-size: 14px;
    font-weight: 600;
    flex-wrap: wrap;
}

/* Reproductor */
.ep-player {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0A0A0A;
    border: 1px solid var(--linea);
    border-radius: 100px;
    padding: 10px 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.ep-play {
    background: var(--rosa);
    color: #fff;
    border: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.ep-play:hover { background: var(--rojo); transform: scale(1.05); }
.ep-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}
.ep-progress span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--tinta2);
    flex-shrink: 0;
    min-width: 38px;
    text-align: center;
}
.ep-progress input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--linea);
    border-radius: 100px;
    outline: none;
    cursor: pointer;
}
.ep-progress input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px; height: 14px;
    background: var(--rosa);
    border-radius: 50%;
    cursor: pointer;
}
.ep-progress input[type="range"]::-moz-range-thumb {
    width: 14px; height: 14px;
    background: var(--rosa);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}
.ep-mute {
    background: transparent;
    color: var(--tinta2);
    border: 1px solid var(--linea);
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
}
.ep-mute:hover { border-color: var(--rosa); color: var(--rosa); }

/* Contenido del episodio */
.ep-content {
    background: var(--bg2);
    border: 1px solid var(--linea);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}
.ep-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px dashed var(--linea);
}
.ep-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.ep-section h2 {
    font-family: var(--titulo);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
    color: var(--tinta);
    text-transform: uppercase;
}
.ep-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--tinta2);
    margin-bottom: 14px;
}
.ep-section p:last-child { margin-bottom: 0; }
.ep-topics {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
}
.ep-topics li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--tinta2);
}
.ep-topics li::before {
    content: '▸';
    position: absolute;
    left: 8px;
    color: var(--rosa);
    font-weight: 900;
    font-size: 16px;
}
.ep-related {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.ep-related-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: var(--panel);
    border: 1px solid var(--linea);
    border-radius: 10px;
    text-decoration: none;
    color: var(--tinta2);
    font-size: 14px;
    transition: all 0.2s;
}
.ep-related-card:hover {
    border-color: var(--rosa);
    color: var(--tinta);
    transform: translateY(-2px);
}
.ep-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.ep-nav-link {
    font-family: var(--titulo);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--rosa);
    background: transparent;
    border: 2px solid var(--rosa);
    border-radius: 100px;
    padding: 10px 24px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s;
    display: inline-block;
}
.ep-nav-link:hover { background: var(--rosa); color: #fff; }

/* Lista de episodios */
.podcast-list { display: grid; gap: 18px; }
.podcast-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 22px;
    background: var(--bg2);
    border: 1px solid var(--linea);
    border-radius: 14px;
    padding: 22px;
    cursor: pointer;
    transition: all 0.25s;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.podcast-card:hover {
    border-color: var(--rosa);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(255,30,126,0.12);
}
.podcast-card-cover {
    width: 100px;
    height: 100px;
    background: #0A0A0A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--linea);
    flex-shrink: 0;
}
.podcast-card-icon { width: 55%; height: 55%; }
.podcast-card-num {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--rosa);
    color: #fff;
    font-family: var(--titulo);
    font-weight: 900;
    font-size: 14px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255,30,126,0.4);
    z-index: 2;
}
.podcast-card-info { flex: 1; min-width: 0; }
.podcast-card-date {
    display: block;
    font-size: 11px;
    color: var(--rosa);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.podcast-card-info h3 {
    font-family: var(--titulo);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.3px;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--tinta);
    text-transform: uppercase;
}
.podcast-card-info p {
    font-size: 14px;
    color: var(--tinta2);
    line-height: 1.55;
    margin: 0;
}
.podcast-card-cta {
    flex-shrink: 0;
    font-family: var(--titulo);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--rosa);
    border: 2px solid var(--rosa);
    border-radius: 100px;
    padding: 10px 18px;
    transition: all 0.2s;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
}
.podcast-card:hover .podcast-card-cta {
    background: var(--rosa);
    color: #fff;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
    .grid-resultados { grid-template-columns: 1fr; }
    .fuentes { position: static; }
}

@media (max-width: 768px) {
    .ep-header { padding: 24px; flex-direction: column; align-items: center; text-align: center; }
    .ep-cover { width: 180px; height: 180px; margin: 0 auto; }
    .ep-details { justify-content: center; }
    .ep-player { flex-wrap: wrap; border-radius: 14px; padding: 14px; gap: 10px; }
    .ep-play { width: 48px; height: 48px; }
    .ep-progress { flex: 1 1 100%; order: 3; width: 100%; }
    .ep-mute { width: 36px; height: 36px; font-size: 14px; }
    .ep-content { padding: 22px; }
}

@media (max-width: 600px) {
    .header-inner { padding: 14px 18px; }
    nav { gap: 12px; }
    nav a { font-size: 11px; letter-spacing: 0.8px; }
    .logo-text { font-size: 20px; }
    .hero { padding: 40px 0 30px; }
    .search-box { padding: 6px 6px 6px 16px; }
    .btn-search { padding: 12px 20px; font-size: 12px; }
    .share { justify-content: flex-start; }
    .podcast-card { grid-template-columns: 80px 1fr; gap: 14px; }
    .podcast-card-cover { width: 80px; height: 80px; }
    .podcast-card-cta { grid-column: 1 / -1; text-align: center; }
    .podcast-card-home { flex-direction: column; text-align: center; gap: 16px; }
    .podcast-card-home-cover { margin: 0 auto; width: 100px; height: 100px; }
    .podcast-card-home-meta { justify-content: center; }
    .ep-cover { width: 160px; height: 160px; }
}