/*
Theme Name: Videoteca Streaming Netflix Fijo
Theme URI: https://example.com/videoteca-streaming
Author: ChatGPT
Description: Tema WordPress tipo streaming con hero estilo Netflix, flechas laterales, rayas centradas, CSS personalizable y videoteca automática.
Version: 9.5.9
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: videoteca-streaming
*/

:root {
    --vf-bg: #050505;
    --vf-panel: #111111;
    --vf-panel-soft: #181818;
    --vf-text: #ffffff;
    --vf-muted: rgba(255,255,255,.68);
    --vf-muted-2: rgba(255,255,255,.46);
    --vf-red: #e50914;
    --vf-red-dark: #b20710;
    --vf-line: rgba(255,255,255,.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--vf-bg);
    color: var(--vf-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.vf-page {
    min-height: 100vh;
    background: var(--vf-bg);
    color: var(--vf-text);
}

.vf-shell {
    width: min(1480px, calc(100% - 42px));
    margin: 0 auto;
}

.vf-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(0,0,0,.96), rgba(0,0,0,.72));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.vf-header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.vf-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--vf-text);
    font-weight: 950;
    letter-spacing: -.04em;
    font-size: clamp(24px, 3vw, 38px);
    text-transform: uppercase;
}

.vf-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--vf-red);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(229,9,20,.35);
    font-size: 20px;
}

.vf-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.vf-nav button,
.vf-nav a {
    border: 0;
    color: var(--vf-text);
    background: transparent;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 999px;
    cursor: pointer;
    opacity: .78;
    text-decoration: none;
}

.vf-nav button:hover,
.vf-nav button.is-active,
.vf-nav a:hover {
    background: rgba(255,255,255,.12);
    opacity: 1;
}

.vf-hero {
    position: relative;
    min-height: 74vh;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
}

.vf-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    z-index: -3;
}

.vf-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.22) 100%),
        linear-gradient(0deg, #050505 0%, rgba(5,5,5,.72) 12%, rgba(5,5,5,0) 42%);
    z-index: -2;
}

.vf-hero-content {
    max-width: 780px;
    padding: 92px 0 92px;
}

.vf-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.vf-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
    font-size: 12px;
    font-weight: 800;
}

.vf-badge-red {
    background: var(--vf-red);
    border-color: var(--vf-red);
    color: #fff;
}

.vf-title {
    font-size: clamp(42px, 8vw, 94px);
    line-height: .92;
    letter-spacing: -.08em;
    margin: 0 0 20px;
    font-weight: 950;
    text-wrap: balance;
}

.vf-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--vf-muted);
    font-weight: 800;
    margin-bottom: 20px;
}

.vf-description {
    color: rgba(255,255,255,.82);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.55;
    max-width: 700px;
    margin-bottom: 28px;
}

.vf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vf-button {
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 950;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.vf-button:hover {
    transform: translateY(-2px);
}

.vf-button-primary {
    background: #fff;
    color: #000;
}

.vf-button-secondary {
    background: rgba(109,109,110,.72);
    color: #fff;
}

.vf-controls {
    margin-top: -52px;
    position: relative;
    z-index: 4;
    padding-bottom: 24px;
}

.vf-controls-card {
    background: rgba(17,17,17,.92);
    border: 1px solid var(--vf-line);
    border-radius: 18px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 180px 180px 180px;
    gap: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
    backdrop-filter: blur(14px);
}

.vf-search,
.vf-select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255,255,255,.12);
    background: #0b0b0b;
    color: #fff;
    border-radius: 10px;
    padding: 0 14px;
    outline: none;
}

.vf-search:focus,
.vf-select:focus {
    border-color: var(--vf-red);
}

.vf-main {
    padding: 18px 0 70px;
}

.vf-section {
    margin-bottom: 38px;
}

.vf-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.vf-section-title {
    font-size: clamp(20px, 2vw, 28px);
    margin: 0;
    letter-spacing: -.04em;
}

.vf-count {
    color: var(--vf-muted-2);
    font-size: 14px;
}

.vf-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 215px);
    gap: 12px;
    overflow-x: auto;
    padding: 10px 2px 22px;
    scrollbar-color: rgba(255,255,255,.24) transparent;
    scroll-snap-type: x proximity;
}

.vf-card {
    color: inherit;
    text-decoration: none;
    position: relative;
    background: var(--vf-panel-soft);
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    scroll-snap-align: start;
}

.vf-card:hover {
    transform: scale(1.075);
    z-index: 10;
    border-color: rgba(255,255,255,.24);
    box-shadow: 0 24px 70px rgba(0,0,0,.6);
}

.vf-poster {
    aspect-ratio: 2 / 3;
    width: 100%;
    object-fit: cover;
    display: block;
    background: #222;
}

.vf-card-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    background: linear-gradient(0deg, rgba(0,0,0,.96), rgba(0,0,0,0));
    pointer-events: none;
}

.vf-card-info {
    position: absolute;
    inset: auto 0 0;
    padding: 12px;
}

.vf-card-title {
    font-size: 15px;
    line-height: 1.15;
    margin: 0 0 8px;
    font-weight: 950;
}

.vf-card-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255,255,255,.76);
}

.vf-mini-green {
    color: #46d369;
    font-weight: 950;
}

.vf-empty {
    padding: 30px;
    border: 1px dashed rgba(255,255,255,.2);
    border-radius: 16px;
    color: var(--vf-muted);
    background: rgba(255,255,255,.04);
}

.vf-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,.76);
    backdrop-filter: blur(10px);
}

.vf-modal.is-open {
    display: flex;
}

.vf-modal-card {
    width: min(980px, 100%);
    max-height: min(850px, 92vh);
    overflow-y: auto;
    border-radius: 18px;
    background: #141414;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 100px rgba(0,0,0,.65);
}

.vf-modal-hero {
    position: relative;
    min-height: 430px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.vf-modal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #141414 0%, rgba(20,20,20,.65) 35%, rgba(20,20,20,.08) 100%);
}

.vf-modal-title-wrap {
    position: relative;
    z-index: 1;
}

.vf-modal-title {
    font-size: clamp(32px, 5vw, 64px);
    line-height: .95;
    letter-spacing: -.07em;
    margin: 0 0 16px;
}

.vf-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(0,0,0,.68);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.vf-modal-body {
    padding: 0 28px 30px;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 28px;
}

.vf-modal-description {
    color: rgba(255,255,255,.82);
    line-height: 1.7;
    font-size: 16px;
}

.vf-detail-grid {
    display: grid;
    gap: 12px;
}

.vf-detail {
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 10px;
}

.vf-detail strong {
    color: rgba(255,255,255,.48);
    display: block;
    font-size: 12px;
    margin-bottom: 3px;
}

.vf-detail span {
    color: rgba(255,255,255,.9);
    font-weight: 800;
    font-size: 14px;
}

.vf-basic-page {
    width: min(980px, calc(100% - 40px));
    margin: 70px auto;
    color: #fff;
    line-height: 1.7;
}

.vf-basic-page a {
    color: #fff;
}

@media (max-width: 900px) {
    .vf-header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
    }

    .vf-nav {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .vf-hero {
        min-height: 70vh;
    }

    .vf-controls-card {
        grid-template-columns: 1fr;
    }

    .vf-modal-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .vf-shell {
        width: min(100% - 24px, 1480px);
    }

    .vf-hero-content {
        padding: 70px 0 74px;
    }

    .vf-row {
        grid-auto-columns: minmax(135px, 155px);
    }

    .vf-card:hover {
        transform: none;
    }

    .vf-modal {
        padding: 10px;
    }

    .vf-modal-hero {
        min-height: 330px;
        padding: 20px;
    }

    .vf-modal-body {
        padding: 0 20px 24px;
    }
}


/* Hero limpio 2.1 */
.vf-hero {
    position: relative;
    overflow: hidden;
}

.vf-hero-content {
    position: relative;
    z-index: 2;
}

.vf-hero-clean-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.vf-hero-arrows {
    display: flex;
    gap: 10px;
}

.vf-hero-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(0,0,0,.48);
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.vf-hero-arrow:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.32);
}

.vf-hero-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.vf-hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.32);
    cursor: pointer;
    padding: 0;
    transition: width .18s ease, background .18s ease;
}

.vf-hero-dot.is-active {
    width: 30px;
    background: #e50914;
}

.vf-hero-fade {
    animation: vfHeroFade .28s ease;
}

@keyframes vfHeroFade {
    from {
        opacity: .35;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .vf-hero-clean-controls {
        margin-top: 16px;
    }
}


/* Ajuste visual 2.2 */
.vf-controls {
    display: none !important;
}

.vf-hero-clean-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
    width: 100%;
}

.vf-hero-arrows {
    display: contents;
}

.vf-hero-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
}

.vf-hero-arrow {
    flex: 0 0 auto;
}

@media (max-width: 700px) {
    .vf-hero-clean-controls {
        gap: 12px;
        margin-top: 18px;
    }

    .vf-hero-dots {
        min-width: 100px;
    }
}


/* Eliminación definitiva del buscador visible 2.3 */
.vf-controls,
.vf-controls-card,
.vf-controls-grid {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

#vfHiddenControls {
    display: none !important;
}


/* =========================================================
   HERO NETFLIX FIJO 2.6 - INTEGRADO EN PLANTILLA
   ========================================================= */

.vf-controls,
.vf-controls-card,
.vf-controls-grid {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.vf-hero {
    position: relative !important;
    overflow: hidden !important;
}

.vf-hero-content {
    position: static !important;
}

.vf-kicker,
.vf-title,
.vf-meta,
.vf-description,
.vf-actions {
    position: relative !important;
    z-index: 10 !important;
}

.vf-hero-clean-controls {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
    z-index: 80 !important;
}

#vfHeroPrev,
#vfHeroNext,
.vf-hero-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 54px !important;
    height: 96px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(0,0,0,.58) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 4px !important;

    font-size: 52px !important;
    font-weight: 300 !important;
    line-height: 1 !important;

    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 90 !important;

    opacity: .78 !important;
    transition: opacity .2s ease, background .2s ease, transform .2s ease !important;
}

#vfHeroPrev:hover,
#vfHeroNext:hover,
.vf-hero-arrow:hover {
    opacity: 1 !important;
    background: rgba(0,0,0,.82) !important;
    transform: translateY(-50%) scale(1.03) !important;
}

#vfHeroPrev {
    left: 18px !important;
    right: auto !important;
}

#vfHeroNext {
    right: 18px !important;
    left: auto !important;
}

#vfHeroDots,
.vf-hero-dots {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 32px !important;
    transform: translateX(-50%) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    pointer-events: auto !important;
    z-index: 90 !important;
}

#vfHeroDots .vf-hero-dot,
.vf-hero-dots .vf-hero-dot {
    width: 24px !important;
    height: 3px !important;
    border: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(255,255,255,.38) !important;
    cursor: pointer !important;
}

#vfHeroDots .vf-hero-dot.is-active,
.vf-hero-dots .vf-hero-dot.is-active {
    width: 36px !important;
    background: #fff !important;
}

@media (max-width: 768px) {
    #vfHeroPrev,
    #vfHeroNext,
    .vf-hero-arrow {
        width: 38px !important;
        height: 72px !important;
        font-size: 36px !important;
    }

    #vfHeroPrev {
        left: 8px !important;
    }

    #vfHeroNext {
        right: 8px !important;
    }

    #vfHeroDots,
    .vf-hero-dots {
        bottom: 22px !important;
    }

    #vfHeroDots .vf-hero-dot,
    .vf-hero-dots .vf-hero-dot {
        width: 16px !important;
    }

    #vfHeroDots .vf-hero-dot.is-active,
    .vf-hero-dots .vf-hero-dot.is-active {
        width: 26px !important;
    }
}

/* =========================================================
   PÁGINAS INTERNAS ESTILO NETFLIX 2.7
   ========================================================= */

.vf-route-title {
    display: none !important;
}

/* Más espacio visual arriba en páginas de catálogo */
body .vf-main {
    padding-top: 34px !important;
}

/* En páginas internas, títulos más limpios */
.vf-page[data-current-view="peliculas"] #vf-section-movies .vf-section-title,
.vf-page[data-current-view="series"] #vf-section-series .vf-section-title,
.vf-page[data-current-view="sagas"] #vf-section-sagas .vf-section-title,
.vf-page[data-current-view="mi-lista"] #vf-section-pending .vf-section-title,
.vf-page[data-current-view="seguir-viendo"] #vf-section-pending .vf-section-title {
    font-size: clamp(38px, 4vw, 62px) !important;
    line-height: 1 !important;
    letter-spacing: -.06em !important;
    margin-bottom: 18px !important;
}

/* Quitar sensación de fila plana */
.vf-section {
    margin-bottom: 44px !important;
}

.vf-section-head {
    align-items: flex-end !important;
    margin-bottom: 18px !important;
}

/* Fila tipo streaming */
.vf-row {
    grid-auto-columns: minmax(180px, 220px) !important;
    gap: 14px !important;
    padding: 12px 4px 34px !important;
    scroll-behavior: smooth !important;
}

/* Tarjetas más tipo plataforma */
.vf-card {
    border-radius: 10px !important;
    background: #141414 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.34) !important;
}

.vf-card:hover {
    transform: scale(1.055) !important;
    z-index: 20 !important;
}

/* En páginas de catálogo, quitar secciones que no corresponden */
.vf-page[data-current-view="peliculas"] #vf-section-results,
.vf-page[data-current-view="peliculas"] #vf-section-series,
.vf-page[data-current-view="peliculas"] #vf-section-sagas,
.vf-page[data-current-view="peliculas"] #vf-section-pending,
.vf-page[data-current-view="series"] #vf-section-results,
.vf-page[data-current-view="series"] #vf-section-movies,
.vf-page[data-current-view="series"] #vf-section-sagas,
.vf-page[data-current-view="series"] #vf-section-pending,
.vf-page[data-current-view="mi-lista"] #vf-section-results,
.vf-page[data-current-view="mi-lista"] #vf-section-movies,
.vf-page[data-current-view="mi-lista"] #vf-section-series,
.vf-page[data-current-view="mi-lista"] #vf-section-sagas,
.vf-page[data-current-view="seguir-viendo"] #vf-section-results,
.vf-page[data-current-view="seguir-viendo"] #vf-section-movies,
.vf-page[data-current-view="seguir-viendo"] #vf-section-series,
.vf-page[data-current-view="seguir-viendo"] #vf-section-sagas {
    display: none !important;
}

/* Nombre de sección más parecido a Netflix */
.vf-page[data-current-view="peliculas"] #vf-section-movies .vf-section-title::after {
    content: " · Todo el catálogo";
    color: rgba(255,255,255,.45);
    font-size: 18px;
    letter-spacing: 0;
    margin-left: 12px;
    font-weight: 500;
}

.vf-page[data-current-view="series"] #vf-section-series .vf-section-title::after {
    content: " · Todo el catálogo";
    color: rgba(255,255,255,.45);
    font-size: 18px;
    letter-spacing: 0;
    margin-left: 12px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .vf-row {
        grid-auto-columns: minmax(140px, 165px) !important;
    }

    .vf-page[data-current-view="peliculas"] #vf-section-movies .vf-section-title,
    .vf-page[data-current-view="series"] #vf-section-series .vf-section-title,
    .vf-page[data-current-view="sagas"] #vf-section-sagas .vf-section-title,
    .vf-page[data-current-view="mi-lista"] #vf-section-pending .vf-section-title,
    .vf-page[data-current-view="seguir-viendo"] #vf-section-pending .vf-section-title {
        font-size: 38px !important;
    }
}


/* TOP 10 más vistas 2.8 */
.vf-netflix-top10-row .vf-section-title,
.vf-browse-row-title {
    color: #fff;
}

.vf-netflix-top10-row .vf-card::before {
    content: "";
}

.vf-netflix-top10-row {
    margin-top: 10px !important;
}


/* =========================================================
   SAGAS ESTILO NETFLIX 2.9
   ========================================================= */

/* Sagas también debe comportarse como una página de catálogo */
.vf-page[data-current-view="sagas"] .vf-main {
    padding-top: 34px !important;
}

/* Título limpio tipo plataforma */
.vf-page[data-current-view="sagas"] #vf-section-sagas .vf-section-title {
    font-size: clamp(38px, 4vw, 62px) !important;
    line-height: 1 !important;
    letter-spacing: -.06em !important;
    margin-bottom: 18px !important;
}

/* Oculta bloques que no corresponden en Sagas */
.vf-page[data-current-view="sagas"] #vf-section-results,
.vf-page[data-current-view="sagas"] #vf-section-movies,
.vf-page[data-current-view="sagas"] #vf-section-series,
.vf-page[data-current-view="sagas"] #vf-section-pending {
    display: none !important;
}

/* Rejilla/fila más limpia para colecciones */
.vf-page[data-current-view="sagas"] #vf-section-sagas .vf-row {
    grid-auto-columns: minmax(190px, 230px) !important;
    gap: 16px !important;
    padding: 12px 4px 34px !important;
    scroll-behavior: smooth !important;
}

/* Tarjetas de colección más tipo Netflix */
.vf-page[data-current-view="sagas"] .vf-collection-card,
.vf-page[data-current-view="saga-detalle"] .vf-card {
    border-radius: 10px !important;
    background: #141414 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.34) !important;
}

.vf-page[data-current-view="sagas"] .vf-collection-card:hover,
.vf-page[data-current-view="saga-detalle"] .vf-card:hover {
    transform: scale(1.055) !important;
    z-index: 20 !important;
}

/* Etiqueta visual de colección */
.vf-collection-card .vf-card-meta::after {
    content: "Colección";
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

/* En detalle de saga, que se vea como página interna */
.vf-page[data-current-view="saga-detalle"] #vf-section-results,
.vf-page[data-current-view="saga-detalle"] #vf-section-movies,
.vf-page[data-current-view="saga-detalle"] #vf-section-series,
.vf-page[data-current-view="saga-detalle"] #vf-section-pending {
    display: none !important;
}

.vf-page[data-current-view="saga-detalle"] #vf-section-sagas .vf-section-title {
    font-size: clamp(38px, 4vw, 62px) !important;
    line-height: 1 !important;
    letter-spacing: -.06em !important;
    margin-bottom: 18px !important;
}

.vf-page[data-current-view="saga-detalle"] #vf-section-sagas .vf-row {
    grid-auto-columns: minmax(180px, 220px) !important;
    gap: 14px !important;
    padding: 12px 4px 34px !important;
}

@media (max-width: 768px) {
    .vf-page[data-current-view="sagas"] #vf-section-sagas .vf-row,
    .vf-page[data-current-view="saga-detalle"] #vf-section-sagas .vf-row {
        grid-auto-columns: minmax(140px, 165px) !important;
    }

    .vf-page[data-current-view="sagas"] #vf-section-sagas .vf-section-title,
    .vf-page[data-current-view="saga-detalle"] #vf-section-sagas .vf-section-title {
        font-size: 38px !important;
    }
}


/* =========================================================
   GÉNEROS EN SAGAS 3.0
   ========================================================= */

.vf-sagas-genre-row {
    margin-top: 8px !important;
}

.vf-sagas-genre-row .vf-section-title {
    font-size: clamp(22px, 2.2vw, 32px) !important;
    line-height: 1.1 !important;
    letter-spacing: -.04em !important;
}

.vf-sagas-genre-row .vf-row {
    grid-auto-columns: minmax(190px, 230px) !important;
    gap: 16px !important;
    padding: 12px 4px 34px !important;
}

@media (max-width: 768px) {
    .vf-sagas-genre-row .vf-row {
        grid-auto-columns: minmax(140px, 165px) !important;
    }
}


/* =========================================================
   MENÚ CENTRADO + BUSCADOR CON LUPA 3.1
   ========================================================= */

/* Cabecera en tres zonas: logo - menú centrado - lupa */
.vf-header-inner {
    display: grid !important;
    grid-template-columns: minmax(180px, 1fr) auto minmax(90px, 1fr) !important;
    align-items: center !important;
    gap: 24px !important;
}

.vf-logo {
    justify-self: start !important;
}

.vf-nav {
    justify-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
}

.vf-nav a,
.vf-nav button {
    white-space: nowrap !important;
}

.vf-header-search-button {
    justify-self: end !important;
    width: 44px !important;
    height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.06) !important;
    color: #fff !important;
    cursor: pointer !important;
    font-size: 28px !important;
    line-height: 1 !important;
    transition: background .18s ease, transform .18s ease, border-color .18s ease !important;
}

.vf-header-search-button:hover {
    background: rgba(255,255,255,.14) !important;
    border-color: rgba(255,255,255,.24) !important;
    transform: translateY(-1px) !important;
}

/* Overlay buscador */
.vf-search-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    background: rgba(0,0,0,.84) !important;
    backdrop-filter: blur(14px) !important;
    display: none !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 96px 24px 40px !important;
}

.vf-search-overlay.is-open {
    display: flex !important;
}

.vf-search-panel {
    width: min(1180px, 100%) !important;
    max-height: calc(100vh - 128px) !important;
    overflow-y: auto !important;
    background: rgba(18,18,18,.96) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 22px !important;
    box-shadow: 0 30px 120px rgba(0,0,0,.7) !important;
    padding: 22px !important;
}

.vf-search-panel-head {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 14px !important;
    align-items: center !important;
}

.vf-search-input-wrap {
    position: relative !important;
}

.vf-search-icon {
    position: absolute !important;
    left: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: rgba(255,255,255,.52) !important;
    font-size: 28px !important;
    line-height: 1 !important;
}

#vfGlobalSearchInput {
    width: 100% !important;
    min-height: 60px !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 14px !important;
    background: #080808 !important;
    color: #fff !important;
    font-size: 20px !important;
    outline: none !important;
    padding: 0 18px 0 58px !important;
}

#vfGlobalSearchInput:focus {
    border-color: #e50914 !important;
    box-shadow: 0 0 0 3px rgba(229,9,20,.22) !important;
}

.vf-search-close {
    width: 52px !important;
    height: 52px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.1) !important;
    color: #fff !important;
    cursor: pointer !important;
    font-size: 34px !important;
    line-height: 1 !important;
}

.vf-search-close:hover {
    background: rgba(255,255,255,.2) !important;
}

.vf-search-helper {
    color: rgba(255,255,255,.58) !important;
    margin: 16px 2px 18px !important;
    font-size: 15px !important;
}

.vf-search-results {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
    gap: 14px !important;
    padding: 6px 0 4px !important;
}

.vf-search-results .vf-card {
    min-width: 0 !important;
}

.vf-search-empty {
    color: rgba(255,255,255,.68) !important;
    border: 1px dashed rgba(255,255,255,.18) !important;
    background: rgba(255,255,255,.04) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    grid-column: 1 / -1 !important;
}

/* Ajuste tablet/móvil */
@media (max-width: 980px) {
    .vf-header-inner {
        grid-template-columns: 1fr auto !important;
        gap: 12px !important;
    }

    .vf-logo {
        grid-column: 1 / 2 !important;
    }

    .vf-header-search-button {
        grid-column: 2 / 3 !important;
    }

    .vf-nav {
        grid-column: 1 / -1 !important;
        justify-self: center !important;
        width: 100% !important;
        overflow-x: auto !important;
        padding-bottom: 6px !important;
    }
}

@media (max-width: 640px) {
    .vf-search-overlay {
        padding: 78px 12px 24px !important;
    }

    .vf-search-panel {
        border-radius: 16px !important;
        padding: 14px !important;
    }

    #vfGlobalSearchInput {
        min-height: 54px !important;
        font-size: 17px !important;
    }

    .vf-search-results {
        grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)) !important;
        gap: 10px !important;
    }
}


/* =========================================================
   SIMILARES EN FICHA EMERGENTE 3.2
   ========================================================= */

.vf-similar-section {
    padding: 0 28px 34px !important;
}

.vf-similar-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin: 6px 0 14px !important;
}

.vf-similar-head h3 {
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(22px, 2vw, 30px) !important;
    line-height: 1.1 !important;
    letter-spacing: -.04em !important;
    font-weight: 950 !important;
}

.vf-similar-head span {
    color: rgba(255,255,255,.48) !important;
    font-size: 14px !important;
}

.vf-similar-row {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(138px, 172px) !important;
    gap: 12px !important;
    overflow-x: auto !important;
    padding: 8px 2px 18px !important;
    scroll-snap-type: x proximity !important;
    scrollbar-color: rgba(255,255,255,.24) transparent !important;
}

.vf-similar-row .vf-card {
    scroll-snap-align: start !important;
}

.vf-similar-row .vf-card:hover {
    transform: scale(1.045) !important;
}

.vf-similar-empty {
    color: rgba(255,255,255,.62) !important;
    border: 1px dashed rgba(255,255,255,.16) !important;
    background: rgba(255,255,255,.04) !important;
    border-radius: 14px !important;
    padding: 20px !important;
    min-width: 260px !important;
}

@media (max-width: 700px) {
    .vf-similar-section {
        padding: 0 20px 28px !important;
    }

    .vf-similar-row {
        grid-auto-columns: minmax(122px, 145px) !important;
    }
}


/* =========================================================
   SIMILARES EN COLUMNA IZQUIERDA 3.3
   ========================================================= */

/* La sección similares ya no va al final de la ficha, sino bajo la descripción */
.vf-similar-section-inline {
    padding: 28px 0 0 !important;
    margin: 0 !important;
}

.vf-similar-section-inline .vf-similar-head {
    margin: 0 0 12px !important;
}

.vf-similar-section-inline .vf-similar-head h3 {
    font-size: clamp(22px, 2vw, 30px) !important;
}

.vf-similar-section-inline .vf-similar-row {
    grid-auto-columns: minmax(126px, 154px) !important;
    gap: 10px !important;
    padding: 6px 2px 14px !important;
    max-width: 100% !important;
}

.vf-similar-section-inline .vf-card-title {
    font-size: 13px !important;
}

.vf-similar-section-inline .vf-card-meta {
    font-size: 11px !important;
}

/* Anula el padding antiguo cuando estaba al final del modal */
.vf-modal-body + .vf-similar-section {
    display: none !important;
}

/* En pantallas pequeñas sigue debajo de la descripción */
@media (max-width: 700px) {
    .vf-similar-section-inline {
        padding-top: 22px !important;
    }

    .vf-similar-section-inline .vf-similar-row {
        grid-auto-columns: minmax(118px, 140px) !important;
    }
}


/* =========================================================
   SIMILARES TIPO NETFLIX 3.4
   ========================================================= */

.vf-similar-netflix {
    padding: 30px 0 0 !important;
    margin: 0 !important;
}

.vf-similar-netflix .vf-similar-head {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin: 0 0 14px !important;
}

.vf-similar-netflix .vf-similar-head h3 {
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(24px, 2vw, 34px) !important;
    line-height: 1 !important;
    letter-spacing: -.05em !important;
    font-weight: 950 !important;
}

.vf-similar-netflix .vf-similar-head p {
    margin: 8px 0 0 !important;
    color: rgba(255,255,255,.52) !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
}

.vf-similar-netflix .vf-similar-head span {
    color: rgba(255,255,255,.44) !important;
    font-size: 13px !important;
    white-space: nowrap !important;
}

.vf-similar-wrap {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
}

.vf-similar-wrap::before,
.vf-similar-wrap::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 14px !important;
    width: 34px !important;
    pointer-events: none !important;
    z-index: 4 !important;
}

.vf-similar-wrap::before {
    left: 0 !important;
    background: linear-gradient(90deg, #141414, rgba(20,20,20,0)) !important;
}

.vf-similar-wrap::after {
    right: 0 !important;
    background: linear-gradient(270deg, #141414, rgba(20,20,20,0)) !important;
}

.vf-similar-netflix .vf-similar-row {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(130px, 158px) !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: x proximity !important;
    padding: 6px 2px 14px !important;
    scrollbar-width: none !important;
}

.vf-similar-netflix .vf-similar-row::-webkit-scrollbar {
    display: none !important;
}

.vf-similar-netflix .vf-card {
    border-radius: 8px !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    background: #1b1b1b !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.28) !important;
    scroll-snap-align: start !important;
}

.vf-similar-netflix .vf-card:hover {
    transform: scale(1.045) !important;
    border-color: rgba(255,255,255,.24) !important;
    z-index: 10 !important;
}

.vf-similar-netflix .vf-card-title {
    font-size: 13px !important;
    line-height: 1.1 !important;
}

.vf-similar-netflix .vf-card-meta {
    font-size: 11px !important;
}

.vf-similar-netflix .vf-card-info {
    padding: 10px !important;
}

.vf-similar-arrow {
    position: absolute !important;
    top: 6px !important;
    bottom: 14px !important;
    width: 34px !important;
    border: 0 !important;
    background: rgba(0,0,0,.58) !important;
    color: #fff !important;
    font-size: 30px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    z-index: 6 !important;
    opacity: 0 !important;
    transition: opacity .18s ease, background .18s ease !important;
}

.vf-similar-wrap:hover .vf-similar-arrow {
    opacity: .86 !important;
}

.vf-similar-arrow:hover {
    opacity: 1 !important;
    background: rgba(0,0,0,.82) !important;
}

.vf-similar-arrow-left {
    left: 0 !important;
    border-radius: 8px 0 0 8px !important;
}

.vf-similar-arrow-right {
    right: 0 !important;
    border-radius: 0 8px 8px 0 !important;
}

.vf-similar-empty {
    color: rgba(255,255,255,.62) !important;
    border: 1px dashed rgba(255,255,255,.16) !important;
    background: rgba(255,255,255,.04) !important;
    border-radius: 14px !important;
    padding: 18px !important;
    min-width: 260px !important;
}

@media (max-width: 700px) {
    .vf-similar-netflix {
        padding-top: 22px !important;
    }

    .vf-similar-netflix .vf-similar-row {
        grid-auto-columns: minmax(118px, 140px) !important;
    }

    .vf-similar-arrow {
        display: none !important;
    }

    .vf-similar-netflix .vf-similar-head {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
}


/* =========================================================
   SIMILARES EN VERTICAL 3.5
   ========================================================= */

/* La sección sigue debajo de la descripción, pero ahora como lista vertical */
.vf-similar-netflix .vf-similar-wrap {
    overflow: visible !important;
}

.vf-similar-netflix .vf-similar-wrap::before,
.vf-similar-netflix .vf-similar-wrap::after {
    display: none !important;
}

.vf-similar-netflix .vf-similar-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    overflow: visible !important;
    padding: 4px 0 0 !important;
    max-height: none !important;
}

/* Ocultar flechas, porque ya no hace falta mover horizontalmente */
.vf-similar-arrow,
#vfSimilarPrev,
#vfSimilarNext {
    display: none !important;
}

/* Tarjeta horizontal compacta */
.vf-similar-netflix .vf-card {
    width: 100% !important;
    min-height: 118px !important;
    display: grid !important;
    grid-template-columns: 82px minmax(0, 1fr) !important;
    align-items: stretch !important;
    gap: 0 !important;

    border-radius: 12px !important;
    overflow: hidden !important;
    background: #1c1c1c !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.25) !important;

    transform: none !important;
}

.vf-similar-netflix .vf-card:hover {
    transform: translateX(4px) !important;
    border-color: rgba(255,255,255,.22) !important;
    background: #242424 !important;
}

/* Póster pequeño a la izquierda */
.vf-similar-netflix .vf-card .vf-poster {
    width: 82px !important;
    height: 118px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    display: block !important;
}

/* Quitar degradado viejo de tarjeta */
.vf-similar-netflix .vf-card .vf-card-gradient {
    display: none !important;
}

/* Texto a la derecha, no encima del póster */
.vf-similar-netflix .vf-card .vf-card-info {
    position: static !important;
    inset: auto !important;
    padding: 14px 14px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
}

.vf-similar-netflix .vf-card .vf-card-title {
    font-size: 15px !important;
    line-height: 1.18 !important;
    margin: 0 0 9px !important;
    color: #fff !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.vf-similar-netflix .vf-card .vf-card-meta {
    font-size: 12px !important;
    color: rgba(255,255,255,.68) !important;
}

/* Limitar visualmente a varias sugerencias sin hacer una lista infinita */
.vf-similar-section-inline {
    max-width: 100% !important;
}

@media (max-width: 700px) {
    .vf-similar-netflix .vf-card {
        grid-template-columns: 72px minmax(0, 1fr) !important;
        min-height: 104px !important;
    }

    .vf-similar-netflix .vf-card .vf-poster {
        width: 72px !important;
        height: 104px !important;
    }

    .vf-similar-netflix .vf-card .vf-card-info {
        padding: 12px !important;
    }
}


/* =========================================================
   REPRODUCTOR TIPO NETFLIX 3.7
   ========================================================= */

.vf-player-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000 !important;
    background: #000 !important;
    display: none !important;
    color: #fff !important;
}

.vf-player-overlay.is-open {
    display: block !important;
}

.vf-player-shell {
    position: relative !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #000 !important;
    overflow: hidden !important;
}

.vf-player-topbar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 5 !important;

    display: flex !important;
    align-items: center !important;
    gap: 16px !important;

    padding: 22px 28px !important;
    background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,0)) !important;
    pointer-events: none !important;
}

.vf-player-back {
    width: 48px !important;
    height: 48px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
    cursor: pointer !important;
    font-size: 44px !important;
    line-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
    transition: background .18s ease, transform .18s ease !important;
}

.vf-player-back:hover {
    background: rgba(255,255,255,.22) !important;
    transform: scale(1.04) !important;
}

.vf-player-title-wrap {
    display: grid !important;
    gap: 2px !important;
    min-width: 0 !important;
}

.vf-player-label {
    color: rgba(255,255,255,.58) !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
}

#vfPlayerTitle {
    color: #fff !important;
    font-size: clamp(20px, 2.4vw, 34px) !important;
    line-height: 1.05 !important;
    max-width: 70vw !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.vf-player-screen {
    width: 100vw !important;
    height: 100vh !important;
    display: grid !important;
    place-items: center !important;
    background: #000 !important;
}

.vf-player-screen iframe,
.vf-player-screen video {
    width: 100vw !important;
    height: 100vh !important;
    border: 0 !important;
    background: #000 !important;
}

.vf-player-screen video {
    object-fit: contain !important;
}

.vf-player-message {
    color: rgba(255,255,255,.72) !important;
    font-size: 18px !important;
    text-align: center !important;
    max-width: 680px !important;
    padding: 28px !important;
}

.vf-player-bottom {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 5 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;

    padding: 22px 28px !important;
    background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,0)) !important;
    pointer-events: none !important;
}

.vf-player-control,
.vf-player-open-external {
    pointer-events: auto !important;
    border: 0 !important;
    border-radius: 8px !important;
    padding: 12px 18px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.vf-player-control {
    background: rgba(255,255,255,.16) !important;
    color: #fff !important;
}

.vf-player-control:hover {
    background: rgba(255,255,255,.26) !important;
}

.vf-player-open-external {
    background: rgba(229,9,20,.92) !important;
    color: #fff !important;
}

.vf-player-open-external:hover {
    background: #e50914 !important;
}

body.vf-player-open {
    overflow: hidden !important;
}

@media (max-width: 700px) {
    .vf-player-topbar {
        padding: 16px !important;
    }

    .vf-player-bottom {
        padding: 16px !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .vf-player-back {
        width: 42px !important;
        height: 42px !important;
        font-size: 38px !important;
    }

    #vfPlayerTitle {
        max-width: 62vw !important;
    }
}


/* =========================================================
   REPRODUCTOR EMBEBIDO MEJORADO 3.8
   ========================================================= */

.vf-player-screen {
    position: relative !important;
}

.vf-player-screen .vf-player-message + iframe {
    position: absolute !important;
    inset: 0 !important;
    opacity: .01 !important;
    pointer-events: none !important;
}

.vf-player-message strong {
    color: #fff !important;
    font-size: 20px !important;
}


/* =========================================================
   QUITAR BOTÓN ABRIR ENLACE ORIGINAL 3.9
   ========================================================= */

.vf-player-open-external,
#vfPlayerExternal {
    display: none !important;
    visibility: hidden !important;
}


.vf-player-bottom {
    justify-content: center !important;
}

.vf-player-control {
    min-width: 120px !important;
}


/* =========================================================
   QUITAR BOTÓN CERRAR INFERIOR 4.0
   ========================================================= */

#vfPlayerCloseBottom,
.vf-player-bottom .vf-player-control {
    display: none !important;
    visibility: hidden !important;
}

/* Oculta toda la barra inferior del reproductor */
.vf-player-bottom {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}


/* =========================================================
   CONTROLES TIPO NETFLIX 4.1
   ========================================================= */

.vf-player-shell {
    cursor: default !important;
}

/* Controles centrales */
.vf-player-center-controls {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 22px !important;

    z-index: 8 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity .18s ease !important;
}

.vf-player-shell:hover .vf-player-center-controls,
.vf-player-shell.is-paused .vf-player-center-controls {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.vf-player-big-control {
    width: 86px !important;
    height: 86px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(0,0,0,.62) !important;
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 12px 40px rgba(0,0,0,.45) !important;
    transition: transform .18s ease, background .18s ease !important;
}

.vf-player-main-toggle {
    width: 104px !important;
    height: 104px !important;
    font-size: 38px !important;
    background: rgba(255,255,255,.18) !important;
}

.vf-player-big-control:hover {
    transform: scale(1.08) !important;
    background: rgba(255,255,255,.22) !important;
}

/* Barra inferior tipo Netflix */
.vf-player-netflix-controls {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9 !important;

    padding: 0 34px 28px !important;
    background: linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,0)) !important;

    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity .18s ease !important;
}

.vf-player-shell:hover .vf-player-netflix-controls,
.vf-player-shell.is-paused .vf-player-netflix-controls {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.vf-player-progress-wrap {
    width: 100% !important;
    padding: 0 0 14px !important;
}

.vf-player-progress {
    width: 100% !important;
    height: 4px !important;
    accent-color: #e50914 !important;
    cursor: pointer !important;
}

.vf-player-control-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
}

.vf-player-left-controls,
.vf-player-right-controls {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0 !important;
}

.vf-player-mini-button {
    min-width: 42px !important;
    height: 42px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.10) !important;
    color: #fff !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 12px !important;
    transition: background .18s ease, transform .18s ease !important;
}

.vf-player-mini-button:hover {
    background: rgba(255,255,255,.22) !important;
    transform: translateY(-1px) !important;
}

.vf-player-volume {
    width: 88px !important;
    accent-color: #fff !important;
    cursor: pointer !important;
}

.vf-player-time {
    color: rgba(255,255,255,.78) !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    font-weight: 700 !important;
}

.vf-player-control-title {
    max-width: 360px !important;
    color: rgba(255,255,255,.86) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Nota para reproductores externos */
.vf-player-iframe-note {
    position: absolute !important;
    left: 50% !important;
    bottom: 28px !important;
    transform: translateX(-50%) !important;

    z-index: 9 !important;
    max-width: min(680px, calc(100vw - 40px)) !important;
    padding: 12px 16px !important;
    border-radius: 999px !important;
    background: rgba(0,0,0,.68) !important;
    color: rgba(255,255,255,.72) !important;
    font-size: 13px !important;
    text-align: center !important;

    display: none !important;
}

.vf-player-shell.is-external-player .vf-player-iframe-note {
    display: block !important;
}

.vf-player-shell.is-external-player .vf-player-netflix-controls,
.vf-player-shell.is-external-player .vf-player-center-controls {
    display: none !important;
}

/* En reproductores internos no se muestra la barra inferior vieja */
.vf-player-bottom {
    display: none !important;
}

@media (max-width: 760px) {
    .vf-player-center-controls {
        gap: 14px !important;
    }

    .vf-player-big-control {
        width: 62px !important;
        height: 62px !important;
        font-size: 15px !important;
    }

    .vf-player-main-toggle {
        width: 76px !important;
        height: 76px !important;
        font-size: 28px !important;
    }

    .vf-player-netflix-controls {
        padding: 0 14px 18px !important;
    }

    .vf-player-control-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .vf-player-left-controls,
    .vf-player-right-controls {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .vf-player-volume {
        width: 70px !important;
    }

    .vf-player-control-title {
        display: none !important;
    }
}


/* =========================================================
   TEMPORADAS EN SERIES 4.2
   ========================================================= */

.vf-seasons-section {
    padding: 28px 0 0 !important;
    margin: 0 !important;
}

.vf-seasons-head {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin: 0 0 14px !important;
}

.vf-seasons-head h3 {
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(24px, 2vw, 34px) !important;
    line-height: 1 !important;
    letter-spacing: -.05em !important;
    font-weight: 950 !important;
}

.vf-seasons-head span {
    color: rgba(255,255,255,.48) !important;
    font-size: 13px !important;
    white-space: nowrap !important;
}

.vf-seasons-list {
    display: grid !important;
    gap: 12px !important;
}

.vf-season-card {
    display: grid !important;
    grid-template-columns: 74px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: stretch !important;
    min-height: 104px !important;

    border: 1px solid rgba(255,255,255,.08) !important;
    background: #1c1c1c !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.24) !important;
}

.vf-season-poster {
    width: 74px !important;
    height: 104px !important;
    object-fit: cover !important;
    background: rgba(255,255,255,.08) !important;
}

.vf-season-number {
    width: 74px !important;
    height: 104px !important;
    display: grid !important;
    place-items: center !important;
    background: linear-gradient(135deg, #2b2b2b, #111) !important;
    color: #fff !important;
    font-size: 30px !important;
    font-weight: 950 !important;
}

.vf-season-info {
    padding: 14px 14px 12px 0 !important;
    min-width: 0 !important;
}

.vf-season-title {
    margin: 0 0 7px !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
}

.vf-season-meta {
    color: rgba(255,255,255,.62) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.vf-season-overview {
    margin: 0 !important;
    color: rgba(255,255,255,.68) !important;
    font-size: 12px !important;
    line-height: 1.42 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

@media (max-width: 700px) {
    .vf-season-card {
        grid-template-columns: 64px minmax(0, 1fr) !important;
        min-height: 94px !important;
    }

    .vf-season-poster,
    .vf-season-number {
        width: 64px !important;
        height: 94px !important;
    }
}


/* =========================================================
   EPISODIOS CLICABLES 4.5
   ========================================================= */

.vf-episode-card {
    cursor: pointer !important;
    transition: background .18s ease, transform .18s ease, border-color .18s ease !important;
}

.vf-episode-card:hover {
    background: rgba(255,255,255,.06) !important;
    transform: translateX(4px) !important;
}

.vf-episode-card:focus {
    outline: 2px solid #e50914 !important;
    outline-offset: 2px !important;
}

.vf-episode-card::after {
    content: "▶" !important;
    color: rgba(255,255,255,.72) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    padding-right: 8px !important;
}

@media (max-width: 760px) {
    .vf-episode-card::after {
        display: none !important;
    }
}


/* =========================================================
   FIX EPISODIOS NETFLIX 4.6
   ========================================================= */

.vf-seasons-section,
.vf-seasons-netflix,
.vf-seasons-list,
.vf-season-card,
.vf-season-featured {
    display: none !important;
}

.vf-episodes-netflix {
    display: block;
    padding: 28px 0 0 !important;
    margin: 0 !important;
}

.vf-episodes-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin-bottom: 8px !important;
}

.vf-episodes-top h3 {
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(26px, 2.2vw, 38px) !important;
    line-height: 1 !important;
    letter-spacing: -.05em !important;
    font-weight: 950 !important;
}

.vf-episodes-select-wrap {
    position: relative !important;
}

.vf-episodes-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    background: rgba(36,36,36,.96) !important;
    color: #fff !important;
    border-radius: 4px !important;
    min-width: 168px !important;
    min-height: 44px !important;
    padding: 0 42px 0 16px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
}

.vf-episodes-select-wrap::after {
    content: "▼" !important;
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: rgba(255,255,255,.82) !important;
    font-size: 11px !important;
    pointer-events: none !important;
}

.vf-episodes-subhead {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
}

.vf-episodes-subtitle {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

.vf-episodes-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 20px !important;
    padding: 0 7px !important;
    background: #f97316 !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

.vf-episodes-list {
    display: grid !important;
    gap: 0 !important;
}

.vf-episode-card {
    display: grid !important;
    grid-template-columns: 38px 136px minmax(0, 1fr) 28px !important;
    gap: 16px !important;
    align-items: center !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
    cursor: pointer !important;
    transition: background .18s ease, transform .18s ease !important;
}

.vf-episode-card:hover {
    background: rgba(255,255,255,.06) !important;
    transform: translateX(4px) !important;
}

.vf-episode-card:focus {
    outline: 2px solid #e50914 !important;
    outline-offset: 2px !important;
}

.vf-episode-card::after {
    content: "▶" !important;
    color: rgba(255,255,255,.72) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    justify-self: center !important;
}

.vf-episode-number {
    color: rgba(255,255,255,.82) !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    text-align: center !important;
}

.vf-episode-media {
    width: 136px !important;
}

.vf-episode-thumb {
    width: 136px !important;
    height: 76px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 2px !important;
}

.vf-episode-thumb-fallback {
    background: linear-gradient(135deg, #2c2c2c, #111) !important;
}

.vf-episode-body {
    min-width: 0 !important;
}

.vf-episode-head {
    display: flex !important;
    align-items: baseline !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-bottom: 6px !important;
}

.vf-episode-title {
    margin: 0 !important;
    color: #fff !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}

.vf-episode-duration {
    flex: none !important;
    color: rgba(255,255,255,.88) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

.vf-episode-description {
    margin: 0 !important;
    color: rgba(255,255,255,.78) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

@media (max-width: 760px) {
    .vf-episodes-top {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .vf-episode-card {
        grid-template-columns: 28px 100px minmax(0, 1fr) !important;
        gap: 12px !important;
        align-items: start !important;
    }

    .vf-episode-card::after {
        display: none !important;
    }

    .vf-episode-number {
        font-size: 18px !important;
        padding-top: 12px !important;
    }

    .vf-episode-media,
    .vf-episode-thumb {
        width: 100px !important;
        height: 56px !important;
    }

    .vf-episode-head {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }

    .vf-episode-title {
        font-size: 15px !important;
    }

    .vf-episode-description {
        font-size: 13px !important;
    }
}


/* FORZAR REEMPLAZO TEMA ACTIVO 4.7 */
body::after {
    content: "";
}


/* =========================================================
   MIS URLS PERSONALIZADAS 4.8
   ========================================================= */

/* Sin cambios visuales front importantes; esta versión añade campos nuevos en administración.
   El reproductor prioriza:
   1. Mi URL embebida
   2. Mi URL de reproducción
   3. Mi URL alternativa
   4. URL embebida
   5. URL de reproducción
   6. Tráiler
*/


/* =========================================================
   SIGUIENTE EPISODIO 5.4
   ========================================================= */

.vf-next-episode-button {
    position: absolute !important;
    right: 36px !important;
    bottom: 42px !important;
    z-index: 12 !important;

    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;

    border: 0 !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #000 !important;
    padding: 14px 22px !important;

    font-size: 15px !important;
    font-weight: 900 !important;
    cursor: pointer !important;

    box-shadow: 0 16px 42px rgba(0,0,0,.45) !important;
    transition: transform .18s ease, background .18s ease, opacity .18s ease !important;
}

.vf-next-episode-button:hover {
    transform: scale(1.04) !important;
    background: rgba(255,255,255,.88) !important;
}

.vf-next-episode-button span {
    font-size: 22px !important;
    line-height: 1 !important;
}

.vf-next-episode-button strong {
    font-weight: 950 !important;
}

.vf-next-episode-button.is-countdown::after {
    content: attr(data-countdown) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 24px !important;
    height: 24px !important;
    margin-left: 4px !important;
    border-radius: 999px !important;
    background: #e50914 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

.vf-player-shell.is-external-player .vf-next-episode-button {
    bottom: 34px !important;
}

@media (max-width: 700px) {
    .vf-next-episode-button {
        right: 16px !important;
        bottom: 24px !important;
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
}


/* =========================================================
   FIX SIGUIENTE EPISODIO 5.5
   ========================================================= */

.vf-next-episode-button {
    display: none !important;
}

.vf-next-episode-button.is-visible {
    display: inline-flex !important;
}

.vf-next-episode-button.is-countdown::after {
    content: attr(data-countdown) !important;
}


/* =========================================================
   SIGUIENTE EPISODIO SEGURO 5.6
   ========================================================= */

.vf-next-episode-button {
    display: none !important;
}

.vf-next-episode-button.is-visible {
    display: inline-flex !important;
}

.vf-next-episode-button.is-countdown::after {
    content: attr(data-countdown) !important;
}


/* =========================================================
   SIGUIENTE EPISODIO SIMPLE Y FIJO 5.7
   ========================================================= */

#vfNextEpisodeButton.vf-next-episode-button {
    display: none !important;
    position: absolute !important;
    right: 36px !important;
    bottom: 42px !important;
    z-index: 99999 !important;
    align-items: center !important;
    gap: 10px !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #000 !important;
    padding: 14px 22px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: 0 16px 42px rgba(0,0,0,.45) !important;
}

#vfNextEpisodeButton.vf-next-episode-button.vf-next-ready {
    display: inline-flex !important;
}

#vfNextEpisodeButton.vf-next-episode-button:hover {
    background: rgba(255,255,255,.9) !important;
    transform: scale(1.04) !important;
}

#vfNextEpisodeButton span {
    font-size: 22px !important;
    line-height: 1 !important;
}

@media (max-width: 700px) {
    #vfNextEpisodeButton.vf-next-episode-button {
        right: 16px !important;
        bottom: 24px !important;
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
}


/* =========================================================
   FIX DEFINITIVO SIGUIENTE EPISODIO 5.8
   ========================================================= */

#vfNextEpisodeButton.vf-next-episode-button {
    display: none !important;
    position: absolute !important;
    right: 36px !important;
    bottom: 42px !important;
    z-index: 999999 !important;
    align-items: center !important;
    gap: 10px !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #000 !important;
    padding: 14px 22px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: 0 16px 42px rgba(0,0,0,.45) !important;
}

#vfNextEpisodeButton.vf-next-episode-button.vf-next-ready {
    display: inline-flex !important;
}

#vfNextEpisodeButton.vf-next-episode-button:hover {
    background: rgba(255,255,255,.9) !important;
    transform: scale(1.04) !important;
}


/* =========================================================
   FIX BOTÓN VOLVER REPRODUCTOR 5.9
   ========================================================= */

#vfClosePlayer.vf-player-back {
    position: relative !important;
    z-index: 1000000 !important;
    pointer-events: auto !important;
}


/* =========================================================
   SIGUIENTE EPISODIO AUTO-OCULTO 6.0
   ========================================================= */

/* El botón sigue preparado, pero no queda fijo siempre visible */
#vfNextEpisodeButton.vf-next-episode-button.vf-next-ready {
    display: inline-flex !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(10px) !important;
    transition: opacity .22s ease, transform .22s ease, background .18s ease !important;
}

/* Se muestra si hay actividad del usuario en el reproductor */
.vf-player-shell.vf-player-user-active #vfNextEpisodeButton.vf-next-episode-button.vf-next-ready,
.vf-player-shell:hover #vfNextEpisodeButton.vf-next-episode-button.vf-next-ready,
#vfNextEpisodeButton.vf-next-episode-button.vf-next-ready.vf-next-force-visible,
#vfNextEpisodeButton.vf-next-episode-button.vf-next-ready.is-countdown {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/* Cuando hay cuenta atrás, se mantiene visible */
#vfNextEpisodeButton.vf-next-episode-button.is-countdown {
    display: inline-flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}


/* =========================================================
   CERRAR MODAL EN ESQUINA DE LA IMAGEN 6.1
   ========================================================= */

.vf-modal-card {
    position: relative !important;
    overflow: hidden !important;
}

.vf-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 20 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 999px !important;
    border: 0 !important;
    background: rgba(0,0,0,.72) !important;
    color: #fff !important;
    font-size: 28px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.35) !important;
}

.vf-close:hover {
    background: rgba(20,20,20,.88) !important;
    transform: scale(1.04) !important;
}

@media (max-width: 560px) {
    .vf-close {
        top: 12px !important;
        right: 12px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 24px !important;
    }
}


/* =========================================================
   MI LISTA + SEGUIR VIENDO REAL 6.2
   ========================================================= */

.vf-my-list-button.is-in-list {
    background: rgba(255,255,255,.92) !important;
    color: #111 !important;
}

.vf-card-progress {
    position: relative !important;
    width: 100% !important;
    height: 4px !important;
    background: rgba(255,255,255,.22) !important;
    border-radius: 999px !important;
    margin-top: 9px !important;
    overflow: hidden !important;
}

.vf-card-progress span {
    display: block !important;
    height: 100% !important;
    min-width: 4px !important;
    background: #e50914 !important;
    border-radius: inherit !important;
}

.vf-card:has(.vf-card-progress)::before {
    content: "Continuar" !important;
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 4 !important;
    background: rgba(0,0,0,.68) !important;
    color: #fff !important;
    padding: 4px 8px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

@supports not selector(:has(*)) {
    .vf-card-progress {
        box-shadow: 0 0 0 1px rgba(229,9,20,.12) !important;
    }
}


/* =========================================================
   PACK NETFLIX COMPLETO 7.0
   ========================================================= */

/* Perfil */
.vf-profile-button {
    border: 1px solid rgba(255,255,255,.16) !important;
    background: rgba(255,255,255,.06) !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 6px 12px 6px 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    font-weight: 900 !important;
}

.vf-profile-button span,
.vf-profile-avatar {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    display: inline-grid !important;
    place-items: center !important;
    background: linear-gradient(135deg, #e50914, #7f0006) !important;
    color: #fff !important;
    font-weight: 950 !important;
}

.vf-profile-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    background: #141414 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
}

.vf-profile-overlay.is-open {
    display: flex !important;
}

.vf-profile-panel {
    width: min(760px, calc(100% - 32px)) !important;
    text-align: center !important;
    position: relative !important;
}

.vf-profile-panel h2 {
    font-size: clamp(38px, 6vw, 68px) !important;
    margin: 0 0 12px !important;
    letter-spacing: -.06em !important;
}

.vf-profile-panel p {
    color: rgba(255,255,255,.62) !important;
    margin: 0 0 36px !important;
}

.vf-profile-close {
    position: absolute !important;
    top: -52px !important;
    right: 0 !important;
    width: 42px !important;
    height: 42px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
    font-size: 26px !important;
    cursor: pointer !important;
}

.vf-profile-grid {
    display: flex !important;
    justify-content: center !important;
    gap: 32px !important;
    flex-wrap: wrap !important;
}

.vf-profile-card {
    border: 0 !important;
    background: transparent !important;
    color: rgba(255,255,255,.72) !important;
    cursor: pointer !important;
    display: grid !important;
    gap: 14px !important;
    justify-items: center !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}

.vf-profile-card .vf-profile-avatar {
    width: 138px !important;
    height: 138px !important;
    border-radius: 12px !important;
    font-size: 56px !important;
    transition: transform .18s ease, box-shadow .18s ease !important;
}

.vf-profile-card:hover .vf-profile-avatar {
    transform: scale(1.06) !important;
    box-shadow: 0 0 0 4px #fff !important;
}

.vf-profile-avatar-kids {
    background: linear-gradient(135deg, #2563eb, #7c3aed) !important;
}

.vf-profile-avatar-invitado {
    background: linear-gradient(135deg, #374151, #111827) !important;
}

/* Hover tarjetas */
.vf-card {
    position: relative !important;
}

.vf-card-hover-actions {
    position: absolute !important;
    left: 12px !important;
    right: 12px !important;
    top: 12px !important;
    z-index: 5 !important;
    display: flex !important;
    gap: 8px !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition: opacity .18s ease, transform .18s ease !important;
}

.vf-card:hover .vf-card-hover-actions,
.vf-card:focus-within .vf-card-hover-actions {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.vf-card-quick {
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    background: rgba(20,20,20,.78) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-weight: 950 !important;
    backdrop-filter: blur(8px) !important;
}

.vf-card-quick:hover {
    background: #fff !important;
    color: #111 !important;
}

.vf-card:hover {
    transform: scale(1.08) translateY(-8px) !important;
    z-index: 20 !important;
}

/* Top 10 visual */
.vf-netflix-top10-row .vf-row {
    grid-auto-columns: minmax(250px, 310px) !important;
}

.vf-top10-card {
    position: relative !important;
    min-height: 260px !important;
    display: grid !important;
    grid-template-columns: 118px minmax(0, 1fr) !important;
    align-items: end !important;
}

.vf-top10-number {
    font-size: clamp(112px, 10vw, 170px) !important;
    line-height: .72 !important;
    font-weight: 950 !important;
    color: #050505 !important;
    -webkit-text-stroke: 3px rgba(255,255,255,.40) !important;
    text-shadow: 0 10px 30px rgba(0,0,0,.6) !important;
    letter-spacing: -.12em !important;
    transform: translateX(12px) !important;
    z-index: 1 !important;
}

.vf-top10-poster-wrap {
    position: relative !important;
    z-index: 2 !important;
    margin-left: -18px !important;
}

.vf-top10-poster-wrap .vf-card {
    height: 260px !important;
}

/* Saltar intro */
.vf-skip-intro-button {
    position: absolute !important;
    right: 36px !important;
    bottom: 116px !important;
    z-index: 15 !important;
    display: none !important;
    border: 0 !important;
    border-radius: 6px !important;
    padding: 13px 20px !important;
    background: rgba(255,255,255,.92) !important;
    color: #111 !important;
    font-weight: 950 !important;
    cursor: pointer !important;
    box-shadow: 0 14px 38px rgba(0,0,0,.42) !important;
}

.vf-skip-intro-button.is-visible {
    display: inline-flex !important;
}

/* Modal detalles más claro */
.vf-details-title {
    grid-column: 1 / -1 !important;
    color: #fff !important;
    font-size: 24px !important;
    margin: 0 0 4px !important;
    letter-spacing: -.04em !important;
}

.vf-trailer-button[style*="display: none"] {
    display: none !important;
}

body.vf-kids-profile .vf-badge-red::after {
    content: " · Kids" !important;
}

@media (max-width: 760px) {
    .vf-profile-grid {
        gap: 18px !important;
    }

    .vf-profile-card .vf-profile-avatar {
        width: 94px !important;
        height: 94px !important;
        font-size: 38px !important;
    }

    .vf-netflix-top10-row .vf-row {
        grid-auto-columns: minmax(210px, 240px) !important;
    }

    .vf-top10-card {
        grid-template-columns: 88px minmax(0, 1fr) !important;
    }

    .vf-top10-number {
        font-size: 110px !important;
    }
}


/* =========================================================
   QUITAR SALTAR INTRO 7.1
   ========================================================= */

#vfSkipIntroButton,
.vf-skip-intro-button {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


/* =========================================================
   CONTINUAR DESDE FICHA 7.3
   ========================================================= */

.vf-button.vf-button-continue {
    background: #fff !important;
    color: #111 !important;
}

.vf-button.vf-button-continue::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-radius: 999px;
    background: #e50914;
    vertical-align: middle;
}


/* =========================================================
   SCROLL VISIBLE EN FICHAS / MODAL 7.4
   ========================================================= */

.vf-modal-card {
    max-height: calc(100vh - 32px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scroll-behavior: smooth !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255,255,255,.55) rgba(255,255,255,.10) !important;
}

.vf-modal-card::-webkit-scrollbar {
    width: 12px !important;
}

.vf-modal-card::-webkit-scrollbar-track {
    background: rgba(255,255,255,.10) !important;
    border-radius: 999px !important;
}

.vf-modal-card::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.55) !important;
    border-radius: 999px !important;
    border: 2px solid rgba(0,0,0,.18) !important;
}

.vf-modal-card::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,.78) !important;
}

.vf-modal-content,
.vf-modal-body {
    overflow: visible !important;
}

@media (max-width: 768px) {
    .vf-modal-card {
        max-height: calc(100vh - 12px) !important;
    }

    .vf-modal-card::-webkit-scrollbar {
        width: 9px !important;
    }
}


/* =========================================================
   BOTONES CIRCULARES TIPO NETFLIX 7.5
   ========================================================= */

#vfHeroMore,
#vfHeroMyList,
#vfModalLink,
#vfModalMyList {
    width: 58px !important;
    min-width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    border: 2px solid rgba(255,255,255,.82) !important;
    background: rgba(42,42,42,.30) !important;
    color: #fff !important;
    font-size: 0 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.24) !important;
}

#vfHeroMore::before,
#vfModalLink::before {
    content: "i" !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-family: Arial, sans-serif !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
}

#vfHeroMyList::before,
#vfModalMyList::before {
    content: "+" !important;
    font-size: 38px !important;
    font-weight: 300 !important;
    font-family: Arial, sans-serif !important;
    line-height: 1 !important;
    transform: translateY(-2px) !important;
}

#vfHeroMore:hover,
#vfHeroMyList:hover,
#vfModalLink:hover,
#vfModalMyList:hover {
    background: rgba(255,255,255,.12) !important;
    border-color: #fff !important;
    transform: scale(1.06) !important;
}

#vfHeroMore:focus-visible,
#vfHeroMyList:focus-visible,
#vfModalLink:focus-visible,
#vfModalMyList:focus-visible {
    outline: 2px solid #fff !important;
    outline-offset: 3px !important;
}

@media (max-width: 760px) {
    #vfHeroMore,
    #vfHeroMyList,
    #vfModalLink,
    #vfModalMyList {
        width: 52px !important;
        min-width: 52px !important;
        height: 52px !important;
        min-height: 52px !important;
    }

    #vfHeroMore::before,
    #vfModalLink::before {
        font-size: 28px !important;
    }

    #vfHeroMyList::before,
    #vfModalMyList::before {
        font-size: 34px !important;
    }
}


/* =========================================================
   BOTONES CIRCULARES CENTRADOS 7.6
   ========================================================= */

#vfHeroMore,
#vfHeroMyList,
#vfHeroTrailer,
#vfModalLink,
#vfModalMyList,
#vfModalTrailer {
    width: 58px !important;
    min-width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 999px !important;
    border: 2px solid rgba(255,255,255,.82) !important;
    background: rgba(42,42,42,.30) !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: 0 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.24) !important;
}

#vfHeroMore::before,
#vfModalLink::before,
#vfHeroMyList::before,
#vfModalMyList::before,
#vfHeroTrailer::before,
#vfModalTrailer::before {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    color: #fff !important;
    font-family: Arial, sans-serif !important;
    font-style: normal !important;
    text-align: center !important;
    line-height: 1 !important;
}

#vfHeroMore::before,
#vfModalLink::before {
    content: "i" !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    transform: translateY(-1px) !important;
}

#vfHeroMyList::before,
#vfModalMyList::before {
    content: "+" !important;
    font-size: 36px !important;
    font-weight: 300 !important;
    transform: translateY(-2px) !important;
}

#vfHeroTrailer::before,
#vfModalTrailer::before {
    content: "▶" !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    transform: translateX(2px) !important;
}

#vfHeroMore:hover,
#vfHeroMyList:hover,
#vfHeroTrailer:hover,
#vfModalLink:hover,
#vfModalMyList:hover,
#vfModalTrailer:hover {
    background: rgba(255,255,255,.12) !important;
    border-color: #fff !important;
    transform: scale(1.06) !important;
}

#vfHeroMore:focus-visible,
#vfHeroMyList:focus-visible,
#vfHeroTrailer:focus-visible,
#vfModalLink:focus-visible,
#vfModalMyList:focus-visible,
#vfModalTrailer:focus-visible {
    outline: 2px solid #fff !important;
    outline-offset: 3px !important;
}

@media (max-width: 760px) {
    #vfHeroMore,
    #vfHeroMyList,
    #vfHeroTrailer,
    #vfModalLink,
    #vfModalMyList,
    #vfModalTrailer {
        width: 52px !important;
        min-width: 52px !important;
        height: 52px !important;
        min-height: 52px !important;
    }

    #vfHeroMore::before,
    #vfModalLink::before {
        font-size: 28px !important;
    }

    #vfHeroMyList::before,
    #vfModalMyList::before {
        font-size: 33px !important;
    }

    #vfHeroTrailer::before,
    #vfModalTrailer::before {
        font-size: 22px !important;
    }
}


/* =========================================================
   BOTONES CIRCULARES MÁS FINOS ESTILO NETFLIX 7.7
   ========================================================= */

#vfHeroMore,
#vfHeroMyList,
#vfHeroTrailer,
#vfModalLink,
#vfModalMyList,
#vfModalTrailer {
    width: 54px !important;
    min-width: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
    border: 1.5px solid rgba(255,255,255,.62) !important;
    background: rgba(42,42,42,.16) !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.18) !important;
    backdrop-filter: blur(7px) !important;
    -webkit-backdrop-filter: blur(7px) !important;
}

#vfHeroMore::before,
#vfModalLink::before,
#vfHeroMyList::before,
#vfModalMyList::before,
#vfHeroTrailer::before,
#vfModalTrailer::before {
    color: rgba(255,255,255,.96) !important;
}

#vfHeroMore::before,
#vfModalLink::before {
    font-size: 26px !important;
    font-weight: 800 !important;
    transform: translateY(-1px) !important;
}

#vfHeroMyList::before,
#vfModalMyList::before {
    font-size: 31px !important;
    font-weight: 300 !important;
    transform: translateY(-1px) !important;
}

#vfHeroTrailer::before,
#vfModalTrailer::before {
    font-size: 20px !important;
    font-weight: 900 !important;
    transform: translateX(1px) !important;
}

#vfHeroMore:hover,
#vfHeroMyList:hover,
#vfHeroTrailer:hover,
#vfModalLink:hover,
#vfModalMyList:hover,
#vfModalTrailer:hover {
    background: rgba(255,255,255,.10) !important;
    border-color: rgba(255,255,255,.90) !important;
    transform: scale(1.04) !important;
}

@media (max-width: 760px) {
    #vfHeroMore,
    #vfHeroMyList,
    #vfHeroTrailer,
    #vfModalLink,
    #vfModalMyList,
    #vfModalTrailer {
        width: 50px !important;
        min-width: 50px !important;
        height: 50px !important;
        min-height: 50px !important;
    }

    #vfHeroMore::before,
    #vfModalLink::before {
        font-size: 24px !important;
    }

    #vfHeroMyList::before,
    #vfModalMyList::before {
        font-size: 29px !important;
    }

    #vfHeroTrailer::before,
    #vfModalTrailer::before {
        font-size: 18px !important;
    }
}


/* =========================================================
   MI LISTA CON PULGAR CAMBIANTE 7.8
   ========================================================= */

#vfHeroMyList::before,
#vfModalMyList::before {
    content: "👍" !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    transform: translateY(-1px) !important;
    transition: transform .18s ease, opacity .18s ease !important;
}

#vfHeroMyList.is-in-list,
#vfModalMyList.is-in-list {
    background: rgba(255,255,255,.92) !important;
    border-color: rgba(255,255,255,.96) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.24) !important;
}

#vfHeroMyList.is-in-list::before,
#vfModalMyList.is-in-list::before {
    content: "✓" !important;
    color: #111 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    transform: translateY(-1px) scale(1.05) !important;
}

#vfHeroMyList:hover::before,
#vfModalMyList:hover::before {
    transform: translateY(-1px) scale(1.08) !important;
}

@media (max-width: 760px) {
    #vfHeroMyList::before,
    #vfModalMyList::before {
        font-size: 18px !important;
    }

    #vfHeroMyList.is-in-list::before,
    #vfModalMyList.is-in-list::before {
        font-size: 20px !important;
    }
}


/* =========================================================
   PULGAR CONTORNO TIPO FOTO 7.8.1
   ========================================================= */

#vfHeroMyList::before,
#vfModalMyList::before {
    content: "" !important;
    width: 22px !important;
    height: 22px !important;
    background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%222.1%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%0A%3Cpath%20d%3D%22M14%209V5.8c0-1.5-.4-2.7-1.2-3.6L8.6%206.4C8.2%206.8%208%207.3%208%207.9V19c0%201.1.9%202%202%202h7.2c1%200%201.8-.7%202-1.6l1.2-7c.2-1.3-.8-2.4-2.1-2.4H14z%22/%3E%0A%3Cpath%20d%3D%22M4%2021V10h4v11H4z%22/%3E%0A%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    transform: none !important;
}

#vfHeroMyList:hover::before,
#vfModalMyList:hover::before {
    transform: scale(1.04) !important;
}

#vfHeroMyList.is-in-list::before,
#vfModalMyList.is-in-list::before {
    content: "✓" !important;
    background-image: none !important;
    width: auto !important;
    height: auto !important;
    color: #111 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    transform: translateY(-1px) scale(1.05) !important;
}

@media (max-width: 760px) {
    #vfHeroMyList::before,
    #vfModalMyList::before {
        width: 20px !important;
        height: 20px !important;
    }

    #vfHeroMyList.is-in-list::before,
    #vfModalMyList.is-in-list::before {
        font-size: 20px !important;
    }
}


/* =========================================================
   PULGAR CONTORNO CENTRADO 7.8.2
   ========================================================= */

#vfHeroMyList::before,
#vfModalMyList::before {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    inset: auto !important;
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    background-position: center center !important;
    background-size: 20px 20px !important;
    transform: translate(-50%, -50%) !important;
}

#vfHeroMyList:hover::before,
#vfModalMyList:hover::before {
    transform: translate(-50%, -50%) scale(1.05) !important;
}

#vfHeroMyList.is-in-list::before,
#vfModalMyList.is-in-list::before {
    width: auto !important;
    height: auto !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) scale(1.05) !important;
}

@media (max-width: 760px) {
    #vfHeroMyList::before,
    #vfModalMyList::before {
        width: 18px !important;
        height: 18px !important;
        background-size: 18px 18px !important;
    }
}


/* =========================================================
   PULGAR REALMENTE CENTRADO 7.8.3
   ========================================================= */

#vfHeroMyList,
#vfModalMyList {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

#vfHeroMyList::before,
#vfModalMyList::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    inset: auto !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%0A%3Cg%20transform%3D%22translate%280.8%2C0.2%29%22%3E%0A%3Cpath%20d%3D%22M13.5%209.5V5.6c0-1.4-.4-2.5-1.1-3.3L8.7%206c-.4.4-.7%201-.7%201.6V18c0%201%20.8%201.8%201.8%201.8h6.9c.9%200%201.6-.6%201.8-1.5l1.1-6.2c.2-1.2-.7-2.2-1.9-2.2h-4.2z%22/%3E%0A%3Cpath%20d%3D%22M4.4%2018.8V9.7H8v9.1H4.4z%22/%3E%0A%3C/g%3E%0A%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 18px 18px !important;
    transform: translate(-50%, -50%) !important;
}

#vfHeroMyList:hover::before,
#vfModalMyList:hover::before {
    transform: translate(-50%, -50%) scale(1.06) !important;
}

#vfHeroMyList.is-in-list::before,
#vfModalMyList.is-in-list::before {
    content: "✓" !important;
    background-image: none !important;
    width: auto !important;
    height: auto !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) scale(1.04) !important;
    color: #111 !important;
    font-size: 21px !important;
    font-weight: 900 !important;
}

@media (max-width: 760px) {
    #vfHeroMyList::before,
    #vfModalMyList::before {
        width: 17px !important;
        height: 17px !important;
        background-size: 17px 17px !important;
    }

    #vfHeroMyList.is-in-list::before,
    #vfModalMyList.is-in-list::before {
        font-size: 19px !important;
    }
}


/* =========================================================
   PULGAR DEFINITIVAMENTE CENTRADO 7.8.4
   ========================================================= */

/* anular cualquier pulgar previo */
#vfHeroMyList::before,
#vfModalMyList::before {
    content: none !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
    transform: none !important;
}

/* usar ::after limpio, sin herencias raras */
#vfHeroMyList,
#vfModalMyList {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#vfHeroMyList::after,
#vfModalMyList::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 22px !important;
    height: 22px !important;
    transform: translate(-50%, -50%) !important;
    background-color: #fff !important;
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%0A%3Cpath%20d%3D%22M7.5%2010.2v9.1%22/%3E%0A%3Cpath%20d%3D%22M7.5%2010.2H4.8v9.1h2.7%22/%3E%0A%3Cpath%20d%3D%22M10%2010.2V6.3c0-1.3.4-2.4%201.1-3.2l2.6-2.6c.5-.5%201.4-.2%201.4.6v5.6h3.4c1.4%200%202.4%201.2%202.2%202.5l-1%206.6c-.2%201.1-1.1%201.8-2.2%201.8H10c-1.4%200-2.5-1.1-2.5-2.5v-4.9%22/%3E%0A%3C/svg%3E") !important;
    -webkit-mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    -webkit-mask-size: 22px 22px !important;
    mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%0A%3Cpath%20d%3D%22M7.5%2010.2v9.1%22/%3E%0A%3Cpath%20d%3D%22M7.5%2010.2H4.8v9.1h2.7%22/%3E%0A%3Cpath%20d%3D%22M10%2010.2V6.3c0-1.3.4-2.4%201.1-3.2l2.6-2.6c.5-.5%201.4-.2%201.4.6v5.6h3.4c1.4%200%202.4%201.2%202.2%202.5l-1%206.6c-.2%201.1-1.1%201.8-2.2%201.8H10c-1.4%200-2.5-1.1-2.5-2.5v-4.9%22/%3E%0A%3C/svg%3E") !important;
    mask-repeat: no-repeat !important;
    mask-position: center !important;
    mask-size: 22px 22px !important;
    pointer-events: none !important;
}

#vfHeroMyList:hover::after,
#vfModalMyList:hover::after {
    transform: translate(-50%, -50%) scale(1.05) !important;
}

#vfHeroMyList.is-in-list::after,
#vfModalMyList.is-in-list::after {
    content: "✓" !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    -webkit-mask: none !important;
    mask: none !important;
    color: #111 !important;
    font-size: 21px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    transform: translate(-50%, -50%) !important;
}

@media (max-width: 760px) {
    #vfHeroMyList::after,
    #vfModalMyList::after {
        width: 20px !important;
        height: 20px !important;
        -webkit-mask-size: 20px 20px !important;
        mask-size: 20px 20px !important;
    }

    #vfHeroMyList.is-in-list::after,
    #vfModalMyList.is-in-list::after {
        font-size: 19px !important;
    }
}


/* =========================================================
   BOTONES DE PORTADA TIPO NETFLIX 7.9
   ========================================================= */

.vf-card-hover-actions {
    position: absolute !important;
    left: 16px !important;
    right: 16px !important;
    bottom: 44px !important;
    top: auto !important;
    z-index: 7 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    opacity: 0 !important;
    transform: translateY(8px) !important;
    pointer-events: none !important;
    transition: opacity .2s ease, transform .2s ease !important;
}

.vf-card:hover .vf-card-hover-actions,
.vf-card:focus-within .vf-card-hover-actions {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.vf-card-hover-left,
.vf-card-hover-right {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.vf-card-quick {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 999px !important;
    border: 2px solid rgba(255,255,255,.72) !important;
    background: rgba(36,36,36,.70) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-weight: 800 !important;
    font-size: 20px !important;
    line-height: 1 !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.32) !important;
    transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.vf-card-quick:hover {
    transform: scale(1.06) !important;
    border-color: #fff !important;
    background: rgba(54,54,54,.85) !important;
    color: #fff !important;
}

.vf-card-quick-play {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    background: #fff !important;
    border-color: #fff !important;
    color: #111 !important;
    font-size: 24px !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.35) !important;
}

.vf-card-quick-play:hover {
    background: rgba(255,255,255,.88) !important;
    color: #111 !important;
}

.vf-card-quick-list {
    font-size: 29px !important;
    font-weight: 300 !important;
    padding-bottom: 2px !important;
}

.vf-card-quick-dismiss {
    font-size: 30px !important;
    font-weight: 300 !important;
    padding-bottom: 1px !important;
}

.vf-card-quick-info {
    font-size: 28px !important;
    font-weight: 300 !important;
    padding-top: 1px !important;
}

.vf-card-quick-like {
    font-size: 0 !important;
}

.vf-card-quick-like span {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    background-color: #fff !important;
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M7.5%2010.2v9.1%22/%3E%3Cpath%20d%3D%22M7.5%2010.2H4.8v9.1h2.7%22/%3E%3Cpath%20d%3D%22M10%2010.2V6.3c0-1.3.4-2.4%201.1-3.2l2.6-2.6c.5-.5%201.4-.2%201.4.6v5.6h3.4c1.4%200%202.4%201.2%202.2%202.5l-1%206.6c-.2%201.1-1.1%201.8-2.2%201.8H10c-1.4%200-2.5-1.1-2.5-2.5v-4.9%22/%3E%3C/svg%3E") !important;
    -webkit-mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    -webkit-mask-size: 18px 18px !important;
    mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.9%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M7.5%2010.2v9.1%22/%3E%3Cpath%20d%3D%22M7.5%2010.2H4.8v9.1h2.7%22/%3E%3Cpath%20d%3D%22M10%2010.2V6.3c0-1.3.4-2.4%201.1-3.2l2.6-2.6c.5-.5%201.4-.2%201.4.6v5.6h3.4c1.4%200%202.4%201.2%202.2%202.5l-1%206.6c-.2%201.1-1.1%201.8-2.2%201.8H10c-1.4%200-2.5-1.1-2.5-2.5v-4.9%22/%3E%3C/svg%3E") !important;
    mask-repeat: no-repeat !important;
    mask-position: center !important;
    mask-size: 18px 18px !important;
}

.vf-card-quick-list.is-active,
.vf-card-quick-like.is-active {
    background: #fff !important;
    border-color: #fff !important;
    color: #111 !important;
}

.vf-card-quick-like.is-active span {
    background-color: #111 !important;
}

.vf-card-info {
    padding-top: 68px !important;
}

.vf-card:hover {
    transform: scale(1.1) translateY(-10px) !important;
    z-index: 24 !important;
}

@media (max-width: 760px) {
    .vf-card-hover-actions {
        left: 12px !important;
        right: 12px !important;
        bottom: 38px !important;
    }

    .vf-card-quick {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        font-size: 18px !important;
    }

    .vf-card-quick-play {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 21px !important;
    }

    .vf-card-quick-like span {
        width: 16px !important;
        height: 16px !important;
        -webkit-mask-size: 16px 16px !important;
        mask-size: 16px 16px !important;
    }
}


/* =========================================================
   PORTADAS EXPANDIDAS + MINI SINOPSIS 8.0
   ========================================================= */

.vf-card {
    overflow: visible !important;
    transform-origin: center center !important;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease !important;
}

.vf-card-gradient {
    height: 62% !important;
}

.vf-card-hover-panel {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 52px !important;
    z-index: 7 !important;
    padding: 0 16px !important;
    opacity: 0 !important;
    transform: translateY(10px) !important;
    pointer-events: none !important;
    transition: opacity .22s ease, transform .22s ease !important;
}

.vf-card:hover .vf-card-hover-panel,
.vf-card:focus-within .vf-card-hover-panel {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.vf-card-hover-actions {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    z-index: auto !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
}

.vf-card-hover-synopsis {
    margin: 0 !important;
    color: rgba(255,255,255,.92) !important;
    font-size: 13px !important;
    line-height: 1.38 !important;
    font-weight: 500 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.45) !important;
}

.vf-card-info {
    padding-top: 118px !important;
}

.vf-card-title {
    font-size: 15px !important;
    line-height: 1.12 !important;
}

.vf-card-meta {
    font-size: 12px !important;
}

.vf-card:hover,
.vf-card:focus-within {
    transform: scale(1.14) translateY(-18px) !important;
    z-index: 28 !important;
    box-shadow: 0 30px 90px rgba(0,0,0,.68) !important;
    border-color: rgba(255,255,255,.28) !important;
}

@media (max-width: 760px) {
    .vf-card-hover-panel {
        bottom: 44px !important;
        padding: 0 12px !important;
    }

    .vf-card-hover-actions {
        margin-bottom: 10px !important;
    }

    .vf-card-hover-synopsis {
        font-size: 12px !important;
        -webkit-line-clamp: 2 !important;
    }

    .vf-card-info {
        padding-top: 104px !important;
    }

    .vf-card:hover,
    .vf-card:focus-within {
        transform: scale(1.1) translateY(-12px) !important;
    }
}


/* =========================================================
   ENTRADAS HORIZONTALES TIPO NETFLIX 8.1
   ========================================================= */

.vf-row {
    grid-auto-columns: minmax(260px, 296px) !important;
    gap: 8px !important;
    padding: 8px 0 20px !important;
}

.vf-card {
    border-radius: 6px !important;
    border: 0 !important;
    background: #111 !important;
    overflow: hidden !important;
}

.vf-poster {
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block !important;
    background: #222 !important;
}

.vf-card-gradient,
.vf-card-info {
    display: none !important;
}

.vf-card:hover,
.vf-card:focus-within {
    transform: scale(1.16) translateY(-12px) !important;
    z-index: 30 !important;
    box-shadow: 0 26px 70px rgba(0,0,0,.62) !important;
}

.vf-card-hover-panel {
    bottom: 0 !important;
    padding: 14px !important;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10,10,10,.15) 14%, rgba(18,18,18,.96) 34%, rgba(18,18,18,.98) 100%) !important;
}

.vf-card-hover-title {
    margin: 0 0 10px !important;
    font-size: 15px !important;
    line-height: 1.16 !important;
    font-weight: 900 !important;
    color: #fff !important;
}

.vf-card-hover-actions {
    margin-bottom: 10px !important;
}

.vf-card-hover-synopsis {
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: rgba(255,255,255,.88) !important;
    -webkit-line-clamp: 3 !important;
}

@media (max-width: 760px) {
    .vf-row {
        grid-auto-columns: minmax(220px, 250px) !important;
        gap: 6px !important;
    }

    .vf-card:hover,
    .vf-card:focus-within {
        transform: scale(1.08) translateY(-8px) !important;
    }

    .vf-card-hover-panel {
        padding: 12px !important;
    }

    .vf-card-hover-title {
        font-size: 14px !important;
    }
}


/* =========================================================
   ENTRADAS + TOP 10 MÁS NETFLIX 8.2
   ========================================================= */

/* Filas principales más tipo Netflix */
.vf-row {
    grid-auto-columns: minmax(270px, 310px) !important;
    gap: 6px !important;
    padding: 8px 0 22px !important;
    overflow-y: visible !important;
}

.vf-card {
    border-radius: 4px !important;
    border: 0 !important;
    background: #141414 !important;
    box-shadow: none !important;
}

.vf-card:hover,
.vf-card:focus-within {
    transform: scale(1.18) translateY(-14px) !important;
    z-index: 40 !important;
    box-shadow: 0 20px 45px rgba(0,0,0,.55) !important;
}

.vf-poster {
    aspect-ratio: 16 / 9 !important;
    border-radius: 4px !important;
}

.vf-card-hover-panel {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 12px 12px 14px !important;
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,.22) 20%, rgba(20,20,20,.92) 42%, rgba(20,20,20,1) 100%) !important;
}

.vf-card-hover-title {
    margin: 0 0 8px !important;
    font-size: 15px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    letter-spacing: -.02em !important;
}

.vf-card-hover-synopsis {
    font-size: 11.5px !important;
    line-height: 1.38 !important;
    color: rgba(255,255,255,.86) !important;
    -webkit-line-clamp: 2 !important;
}

.vf-card-quick {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    font-size: 18px !important;
}

.vf-card-quick-play {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    font-size: 20px !important;
}

.vf-card-quick-list { font-size: 26px !important; }
.vf-card-quick-dismiss { font-size: 28px !important; }
.vf-card-quick-info { font-size: 26px !important; }

/* Top 10 más Netflix */
.vf-netflix-top10-row .vf-row {
    grid-auto-columns: minmax(320px, 360px) !important;
    gap: 10px !important;
    padding-top: 16px !important;
    padding-bottom: 28px !important;
}

.vf-top10-card {
    min-height: 210px !important;
    display: grid !important;
    grid-template-columns: 82px minmax(0, 1fr) !important;
    align-items: end !important;
    overflow: visible !important;
}

.vf-top10-number {
    align-self: end !important;
    justify-self: start !important;
    font-size: clamp(120px, 11vw, 170px) !important;
    line-height: .78 !important;
    font-weight: 1000 !important;
    color: rgb(20,20,20) !important;
    -webkit-text-stroke: 4px rgba(255,255,255,.92) !important;
    text-stroke: 4px rgba(255,255,255,.92) !important;
    text-shadow: 0 8px 24px rgba(0,0,0,.45) !important;
    letter-spacing: -.12em !important;
    transform: translateX(10px) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.vf-top10-poster-wrap {
    position: relative !important;
    z-index: 2 !important;
    margin-left: -10px !important;
}

.vf-top10-poster-wrap .vf-card {
    min-height: 203px !important;
}

.vf-top10-poster-wrap .vf-poster {
    aspect-ratio: 16 / 9 !important;
}

.vf-top10-poster-wrap .vf-card:hover,
.vf-top10-poster-wrap .vf-card:focus-within {
    transform: scale(1.08) translateY(-10px) !important;
}

.vf-netflix-top10-row .vf-section-title::after {
    content: ' · Netflix';
    color: rgba(255,255,255,.42);
    font-size: .55em;
    font-weight: 700;
    letter-spacing: 0;
    margin-left: 8px;
}

/* móvil */
@media (max-width: 760px) {
    .vf-row {
        grid-auto-columns: minmax(210px, 240px) !important;
        gap: 6px !important;
    }

    .vf-card:hover,
    .vf-card:focus-within {
        transform: scale(1.08) translateY(-8px) !important;
    }

    .vf-card-hover-panel {
        padding: 10px 10px 12px !important;
    }

    .vf-card-hover-title {
        font-size: 13px !important;
    }

    .vf-card-hover-synopsis {
        display: none !important;
    }

    .vf-netflix-top10-row .vf-row {
        grid-auto-columns: minmax(240px, 270px) !important;
        gap: 8px !important;
    }

    .vf-top10-card {
        min-height: 168px !important;
        grid-template-columns: 62px minmax(0, 1fr) !important;
    }

    .vf-top10-number {
        font-size: 96px !important;
        -webkit-text-stroke: 3px rgba(255,255,255,.92) !important;
        transform: translateX(6px) !important;
    }

    .vf-top10-poster-wrap .vf-card {
        min-height: 160px !important;
    }
}


/* =========================================================
   TOP 10 NETFLIX LIMPIO 8.3
   ========================================================= */

.vf-netflix-top10-row .vf-row {
    grid-auto-columns: minmax(300px, 340px) !important;
    gap: 12px !important;
    padding: 12px 0 26px !important;
    overflow-y: visible !important;
}

.vf-top10-card {
    position: relative !important;
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) !important;
    align-items: end !important;
    overflow: visible !important;
}

.vf-top10-number {
    align-self: end !important;
    justify-self: start !important;
    font-size: clamp(118px, 10vw, 156px) !important;
    line-height: .78 !important;
    font-weight: 1000 !important;
    color: rgba(20,20,20,1) !important;
    -webkit-text-stroke: 4px rgba(255,255,255,.96) !important;
    text-shadow: 0 10px 24px rgba(0,0,0,.34) !important;
    letter-spacing: -.12em !important;
    transform: translateX(8px) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.vf-top10-poster-wrap {
    position: relative !important;
    z-index: 2 !important;
    margin-left: -6px !important;
    overflow: visible !important;
}

.vf-top10-poster-wrap .vf-card {
    min-height: 0 !important;
    height: auto !important;
    background: transparent !important;
    overflow: visible !important;
    box-shadow: none !important;
    border-radius: 4px !important;
}

.vf-top10-poster-wrap .vf-poster {
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    border-radius: 4px !important;
    display: block !important;
}

/* En Top 10 no queremos caja negra vacía */
.vf-top10-poster-wrap .vf-card-gradient,
.vf-top10-poster-wrap .vf-card-info {
    display: none !important;
}

.vf-top10-poster-wrap .vf-card-hover-panel {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 10px 10px 12px !important;
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,.15) 20%, rgba(20,20,20,.88) 50%, rgba(20,20,20,.98) 100%) !important;
}

.vf-top10-poster-wrap .vf-card-hover-title {
    font-size: 14px !important;
    margin: 0 0 8px !important;
}

.vf-top10-poster-wrap .vf-card-hover-synopsis {
    font-size: 11px !important;
    -webkit-line-clamp: 2 !important;
}

.vf-top10-poster-wrap .vf-card:hover,
.vf-top10-poster-wrap .vf-card:focus-within {
    transform: scale(1.08) translateY(-8px) !important;
    z-index: 50 !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.48) !important;
}

.vf-top10-poster-wrap .vf-card-quick {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
}

.vf-top10-poster-wrap .vf-card-quick-play {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
}

.vf-netflix-top10-row .vf-section-title::after {
    content: '' !important;
}

@media (max-width: 760px) {
    .vf-netflix-top10-row .vf-row {
        grid-auto-columns: minmax(240px, 270px) !important;
        gap: 8px !important;
    }

    .vf-top10-card {
        grid-template-columns: 56px minmax(0, 1fr) !important;
    }

    .vf-top10-number {
        font-size: 92px !important;
        -webkit-text-stroke: 3px rgba(255,255,255,.96) !important;
        transform: translateX(4px) !important;
    }

    .vf-top10-poster-wrap .vf-card:hover,
    .vf-top10-poster-wrap .vf-card:focus-within {
        transform: scale(1.05) translateY(-6px) !important;
    }
}


/* =========================================================
   BOTONES Y TEXTO MEJORADOS 8.4
   ========================================================= */

.vf-card-hover-panel {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 14px 14px 16px !important;
    background:
      linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,.10) 16%, rgba(20,20,20,.78) 42%, rgba(20,20,20,.96) 70%, rgba(20,20,20,1) 100%) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.vf-card-hover-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
}

.vf-card-hover-left,
.vf-card-hover-right {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
}

.vf-card-quick {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 999px !important;
    border: 2px solid rgba(255,255,255,.72) !important;
    background: rgba(42,42,42,.78) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.30) !important;
    transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease !important;
}

.vf-card-quick:hover {
    transform: scale(1.06) !important;
    border-color: #fff !important;
    background: rgba(60,60,60,.92) !important;
    color: #fff !important;
}

.vf-card-quick-play {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    background: #fff !important;
    border-color: #fff !important;
    color: #111 !important;
    font-size: 23px !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.34) !important;
}

.vf-card-quick-play:hover {
    background: rgba(255,255,255,.88) !important;
    color: #111 !important;
}

.vf-card-quick-list {
    font-size: 28px !important;
    font-weight: 300 !important;
    padding-bottom: 1px !important;
}

.vf-card-quick-dismiss {
    font-size: 30px !important;
    font-weight: 300 !important;
    padding-bottom: 2px !important;
}

.vf-card-quick-info {
    font-size: 30px !important;
    font-weight: 300 !important;
    padding-top: 0 !important;
}

.vf-card-quick-like span {
    width: 19px !important;
    height: 19px !important;
    -webkit-mask-size: 19px 19px !important;
    mask-size: 19px 19px !important;
}

.vf-card-quick-list.is-active,
.vf-card-quick-like.is-active {
    background: #fff !important;
    border-color: #fff !important;
    color: #111 !important;
}

.vf-card-quick-like.is-active span {
    background-color: #111 !important;
}

.vf-card-hover-title {
    margin: 0 0 8px !important;
    color: #fff !important;
    font-size: 17px !important;
    line-height: 1.12 !important;
    font-weight: 900 !important;
    letter-spacing: -.02em !important;
    text-shadow: 0 3px 14px rgba(0,0,0,.45) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.vf-card-hover-synopsis {
    margin: 0 !important;
    color: rgba(255,255,255,.90) !important;
    font-size: 12.5px !important;
    line-height: 1.42 !important;
    font-weight: 500 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.42) !important;
}

.vf-top10-poster-wrap .vf-card-hover-panel {
    padding: 12px 12px 14px !important;
}

.vf-top10-poster-wrap .vf-card-hover-title {
    font-size: 15px !important;
}

.vf-top10-poster-wrap .vf-card-hover-synopsis {
    font-size: 11.5px !important;
    -webkit-line-clamp: 2 !important;
}

@media (max-width: 760px) {
    .vf-card-hover-panel {
        padding: 12px 12px 14px !important;
    }

    .vf-card-hover-actions {
        gap: 10px !important;
        margin-bottom: 10px !important;
    }

    .vf-card-hover-left,
    .vf-card-hover-right {
        gap: 8px !important;
    }

    .vf-card-quick {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
    }

    .vf-card-quick-play {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        font-size: 21px !important;
    }

    .vf-card-quick-like span {
        width: 17px !important;
        height: 17px !important;
        -webkit-mask-size: 17px 17px !important;
        mask-size: 17px 17px !important;
    }

    .vf-card-hover-title {
        font-size: 15px !important;
    }

    .vf-card-hover-synopsis {
        font-size: 11.5px !important;
        -webkit-line-clamp: 2 !important;
    }
}


/* =========================================================
   BOTONES + TEXTO ESTILO NETFLIX 8.5
   ========================================================= */

.vf-card-hover-panel {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 12px 12px 14px !important;
    background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,.18) 22%, rgba(20,20,20,.90) 54%, rgba(20,20,20,.98) 78%, rgba(20,20,20,1) 100%) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

.vf-card-hover-actions {
    gap: 10px !important;
    margin-bottom: 10px !important;
}

.vf-card-hover-left,
.vf-card-hover-right {
    gap: 8px !important;
}

.vf-card-quick {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 999px !important;
    border: 2px solid rgba(255,255,255,.68) !important;
    background: rgba(42,42,42,.82) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-shadow: 0 6px 16px rgba(0,0,0,.28) !important;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease !important;
}

.vf-card-quick:hover {
    transform: scale(1.06) !important;
    border-color: #fff !important;
    background: rgba(60,60,60,.96) !important;
    color: #fff !important;
}

.vf-card-quick-play {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    background: #fff !important;
    border-color: #fff !important;
    color: #111 !important;
    font-size: 20px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.28) !important;
}

.vf-card-quick-play:hover {
    background: rgba(255,255,255,.88) !important;
    color: #111 !important;
}

.vf-card-quick-list {
    font-size: 25px !important;
    font-weight: 300 !important;
    padding-bottom: 1px !important;
}

.vf-card-quick-dismiss {
    font-size: 26px !important;
    font-weight: 300 !important;
    padding-bottom: 2px !important;
}

.vf-card-quick-info {
    font-size: 24px !important;
    font-weight: 300 !important;
    padding-top: 1px !important;
}

.vf-card-quick-like span {
    width: 17px !important;
    height: 17px !important;
    -webkit-mask-size: 17px 17px !important;
    mask-size: 17px 17px !important;
}

.vf-card-quick-list.is-active,
.vf-card-quick-like.is-active {
    background: #fff !important;
    border-color: #fff !important;
    color: #111 !important;
}

.vf-card-quick-like.is-active span {
    background-color: #111 !important;
}

.vf-card-hover-title {
    margin: 0 0 6px !important;
    color: #fff !important;
    font-size: 15px !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
    letter-spacing: -.01em !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.4) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.vf-card-hover-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 7px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.vf-card-hover-match {
    color: #46d369 !important;
}

.vf-card-hover-year,
.vf-card-hover-type {
    color: rgba(255,255,255,.88) !important;
}

.vf-card-hover-type {
    border: 1px solid rgba(255,255,255,.30) !important;
    padding: 2px 5px !important;
    border-radius: 3px !important;
    font-size: 10px !important;
    letter-spacing: .01em !important;
}

.vf-card-hover-synopsis {
    margin: 0 !important;
    color: rgba(255,255,255,.84) !important;
    font-size: 11.5px !important;
    line-height: 1.36 !important;
    font-weight: 500 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-shadow: 0 1px 8px rgba(0,0,0,.35) !important;
}

.vf-top10-poster-wrap .vf-card-hover-panel {
    padding: 11px 11px 13px !important;
}

.vf-top10-poster-wrap .vf-card-hover-title {
    font-size: 14px !important;
}

.vf-top10-poster-wrap .vf-card-hover-meta {
    font-size: 10.5px !important;
    gap: 7px !important;
}

.vf-top10-poster-wrap .vf-card-hover-synopsis {
    font-size: 10.8px !important;
}

@media (max-width: 760px) {
    .vf-card-hover-panel {
        padding: 10px 10px 12px !important;
    }

    .vf-card-quick {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }

    .vf-card-quick-play {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 18px !important;
    }

    .vf-card-hover-title {
        font-size: 14px !important;
    }

    .vf-card-hover-meta {
        font-size: 10.5px !important;
        gap: 7px !important;
    }

    .vf-card-hover-synopsis {
        font-size: 10.8px !important;
    }
}


/* =========================================================
   HOVER COMO FOTO NETFLIX 8.6
   ========================================================= */

.vf-card-hover-panel-netflix {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 12px 14px 14px !important;
    background: #181818 !important;
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    box-shadow: 0 -18px 40px rgba(0,0,0,.18) inset !important;
}

.vf-card-hover-actions-netflix {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-bottom: 12px !important;
}

.vf-card-hover-left,
.vf-card-hover-right {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* ocultar botón quitar en esta versión */
.vf-card-quick-dismiss { display: none !important; }

.vf-card-quick {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 999px !important;
    border: 2px solid rgba(255,255,255,.66) !important;
    background: rgba(42,42,42,.92) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-shadow: none !important;
    transform: none !important;
}

.vf-card-quick:hover {
    background: rgba(72,72,72,.96) !important;
    border-color: rgba(255,255,255,.92) !important;
    color: #fff !important;
    transform: scale(1.05) !important;
}

.vf-card-quick-play {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    background: #fff !important;
    border-color: #fff !important;
    color: #111 !important;
    font-size: 24px !important;
    padding-left: 2px !important;
}

.vf-card-quick-play:hover {
    background: rgba(255,255,255,.92) !important;
    color: #111 !important;
}

.vf-card-quick-list {
    font-size: 30px !important;
    font-weight: 300 !important;
    padding-bottom: 2px !important;
}

.vf-card-quick-like {
    font-size: 0 !important;
}

.vf-card-quick-like span {
    width: 18px !important;
    height: 18px !important;
    -webkit-mask-size: 18px 18px !important;
    mask-size: 18px 18px !important;
}

.vf-card-quick-info {
    font-size: 28px !important;
    font-weight: 300 !important;
    padding-top: 1px !important;
}

.vf-card-meta-strip {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 0 0 10px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    color: rgba(255,255,255,.90) !important;
    font-weight: 600 !important;
}

.vf-card-age {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 34px !important;
    height: 24px !important;
    padding: 0 7px !important;
    border-radius: 4px !important;
    background: #e6ef3a !important;
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.vf-card-seasons {
    color: rgba(255,255,255,.88) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.vf-card-quality {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 20px !important;
    padding: 0 6px !important;
    border: 1px solid rgba(255,255,255,.34) !important;
    border-radius: 3px !important;
    color: rgba(255,255,255,.82) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .02em !important;
}

.vf-card-genre-strip {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    color: rgba(255,255,255,.92) !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
}

.vf-card-genre-strip span {
    display: inline-flex !important;
    align-items: center !important;
}

.vf-card-genre-strip span + span::before {
    content: '•';
    color: rgba(255,255,255,.70);
    margin: 0 8px;
    font-size: 13px;
}

/* ocultar el título/sinopsis previos de otras versiones si quedaran */
.vf-card-hover-title,
.vf-card-hover-meta,
.vf-card-hover-synopsis {
    display: none !important;
}

.vf-top10-poster-wrap .vf-card-hover-panel-netflix {
    padding: 10px 12px 12px !important;
}

.vf-top10-poster-wrap .vf-card-quick {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
}

.vf-top10-poster-wrap .vf-card-quick-play {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
}

@media (max-width: 760px) {
    .vf-card-hover-panel-netflix {
        padding: 10px 12px 12px !important;
    }

    .vf-card-hover-actions-netflix {
        margin-bottom: 10px !important;
        gap: 10px !important;
    }

    .vf-card-hover-left,
    .vf-card-hover-right {
        gap: 8px !important;
    }

    .vf-card-quick {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }

    .vf-card-quick-play {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        font-size: 22px !important;
    }

    .vf-card-meta-strip,
    .vf-card-genre-strip {
        font-size: 12px !important;
    }
}


/* =========================================================
   FRANJA INFERIOR MÁS COMPACTA 8.6.1
   ========================================================= */

.vf-card-hover-panel-netflix {
    padding: 10px 12px 11px !important;
}

.vf-card-hover-actions-netflix {
    margin-bottom: 8px !important;
    gap: 10px !important;
}

.vf-card-hover-left,
.vf-card-hover-right {
    gap: 8px !important;
}

.vf-card-meta-strip {
    gap: 8px !important;
    margin: 0 0 7px !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
}

.vf-card-age {
    min-width: 30px !important;
    height: 21px !important;
    padding: 0 6px !important;
    font-size: 12px !important;
}

.vf-card-seasons {
    font-size: 12px !important;
}

.vf-card-quality {
    height: 18px !important;
    padding: 0 5px !important;
    font-size: 10px !important;
}

.vf-card-genre-strip {
    font-size: 12px !important;
    line-height: 1.2 !important;
}

.vf-card-genre-strip span + span::before {
    margin: 0 6px !important;
    font-size: 12px !important;
}

.vf-top10-poster-wrap .vf-card-hover-panel-netflix {
    padding: 9px 11px 10px !important;
}

.vf-top10-poster-wrap .vf-card-meta-strip {
    gap: 7px !important;
    margin-bottom: 6px !important;
    font-size: 11px !important;
}

.vf-top10-poster-wrap .vf-card-age {
    min-width: 28px !important;
    height: 20px !important;
    font-size: 11px !important;
}

.vf-top10-poster-wrap .vf-card-seasons {
    font-size: 11px !important;
}

.vf-top10-poster-wrap .vf-card-quality {
    height: 17px !important;
    font-size: 9.5px !important;
}

.vf-top10-poster-wrap .vf-card-genre-strip {
    font-size: 11px !important;
}

@media (max-width: 760px) {
    .vf-card-hover-panel-netflix {
        padding: 9px 10px 10px !important;
    }

    .vf-card-hover-actions-netflix {
        margin-bottom: 7px !important;
    }

    .vf-card-meta-strip {
        gap: 7px !important;
        margin-bottom: 6px !important;
        font-size: 11px !important;
    }

    .vf-card-age {
        min-width: 28px !important;
        height: 20px !important;
        font-size: 11px !important;
    }

    .vf-card-seasons,
    .vf-card-genre-strip {
        font-size: 11px !important;
    }

    .vf-card-quality {
        height: 17px !important;
        font-size: 9.5px !important;
    }
}


/* =========================================================
   IMAGEN MÁS GRANDE + FRANJA MÁS BAJA 8.6.2
   ========================================================= */

.vf-card-hover-panel-netflix {
    padding: 8px 10px 9px !important;
}

.vf-card-hover-actions-netflix {
    margin-bottom: 6px !important;
    gap: 8px !important;
}

.vf-card-hover-left,
.vf-card-hover-right {
    gap: 7px !important;
}

.vf-card-quick {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
}

.vf-card-quick-play {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    font-size: 22px !important;
}

.vf-card-quick-list {
    font-size: 28px !important;
}

.vf-card-quick-like span {
    width: 16px !important;
    height: 16px !important;
    -webkit-mask-size: 16px 16px !important;
    mask-size: 16px 16px !important;
}

.vf-card-quick-info {
    font-size: 25px !important;
}

.vf-card-meta-strip {
    gap: 7px !important;
    margin: 0 0 5px !important;
    font-size: 11px !important;
    line-height: 1.05 !important;
}

.vf-card-age {
    min-width: 28px !important;
    height: 19px !important;
    padding: 0 5px !important;
    font-size: 10.5px !important;
    border-radius: 3px !important;
}

.vf-card-seasons {
    font-size: 11px !important;
}

.vf-card-quality {
    height: 16px !important;
    padding: 0 4px !important;
    font-size: 9px !important;
    border-radius: 2px !important;
}

.vf-card-genre-strip {
    font-size: 11px !important;
    line-height: 1.08 !important;
}

.vf-card-genre-strip span + span::before {
    margin: 0 5px !important;
    font-size: 11px !important;
}

.vf-top10-poster-wrap .vf-card-hover-panel-netflix {
    padding: 7px 9px 8px !important;
}

.vf-top10-poster-wrap .vf-card-hover-actions-netflix {
    margin-bottom: 5px !important;
}

.vf-top10-poster-wrap .vf-card-quick {
    width: 37px !important;
    height: 37px !important;
    min-width: 37px !important;
}

.vf-top10-poster-wrap .vf-card-quick-play {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    font-size: 20px !important;
}

.vf-top10-poster-wrap .vf-card-meta-strip {
    gap: 6px !important;
    margin-bottom: 4px !important;
    font-size: 10px !important;
}

.vf-top10-poster-wrap .vf-card-age {
    min-width: 26px !important;
    height: 18px !important;
    font-size: 9.8px !important;
}

.vf-top10-poster-wrap .vf-card-seasons,
.vf-top10-poster-wrap .vf-card-genre-strip {
    font-size: 10px !important;
}

.vf-top10-poster-wrap .vf-card-quality {
    height: 15px !important;
    font-size: 8.5px !important;
}

@media (max-width: 760px) {
    .vf-card-hover-panel-netflix {
        padding: 7px 9px 8px !important;
    }

    .vf-card-hover-actions-netflix {
        margin-bottom: 5px !important;
        gap: 7px !important;
    }

    .vf-card-hover-left,
    .vf-card-hover-right {
        gap: 6px !important;
    }

    .vf-card-quick {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
    }

    .vf-card-quick-play {
        width: 41px !important;
        height: 41px !important;
        min-width: 41px !important;
        font-size: 20px !important;
    }

    .vf-card-meta-strip {
        gap: 6px !important;
        margin-bottom: 4px !important;
        font-size: 10px !important;
    }

    .vf-card-age {
        min-width: 25px !important;
        height: 18px !important;
        font-size: 9.8px !important;
    }

    .vf-card-seasons,
    .vf-card-genre-strip {
        font-size: 10px !important;
    }

    .vf-card-quality {
        height: 15px !important;
        font-size: 8.5px !important;
    }
}


/* =========================================================
   FRANJA TRANSPARENTE + BOTONES MÁS ABAJO 8.6.3
   ========================================================= */

.vf-card-hover-panel-netflix {
    background: linear-gradient(180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.02) 34%,
        rgba(0,0,0,0.14) 62%,
        rgba(0,0,0,0.28) 82%,
        rgba(0,0,0,0.42) 100%) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 26px 10px 9px !important;
}

.vf-card-hover-actions-netflix {
    margin-top: 8px !important;
    margin-bottom: 7px !important;
    gap: 8px !important;
}

.vf-card-hover-left,
.vf-card-hover-right {
    gap: 7px !important;
}

.vf-card-meta-strip {
    margin: 0 0 4px !important;
}

.vf-top10-poster-wrap .vf-card-hover-panel-netflix {
    background: linear-gradient(180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.03) 34%,
        rgba(0,0,0,0.18) 66%,
        rgba(0,0,0,0.34) 100%) !important;
    padding: 22px 9px 8px !important;
}

.vf-top10-poster-wrap .vf-card-hover-actions-netflix {
    margin-top: 7px !important;
    margin-bottom: 6px !important;
}

@media (max-width: 760px) {
    .vf-card-hover-panel-netflix {
        padding: 22px 9px 8px !important;
    }

    .vf-card-hover-actions-netflix {
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    .vf-top10-poster-wrap .vf-card-hover-panel-netflix {
        padding: 18px 8px 7px !important;
    }
}


/* =========================================================
   DEGRADADO MÁS GRANDE + BOTONES MÁS ABAJO 8.6.4
   ========================================================= */

.vf-card-hover-panel-netflix {
    background: linear-gradient(180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.02) 18%,
        rgba(0,0,0,0.08) 36%,
        rgba(0,0,0,0.18) 58%,
        rgba(0,0,0,0.30) 78%,
        rgba(0,0,0,0.48) 100%) !important;
    padding: 38px 10px 9px !important;
}

.vf-card-hover-actions-netflix {
    margin-top: 12px !important;
    margin-bottom: 7px !important;
}

.vf-top10-poster-wrap .vf-card-hover-panel-netflix {
    background: linear-gradient(180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.03) 20%,
        rgba(0,0,0,0.10) 40%,
        rgba(0,0,0,0.22) 64%,
        rgba(0,0,0,0.38) 100%) !important;
    padding: 32px 9px 8px !important;
}

.vf-top10-poster-wrap .vf-card-hover-actions-netflix {
    margin-top: 10px !important;
    margin-bottom: 6px !important;
}

@media (max-width: 760px) {
    .vf-card-hover-panel-netflix {
        padding: 30px 9px 8px !important;
    }

    .vf-card-hover-actions-netflix {
        margin-top: 10px !important;
    }

    .vf-top10-poster-wrap .vf-card-hover-panel-netflix {
        padding: 24px 8px 7px !important;
    }

    .vf-top10-poster-wrap .vf-card-hover-actions-netflix {
        margin-top: 8px !important;
    }
}


/* =========================================================
   ACABADO PROFESIONAL PREMIUM 9.0
   ========================================================= */

/* Base visual más limpia */
:root {
    --vf-pro-bg: #090909;
    --vf-pro-panel: rgba(20,20,20,.94);
    --vf-pro-panel-soft: rgba(255,255,255,.055);
    --vf-pro-line: rgba(255,255,255,.105);
    --vf-pro-text: #f5f5f5;
    --vf-pro-muted: rgba(255,255,255,.68);
    --vf-pro-shadow: 0 28px 90px rgba(0,0,0,.55);
}

html {
    scroll-behavior: smooth !important;
}

body {
    background:
        radial-gradient(circle at 18% 0%, rgba(229,9,20,.12), transparent 26%),
        radial-gradient(circle at 90% 8%, rgba(255,255,255,.055), transparent 22%),
        linear-gradient(180deg, #050505 0%, #0b0b0b 42%, #050505 100%) !important;
    color: var(--vf-pro-text) !important;
    text-rendering: geometricPrecision !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Header más profesional */
.vf-header {
    background: linear-gradient(180deg, rgba(0,0,0,.86), rgba(0,0,0,.54), rgba(0,0,0,0)) !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.vf-header-inner {
    max-width: 1760px !important;
    margin: 0 auto !important;
    padding-left: clamp(18px, 3.4vw, 64px) !important;
    padding-right: clamp(18px, 3.4vw, 64px) !important;
}

.vf-logo {
    letter-spacing: -.055em !important;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.35)) !important;
}

.vf-logo-mark {
    border-radius: 10px !important;
    box-shadow: 0 14px 34px rgba(229,9,20,.34) !important;
}

.vf-nav {
    gap: 4px !important;
}

.vf-nav button,
.vf-nav a {
    font-size: 14px !important;
    font-weight: 700 !important;
    opacity: .72 !important;
    border-radius: 8px !important;
    padding: 9px 11px !important;
    transition: opacity .18s ease, background .18s ease, color .18s ease !important;
}

.vf-nav button:hover,
.vf-nav button.is-active,
.vf-nav a:hover {
    background: rgba(255,255,255,.10) !important;
    opacity: 1 !important;
}

/* Hero más cinematográfico */
.vf-hero {
    min-height: clamp(520px, 68vh, 820px) !important;
    border-bottom: 1px solid rgba(255,255,255,.05) !important;
}

.vf-hero::after {
    background:
        linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 31%, rgba(0,0,0,.22) 63%, rgba(0,0,0,.68) 100%),
        linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.06) 48%, #050505 100%) !important;
}

.vf-hero-content {
    max-width: 760px !important;
    padding-left: clamp(18px, 3.4vw, 64px) !important;
}

.vf-hero-title {
    letter-spacing: -.075em !important;
    line-height: .91 !important;
    text-shadow: 0 18px 70px rgba(0,0,0,.72) !important;
}

.vf-hero-description {
    max-width: 660px !important;
    color: rgba(255,255,255,.84) !important;
    line-height: 1.5 !important;
}

/* Contenido con margen premium */
.vf-container,
.vf-main {
    max-width: 1760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: clamp(18px, 3.4vw, 64px) !important;
    padding-right: clamp(18px, 3.4vw, 64px) !important;
}

.vf-main {
    padding-top: 26px !important;
}

/* Secciones y títulos */
.vf-section {
    margin-bottom: 42px !important;
}

.vf-section-head {
    margin-bottom: 10px !important;
}

.vf-section-title {
    font-size: clamp(22px, 1.7vw, 34px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.055em !important;
    font-weight: 950 !important;
}

.vf-count {
    color: rgba(255,255,255,.46) !important;
    font-weight: 600 !important;
}

/* Filas más limpias */
.vf-row {
    gap: 7px !important;
    padding-top: 10px !important;
    padding-bottom: 32px !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255,255,255,.18) transparent !important;
}

.vf-row::-webkit-scrollbar {
    height: 8px !important;
}

.vf-row::-webkit-scrollbar-track {
    background: transparent !important;
}

.vf-row::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.15) !important;
    border-radius: 999px !important;
}

.vf-row::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,.28) !important;
}

/* Tarjetas más profesionales */
.vf-card {
    border-radius: 6px !important;
    background: #141414 !important;
    border: 1px solid rgba(255,255,255,.035) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.18) !important;
    transform-origin: center center !important;
}

.vf-card:hover,
.vf-card:focus-within {
    box-shadow: 0 30px 80px rgba(0,0,0,.68) !important;
    border-color: rgba(255,255,255,.18) !important;
}

/* Hover inferior más pulido */
.vf-card-hover-panel-netflix {
    border-bottom-left-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
    background: linear-gradient(180deg,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,.04) 22%,
        rgba(0,0,0,.18) 52%,
        rgba(0,0,0,.38) 78%,
        rgba(0,0,0,.58) 100%) !important;
}

.vf-card-quick {
    border-color: rgba(255,255,255,.62) !important;
    background: rgba(22,22,22,.68) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.vf-card-quick:hover {
    background: rgba(255,255,255,.16) !important;
}

.vf-card-quick-play {
    background: #fff !important;
    color: #111 !important;
    border-color: #fff !important;
}

.vf-card-age {
    box-shadow: 0 6px 18px rgba(0,0,0,.18) !important;
}

.vf-card-genre-strip {
    color: rgba(255,255,255,.86) !important;
}

/* Top 10 más sólido */
.vf-netflix-top10-row {
    margin-top: 20px !important;
}

.vf-netflix-top10-row .vf-section-title {
    font-size: clamp(25px, 2vw, 38px) !important;
}

.vf-top10-number {
    color: #0b0b0b !important;
    -webkit-text-stroke: 4px rgba(255,255,255,.86) !important;
    text-shadow: 0 12px 32px rgba(0,0,0,.42) !important;
}

.vf-top10-poster-wrap .vf-card {
    box-shadow: 0 20px 54px rgba(0,0,0,.38) !important;
}

/* Modal/ficha con acabado premium */
.vf-modal-card {
    border-radius: 18px !important;
    border: 1px solid rgba(255,255,255,.13) !important;
    background: rgba(18,18,18,.98) !important;
    box-shadow: var(--vf-pro-shadow) !important;
}

.vf-close {
    background: rgba(0,0,0,.66) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* Buscador y controles */
.vf-search,
.vf-select {
    border-radius: 12px !important;
    background: rgba(10,10,10,.84) !important;
    border-color: rgba(255,255,255,.12) !important;
}

.vf-search:focus,
.vf-select:focus {
    box-shadow: 0 0 0 3px rgba(229,9,20,.20) !important;
}

/* Accesibilidad visual */
button:focus-visible,
a:focus-visible,
.vf-card:focus-visible {
    outline: 2px solid rgba(255,255,255,.84) !important;
    outline-offset: 3px !important;
}

/* Responsive más cuidado */
@media (max-width: 900px) {
    .vf-header-inner,
    .vf-container,
    .vf-main,
    .vf-hero-content {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .vf-hero {
        min-height: 560px !important;
    }

    .vf-nav {
        max-width: 100% !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        scrollbar-width: none !important;
    }

    .vf-nav::-webkit-scrollbar {
        display: none !important;
    }

    .vf-section {
        margin-bottom: 32px !important;
    }
}

@media (max-width: 560px) {
    .vf-hero-title {
        font-size: clamp(44px, 14vw, 70px) !important;
    }

    .vf-section-title {
        font-size: 23px !important;
    }

    .vf-row {
        grid-auto-columns: minmax(210px, 238px) !important;
    }
}


/* =========================================================
   BOTONES SIN FONDO NEGRO 9.0.1
   ========================================================= */

.vf-similar-arrow,
.vf-hero-arrow {
    background: transparent !important;
    box-shadow: none !important;
}

.vf-similar-arrow {
    border: 0 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,.55) !important;
}

.vf-similar-wrap:hover .vf-similar-arrow {
    opacity: .92 !important;
}

.vf-similar-arrow:hover,
.vf-hero-arrow:hover {
    background: rgba(255,255,255,.08) !important;
}


/* =========================================================
   BOTONES TOTALMENTE SIN FONDO 9.0.2
   ========================================================= */

.vf-similar-arrow,
.vf-similar-arrow:hover,
.vf-hero-arrow,
.vf-hero-arrow:hover,
.vf-similar-wrap:hover .vf-similar-arrow {
    background: transparent !important;
    box-shadow: none !important;
}

.vf-similar-arrow,
.vf-hero-arrow {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


/* =========================================================
   FONDO TRANSPARENTE REAL 9.0.3
   ========================================================= */

.vf-similar-arrow,
.vf-similar-arrow:hover,
.vf-similar-arrow:focus,
.vf-similar-arrow:active,
.vf-hero-arrow,
.vf-hero-arrow:hover,
.vf-hero-arrow:focus,
.vf-hero-arrow:active {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.vf-similar-arrow,
.vf-hero-arrow {
    border: 0 !important;
    outline: none !important;
}

.vf-similar-wrap:hover .vf-similar-arrow {
    background: transparent !important;
    background-color: transparent !important;
}


/* =========================================================
   HEADER PERFIL MÁS PEQUEÑO + LUPA A LA DERECHA 9.0.4
   ========================================================= */

.vf-header-inner {
    flex-wrap: nowrap !important;
    gap: 18px !important;
}

.vf-logo {
    flex: 0 0 auto !important;
}

.vf-nav {
    flex: 1 1 auto !important;
    justify-content: center !important;
    min-width: 0 !important;
}

.vf-header-right-actions {
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    margin-left: auto !important;
}

.vf-profile-button {
    min-height: 46px !important;
    padding: 5px 14px 5px 5px !important;
    gap: 10px !important;
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    min-width: 0 !important;
}

.vf-profile-button strong,
#vfProfileButtonText {
    font-size: 14px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.vf-profile-button span,
#vfProfileButtonAvatar {
    width: 30px !important;
    height: 30px !important;
    border-radius: 8px !important;
    font-size: 17px !important;
    flex: 0 0 30px !important;
}

.vf-header-search-button {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 24px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.05) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    justify-self: auto !important;
}

.vf-header-search-button span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: translateY(-1px) !important;
}

@media (max-width: 1180px) {
    .vf-header-inner {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .vf-nav {
        order: 3 !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .vf-header-right-actions {
        order: 2 !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 700px) {
    .vf-header-inner {
        gap: 12px !important;
    }

    .vf-header-right-actions {
        gap: 8px !important;
    }

    .vf-profile-button {
        min-height: 42px !important;
        padding: 4px 12px 4px 4px !important;
        gap: 8px !important;
    }

    .vf-profile-button span,
    #vfProfileButtonAvatar {
        width: 28px !important;
        height: 28px !important;
        flex-basis: 28px !important;
        font-size: 15px !important;
    }

    .vf-profile-button strong,
    #vfProfileButtonText {
        font-size: 13px !important;
    }

    .vf-header-search-button {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        font-size: 22px !important;
    }
}


/* =========================================================
   HERO A PANTALLA COMPLETA 9.0.5
   ========================================================= */

.vf-hero {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.vf-hero > .vf-shell {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.vf-hero-content {
    max-width: min(780px, calc(100% - 84px)) !important;
    margin-left: clamp(22px, 4vw, 62px) !important;
    margin-right: 0 !important;
}

.vf-hero-arrow#vfHeroPrev {
    left: 18px !important;
}

.vf-hero-arrow#vfHeroNext {
    right: 18px !important;
}

@media (max-width: 760px) {
    .vf-hero-content {
        max-width: calc(100% - 34px) !important;
        margin-left: 17px !important;
    }

    .vf-hero-arrow#vfHeroPrev {
        left: 10px !important;
    }

    .vf-hero-arrow#vfHeroNext {
        right: 10px !important;
    }
}


/* =========================================================
   HERO MÁS NETFLIX: MÁS ALTO Y MÁS A LA IZQUIERDA 9.0.6
   ========================================================= */

.vf-hero {
    min-height: 82vh !important;
}

.vf-hero::before {
    background:
        linear-gradient(90deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.76) 34%, rgba(0,0,0,.24) 100%),
        linear-gradient(0deg, #050505 0%, rgba(5,5,5,.74) 11%, rgba(5,5,5,0) 43%) !important;
}

.vf-hero-bg {
    background-position: center center !important;
    transform: scale(1.03) !important;
}

.vf-hero-content {
    max-width: min(760px, calc(100% - 66px)) !important;
    margin-left: clamp(14px, 2.25vw, 34px) !important;
    padding-top: 112px !important;
    padding-bottom: 104px !important;
}

.vf-title {
    font-size: clamp(48px, 8.7vw, 102px) !important;
    margin-bottom: 18px !important;
}

.vf-description {
    max-width: 660px !important;
}

.vf-hero-arrow#vfHeroPrev {
    left: 10px !important;
}

.vf-hero-arrow#vfHeroNext {
    right: 10px !important;
}

@media (max-width: 1100px) {
    .vf-hero {
        min-height: 78vh !important;
    }

    .vf-hero-content {
        max-width: calc(100% - 52px) !important;
        margin-left: 18px !important;
        padding-top: 102px !important;
        padding-bottom: 96px !important;
    }
}

@media (max-width: 760px) {
    .vf-hero {
        min-height: 72vh !important;
    }

    .vf-hero-content {
        max-width: calc(100% - 28px) !important;
        margin-left: 14px !important;
        padding-top: 86px !important;
        padding-bottom: 82px !important;
    }

    .vf-title {
        font-size: clamp(40px, 12vw, 72px) !important;
    }

    .vf-hero-arrow#vfHeroPrev {
        left: 8px !important;
    }

    .vf-hero-arrow#vfHeroNext {
        right: 8px !important;
    }
}


/* =========================================================
   HERO MENOS SOMBRA + BOTONES MÁS NETFLIX 9.0.7
   ========================================================= */

.vf-hero::before {
    background:
        linear-gradient(90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.58) 28%,
            rgba(0,0,0,.18) 58%,
            rgba(0,0,0,.04) 100%),
        linear-gradient(0deg,
            rgba(5,5,5,.94) 0%,
            rgba(5,5,5,.58) 10%,
            rgba(5,5,5,0) 38%) !important;
}

.vf-hero-content {
    max-width: min(780px, calc(100% - 48px)) !important;
    margin-left: clamp(10px, 1.8vw, 26px) !important;
}

.vf-actions {
    gap: 12px !important;
    align-items: center !important;
}

.vf-actions .vf-button {
    min-height: 52px !important;
    border-radius: 4px !important;
    padding: 0 24px !important;
    gap: 10px !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.vf-actions .vf-button:hover {
    transform: none !important;
    filter: brightness(1.06) !important;
}

.vf-actions .vf-button-primary {
    background: rgb(255,255,255) !important;
    color: rgb(20,20,20) !important;
}

.vf-actions .vf-button-primary:hover {
    background: rgba(255,255,255,.84) !important;
}

.vf-actions .vf-button-secondary {
    background: rgba(109,109,110,.72) !important;
    color: #fff !important;
}

.vf-actions .vf-button-secondary:hover {
    background: rgba(109,109,110,.52) !important;
}

#vfHeroMore {
    padding-left: 22px !important;
    padding-right: 22px !important;
}

#vfHeroTrailer,
#vfHeroMyList {
    background: rgba(42,42,42,.78) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
}

#vfHeroTrailer:hover,
#vfHeroMyList:hover {
    background: rgba(58,58,58,.88) !important;
}

@media (max-width: 900px) {
    .vf-hero::before {
        background:
            linear-gradient(90deg,
                rgba(0,0,0,.86) 0%,
                rgba(0,0,0,.62) 34%,
                rgba(0,0,0,.24) 64%,
                rgba(0,0,0,.08) 100%),
            linear-gradient(0deg,
                rgba(5,5,5,.95) 0%,
                rgba(5,5,5,.62) 11%,
                rgba(5,5,5,0) 40%) !important;
    }

    .vf-hero-content {
        max-width: calc(100% - 34px) !important;
        margin-left: 12px !important;
    }

    .vf-actions .vf-button {
        min-height: 48px !important;
        padding: 0 20px !important;
        font-size: .96rem !important;
    }
}


/* =========================================================
   WEB MÁS A PANTALLA COMPLETA + BOTONES HERO COMPACTOS 9.0.8
   ========================================================= */

.vf-shell {
    width: calc(100% - 24px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.vf-main {
    padding-top: 16px !important;
    padding-bottom: 64px !important;
}

.vf-section {
    margin-bottom: 34px !important;
}

.vf-section-head {
    margin-bottom: 10px !important;
}

.vf-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Mantener hero full width */
.vf-hero {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.vf-hero > .vf-shell {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Botones del hero más compactos */
.vf-actions {
    gap: 10px !important;
}

.vf-actions .vf-button {
    min-height: 46px !important;
    height: 46px !important;
    padding: 0 18px !important;
    gap: 8px !important;
    font-size: 0.95rem !important;
    border-radius: 4px !important;
}

.vf-actions .vf-button-primary {
    padding-left: 18px !important;
    padding-right: 20px !important;
}

.vf-actions .vf-button-secondary,
#vfHeroTrailer,
#vfHeroMyList {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

@media (max-width: 1100px) {
    .vf-shell {
        width: calc(100% - 18px) !important;
    }
}

@media (max-width: 760px) {
    .vf-shell {
        width: calc(100% - 12px) !important;
    }

    .vf-main {
        padding-top: 12px !important;
        padding-bottom: 54px !important;
    }

    .vf-actions {
        gap: 8px !important;
    }

    .vf-actions .vf-button {
        min-height: 42px !important;
        height: 42px !important;
        padding: 0 14px !important;
        gap: 7px !important;
        font-size: 0.9rem !important;
    }

    .vf-actions .vf-button-primary {
        padding-left: 14px !important;
        padding-right: 16px !important;
    }

    .vf-actions .vf-button-secondary,
    #vfHeroTrailer,
    #vfHeroMyList {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }
}


/* =========================================================
   MÁS FULL WIDTH + FILAS MÁS GRANDES 9.0.9
   ========================================================= */

.vf-shell {
    width: calc(100% - 8px) !important;
    max-width: none !important;
}

.vf-main {
    padding-top: 14px !important;
    padding-bottom: 62px !important;
}

.vf-section {
    margin-bottom: 32px !important;
}

.vf-section-title {
    font-size: clamp(21px, 2vw, 30px) !important;
}

.vf-row {
    grid-auto-columns: minmax(320px, 380px) !important;
    gap: 10px !important;
    padding-top: 8px !important;
    padding-bottom: 24px !important;
}

.vf-card:hover,
.vf-card:focus-within {
    transform: scale(1.1) translateY(-8px) !important;
}

.vf-netflix-top10-row .vf-row {
    grid-auto-columns: minmax(360px, 430px) !important;
    gap: 12px !important;
}

.vf-top10-card {
    min-height: 228px !important;
}

.vf-top10-poster-wrap .vf-card {
    min-height: 218px !important;
}

.vf-similar-track {
    grid-auto-columns: minmax(320px, 380px) !important;
}

@media (max-width: 1280px) {
    .vf-shell {
        width: calc(100% - 6px) !important;
    }

    .vf-row {
        grid-auto-columns: minmax(290px, 340px) !important;
    }

    .vf-netflix-top10-row .vf-row {
        grid-auto-columns: minmax(330px, 390px) !important;
    }
}

@media (max-width: 760px) {
    .vf-shell {
        width: calc(100% - 4px) !important;
    }

    .vf-main {
        padding-top: 10px !important;
        padding-bottom: 48px !important;
    }

    .vf-row {
        grid-auto-columns: minmax(230px, 270px) !important;
        gap: 8px !important;
        padding-bottom: 20px !important;
    }

    .vf-netflix-top10-row .vf-row {
        grid-auto-columns: minmax(250px, 295px) !important;
        gap: 8px !important;
    }

    .vf-top10-card {
        min-height: 180px !important;
    }

    .vf-top10-poster-wrap .vf-card {
        min-height: 170px !important;
    }
}


/* =========================================================
   TARJETAS TODAVÍA MÁS GRANDES 9.1.0
   ========================================================= */

.vf-row {
    grid-auto-columns: minmax(360px, 430px) !important;
    gap: 12px !important;
    padding-top: 10px !important;
    padding-bottom: 28px !important;
}

.vf-card:hover,
.vf-card:focus-within {
    transform: scale(1.12) translateY(-10px) !important;
}

.vf-netflix-top10-row .vf-row {
    grid-auto-columns: minmax(400px, 480px) !important;
    gap: 14px !important;
}

.vf-top10-card {
    min-height: 255px !important;
}

.vf-top10-poster-wrap .vf-card {
    min-height: 245px !important;
}

.vf-top10-number {
    font-size: clamp(132px, 11vw, 182px) !important;
}

.vf-similar-track {
    grid-auto-columns: minmax(360px, 430px) !important;
    gap: 12px !important;
}

.vf-section-title {
    font-size: clamp(22px, 2.2vw, 32px) !important;
}

@media (max-width: 1440px) {
    .vf-row {
        grid-auto-columns: minmax(330px, 390px) !important;
    }

    .vf-netflix-top10-row .vf-row {
        grid-auto-columns: minmax(370px, 440px) !important;
    }

    .vf-similar-track {
        grid-auto-columns: minmax(330px, 390px) !important;
    }
}

@media (max-width: 1100px) {
    .vf-row {
        grid-auto-columns: minmax(300px, 350px) !important;
        gap: 10px !important;
    }

    .vf-netflix-top10-row .vf-row {
        grid-auto-columns: minmax(330px, 390px) !important;
        gap: 10px !important;
    }

    .vf-top10-card {
        min-height: 220px !important;
    }

    .vf-top10-poster-wrap .vf-card {
        min-height: 210px !important;
    }

    .vf-similar-track {
        grid-auto-columns: minmax(300px, 350px) !important;
    }
}

@media (max-width: 760px) {
    .vf-row {
        grid-auto-columns: minmax(250px, 295px) !important;
        gap: 8px !important;
        padding-bottom: 22px !important;
    }

    .vf-card:hover,
    .vf-card:focus-within {
        transform: scale(1.08) translateY(-6px) !important;
    }

    .vf-netflix-top10-row .vf-row {
        grid-auto-columns: minmax(270px, 320px) !important;
        gap: 8px !important;
    }

    .vf-top10-card {
        min-height: 190px !important;
    }

    .vf-top10-poster-wrap .vf-card {
        min-height: 180px !important;
    }

    .vf-top10-number {
        font-size: 104px !important;
    }

    .vf-similar-track {
        grid-auto-columns: minmax(250px, 295px) !important;
        gap: 8px !important;
    }
}


/* =========================================================
   HERO MÁS PEQUEÑO COMO NETFLIX 9.1.1
   ========================================================= */

.vf-hero {
    min-height: 68vh !important;
}

.vf-hero::before {
    background:
        linear-gradient(90deg,
            rgba(0,0,0,.84) 0%,
            rgba(0,0,0,.60) 30%,
            rgba(0,0,0,.18) 60%,
            rgba(0,0,0,.04) 100%),
        linear-gradient(0deg,
            rgba(5,5,5,.94) 0%,
            rgba(5,5,5,.55) 11%,
            rgba(5,5,5,0) 36%) !important;
}

.vf-hero-content {
    max-width: min(620px, calc(100% - 44px)) !important;
    margin-left: clamp(10px, 1.6vw, 22px) !important;
    padding-top: 82px !important;
    padding-bottom: 64px !important;
}

.vf-title {
    font-size: clamp(38px, 6vw, 82px) !important;
    line-height: 0.94 !important;
    margin-bottom: 14px !important;
}

.vf-description {
    max-width: 560px !important;
    font-size: clamp(16px, 1.35vw, 18px) !important;
    line-height: 1.48 !important;
    margin-bottom: 20px !important;
}

.vf-actions {
    gap: 9px !important;
}

.vf-actions .vf-button {
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 15px !important;
    gap: 7px !important;
    font-size: 0.9rem !important;
    border-radius: 4px !important;
}

.vf-actions .vf-button-primary {
    padding-left: 16px !important;
    padding-right: 18px !important;
}

.vf-actions .vf-button-secondary,
#vfHeroTrailer,
#vfHeroMyList {
    padding-left: 14px !important;
    padding-right: 14px !important;
}

.vf-badges,
.vf-meta {
    gap: 10px !important;
}

.vf-badge {
    font-size: 0.84rem !important;
    padding: 7px 12px !important;
}

.vf-meta {
    font-size: 0.9rem !important;
    margin-bottom: 16px !important;
}

.vf-hero-arrow#vfHeroPrev {
    left: 8px !important;
}

.vf-hero-arrow#vfHeroNext {
    right: 8px !important;
}

@media (max-width: 1100px) {
    .vf-hero {
        min-height: 62vh !important;
    }

    .vf-hero-content {
        max-width: min(560px, calc(100% - 32px)) !important;
        margin-left: 12px !important;
        padding-top: 76px !important;
        padding-bottom: 56px !important;
    }

    .vf-title {
        font-size: clamp(34px, 7vw, 68px) !important;
    }
}

@media (max-width: 760px) {
    .vf-hero {
        min-height: 56vh !important;
    }

    .vf-hero-content {
        max-width: calc(100% - 24px) !important;
        margin-left: 12px !important;
        padding-top: 70px !important;
        padding-bottom: 46px !important;
    }

    .vf-title {
        font-size: clamp(32px, 10vw, 54px) !important;
        margin-bottom: 12px !important;
    }

    .vf-description {
        font-size: 15px !important;
        line-height: 1.42 !important;
        margin-bottom: 16px !important;
    }

    .vf-actions {
        gap: 8px !important;
    }

    .vf-actions .vf-button {
        min-height: 38px !important;
        height: 38px !important;
        padding: 0 12px !important;
        font-size: 0.84rem !important;
    }

    .vf-badge {
        font-size: 0.78rem !important;
        padding: 6px 10px !important;
    }

    .vf-meta {
        font-size: 0.84rem !important;
        margin-bottom: 14px !important;
    }
}


/* =========================================================
   FLECHAS TRANSPARENTES EN CADA SECCIÓN 9.1.2
   ========================================================= */
.vf-row-nav {
    position: relative;
}

.vf-row-nav .vf-row {
    scroll-behavior: smooth;
}

.vf-row-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    width: 46px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    color: #fff;
    cursor: pointer;
    opacity: .92;
    transition: opacity .2s ease, transform .2s ease;
}

.vf-row-arrow:hover {
    opacity: 1;
}

.vf-row-arrow:active {
    transform: translateY(-50%) scale(.97);
}

.vf-row-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.vf-row-arrow--left {
    left: 2px;
}

.vf-row-arrow--right {
    right: 2px;
}

.vf-row-arrow::before {
    content: '';
    width: 18px;
    height: 18px;
    border-top: 3px solid rgba(255,255,255,.96);
    border-right: 3px solid rgba(255,255,255,.96);
    display: block;
}

.vf-row-arrow--left::before {
    transform: rotate(-135deg);
    margin-left: 8px;
}

.vf-row-arrow--right::before {
    transform: rotate(45deg);
    margin-right: 8px;
}

@media (max-width: 760px) {
    .vf-row-arrow {
        width: 38px;
        height: 60px;
    }

    .vf-row-arrow::before {
        width: 14px;
        height: 14px;
        border-top-width: 2.5px;
        border-right-width: 2.5px;
    }
}


/* =========================================================
   FLECHAS MÁS NETFLIX + WEB MÁS A PANTALLA COMPLETA 9.1.3
   ========================================================= */

/* Web todavía más full width */
.vf-shell {
    width: calc(100% - 2px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.vf-main {
    padding-top: 12px !important;
    padding-bottom: 56px !important;
}

.vf-section {
    margin-bottom: 28px !important;
}

.vf-section-head {
    padding-left: 4px !important;
    padding-right: 4px !important;
    margin-bottom: 8px !important;
}

.vf-header > .vf-shell,
.vf-main > .vf-shell {
    width: calc(100% - 2px) !important;
    max-width: none !important;
}

/* Flechas tipo Netflix */
.vf-row-nav {
    position: relative;
    overflow: visible;
}

.vf-row-nav .vf-row {
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.vf-row-arrow {
    top: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    width: 64px !important;
    height: auto !important;
    border-radius: 0 !important;
    opacity: 0 !important;
    color: #fff !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: opacity .18s ease, filter .18s ease !important;
}

.vf-row-nav:hover .vf-row-arrow,
.vf-row-nav:focus-within .vf-row-arrow {
    opacity: .96 !important;
}

.vf-row-arrow.is-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}

.vf-row-arrow:hover {
    filter: brightness(1.08) !important;
}

.vf-row-arrow:active {
    transform: none !important;
}

.vf-row-arrow--left {
    left: 0 !important;
    background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.44) 38%, rgba(0,0,0,0) 100%) !important;
}

.vf-row-arrow--right {
    right: 0 !important;
    background: linear-gradient(270deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.44) 38%, rgba(0,0,0,0) 100%) !important;
}

.vf-row-arrow::before {
    width: 22px !important;
    height: 22px !important;
    border-top: 3.5px solid rgba(255,255,255,.98) !important;
    border-right: 3.5px solid rgba(255,255,255,.98) !important;
    box-shadow: 0 1px 8px rgba(0,0,0,.35) !important;
}

.vf-row-arrow--left::before {
    transform: rotate(-135deg) !important;
    margin-left: 10px !important;
}

.vf-row-arrow--right::before {
    transform: rotate(45deg) !important;
    margin-right: 10px !important;
}

/* Ajuste filas más al borde */
.vf-row {
    gap: 12px !important;
}

@media (max-width: 1100px) {
    .vf-shell,
    .vf-header > .vf-shell,
    .vf-main > .vf-shell {
        width: calc(100% - 2px) !important;
    }

    .vf-row-arrow {
        width: 56px !important;
    }
}

@media (max-width: 760px) {
    .vf-shell,
    .vf-header > .vf-shell,
    .vf-main > .vf-shell {
        width: 100% !important;
    }

    .vf-section-head {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .vf-row-nav .vf-row {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .vf-row-arrow {
        width: 42px !important;
        opacity: .92 !important;
    }

    .vf-row-arrow::before {
        width: 16px !important;
        height: 16px !important;
        border-top-width: 3px !important;
        border-right-width: 3px !important;
    }

    .vf-row-arrow--left::before {
        margin-left: 6px !important;
    }

    .vf-row-arrow--right::before {
        margin-right: 6px !important;
    }
}


/* =========================================================
   AVATARES PERSONALIZADOS DE PERFILES
   ========================================================= */
.vf-profile-button-avatar,
.vf-profile-avatar {
    overflow: hidden !important;
    position: relative !important;
}

.vf-profile-button-avatar img,
.vf-profile-avatar img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: inherit !important;
}

.vf-profile-button-avatar.has-image,
.vf-profile-avatar.has-image {
    background: transparent !important;
    color: transparent !important;
    padding: 0 !important;
}


/* =========================================================
   GESTIONAR PERFILES ESTILO NETFLIX 9.1.5
   ========================================================= */
.vf-profile-manage-wrap {
    display: flex !important;
    justify-content: center !important;
    margin-top: 42px !important;
}

.vf-profile-manage-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 46px !important;
    padding: 0 26px !important;
    border: 1px solid rgba(255,255,255,.35) !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: rgba(255,255,255,.88) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: .16em !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease !important;
}

.vf-profile-manage-button span {
    font-size: 16px !important;
    line-height: 1 !important;
}

.vf-profile-manage-button:hover,
.vf-profile-manage-button:focus-visible {
    background: rgba(255,255,255,.12) !important;
    border-color: rgba(255,255,255,.68) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

@media (max-width: 760px) {
    .vf-profile-manage-wrap {
        margin-top: 30px !important;
    }

    .vf-profile-manage-button {
        min-height: 42px !important;
        padding: 0 20px !important;
        gap: 8px !important;
        font-size: 12px !important;
        letter-spacing: .12em !important;
    }
}


/* =========================================================
   ICONO LÁPIZ / ENGRANAJE EN GESTIONAR PERFILES 9.1.6
   ========================================================= */
.vf-profile-manage-button {
    gap: 12px !important;
}

.vf-profile-manage-icon {
    width: 28px !important;
    height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    background: rgba(255,255,255,.06) !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 1 !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.vf-profile-manage-button:hover .vf-profile-manage-icon,
.vf-profile-manage-button:focus-visible .vf-profile-manage-icon {
    background: rgba(255,255,255,.14) !important;
    border-color: rgba(255,255,255,.55) !important;
}

@media (max-width: 760px) {
    .vf-profile-manage-button {
        gap: 10px !important;
    }

    .vf-profile-manage-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 12px !important;
    }
}


/* =========================================================
   ICONO LÁPIZ EN GESTIONAR PERFILES 9.1.7
   ========================================================= */
.vf-profile-manage-icon {
    font-size: 15px !important;
    font-weight: 800 !important;
}

@media (max-width: 760px) {
    .vf-profile-manage-icon {
        font-size: 13px !important;
    }
}


/* =========================================================
   AVATARES DIVERTIDOS INCLUIDOS 9.1.8
   ========================================================= */
.vf-profile-avatar img,
.vf-profile-button-avatar img {
    image-rendering: auto !important;
}


/* =========================================================
   CAMBIAR AVATAR DESDE LA WEB 9.1.9
   ========================================================= */
.vf-profile-manager-overlay {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vf-profile-manager-overlay.is-open {
    display: flex;
}

.vf-profile-manager-panel {
    position: relative;
    width: min(980px, calc(100vw - 24px));
    max-height: calc(100vh - 32px);
    overflow: auto;
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(24,24,27,.98), rgba(10,10,12,.98));
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.vf-profile-manager-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.vf-profile-manager-panel h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 3vw, 44px);
}

.vf-profile-manager-panel > p {
    margin: 0 0 22px;
    color: rgba(255,255,255,.74);
}

.vf-profile-manager-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.vf-profile-manager-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.vf-profile-manager-tab.is-active {
    border-color: rgba(229,9,20,.75);
    background: rgba(229,9,20,.16);
    box-shadow: inset 0 0 0 1px rgba(229,9,20,.35);
}

.vf-profile-manager-tab-avatar,
.vf-profile-manager-big-avatar,
.vf-profile-avatar-choice-image,
.vf-profile-avatar-choice-fallback {
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.vf-profile-manager-tab-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1f2937, #0f172a);
    font-weight: 800;
    font-size: 20px;
}

.vf-profile-manager-tab-avatar img,
.vf-profile-manager-big-avatar img,
.vf-profile-avatar-choice-image img,
.vf-profile-avatar-choice-fallback img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vf-profile-manager-current {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
}

.vf-profile-manager-big-avatar {
    width: 78px;
    height: 78px;
    border-radius: 20px;
    background: linear-gradient(135deg, #312e81, #0f172a);
    font-size: 34px;
    font-weight: 800;
}

.vf-profile-manager-current-text span {
    display: block;
    color: rgba(255,255,255,.6);
    font-size: 13px;
    margin-bottom: 4px;
}

.vf-profile-manager-current-text strong {
    font-size: 24px;
}

.vf-profile-avatar-library {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
    gap: 14px;
}

.vf-profile-avatar-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 136px;
    padding: 14px 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.035);
    color: #fff;
    cursor: pointer;
}

.vf-profile-avatar-choice.is-active {
    border-color: rgba(229,9,20,.75);
    background: rgba(229,9,20,.14);
    box-shadow: inset 0 0 0 1px rgba(229,9,20,.35);
}

.vf-profile-avatar-choice-image,
.vf-profile-avatar-choice-fallback {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1f2937, #111827);
    font-size: 28px;
    font-weight: 800;
}

.vf-profile-avatar-choice strong {
    font-size: 12px;
    color: rgba(255,255,255,.86);
    text-align: center;
}

.vf-profile-manager-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.vf-profile-manager-actions button {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.vf-profile-manager-secondary {
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: #fff;
}

.vf-profile-manager-primary {
    border: 0;
    background: #fff;
    color: #111;
}

@media (max-width: 760px) {
    .vf-profile-manager-panel {
        width: min(100vw - 12px, 980px);
        padding: 22px 14px 16px;
        border-radius: 16px;
    }

    .vf-profile-manager-tabs {
        grid-template-columns: 1fr;
    }

    .vf-profile-manager-current {
        padding: 12px;
    }

    .vf-profile-manager-big-avatar {
        width: 66px;
        height: 66px;
        border-radius: 18px;
        font-size: 28px;
    }

    .vf-profile-avatar-library {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .vf-profile-avatar-choice {
        min-height: 118px;
        padding: 12px 8px;
    }

    .vf-profile-avatar-choice-image,
    .vf-profile-avatar-choice-fallback {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .vf-profile-manager-actions {
        flex-direction: column;
    }
}


/* =========================================================
   PERFILES GLOBALES + CAMBIO DE NOMBRE 9.2.0
   ========================================================= */
.vf-profile-manager-form {
    margin-bottom: 18px;
}

.vf-profile-manager-field {
    display: block;
}

.vf-profile-manager-field span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 600;
}

.vf-profile-manager-field input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 16px;
    outline: none;
}

.vf-profile-manager-field input:focus {
    border-color: rgba(229,9,20,.82);
    box-shadow: 0 0 0 3px rgba(229,9,20,.18);
}

.vf-profile-manager-feedback {
    min-height: 24px;
    margin-top: 16px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.vf-profile-manager-feedback.is-success {
    color: #7CFFB2;
}

.vf-profile-manager-feedback.is-error {
    color: #FF8E8E;
}

.vf-profile-manager-feedback.is-loading {
    color: #fff;
}


/* =========================================================
   CREAR Y BORRAR PERFILES DESDE LA WEB 9.2.1
   ========================================================= */
.vf-profile-manager-danger {
    border: 1px solid rgba(229,9,20,.55);
    background: rgba(229,9,20,.16);
    color: #fff;
}

.vf-profile-manager-danger:hover {
    background: rgba(229,9,20,.28);
    border-color: rgba(229,9,20,.85);
}

.vf-profile-manager-danger:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.vf-profile-card.is-active .vf-profile-avatar {
    box-shadow: 0 0 0 4px rgba(229,9,20,.85) !important;
}

@media (max-width: 760px) {
    .vf-profile-manager-actions {
        gap: 10px;
    }
}


/* =========================================================
   PIN DE ADMINISTRADOR DESDE LA WEB 9.2.2
   ========================================================= */
.vf-profile-manager-pin-field {
    margin-top: 14px !important;
}

.vf-profile-manager-pin-field input {
    letter-spacing: .16em !important;
    font-weight: 800 !important;
}

.vf-profile-manager-pin-field input::placeholder {
    letter-spacing: normal !important;
    font-weight: 500 !important;
}


/* =========================================================
   PERFILES MÁS PARECIDOS A NETFLIX 9.2.3
   ========================================================= */
.vf-profile-overlay,
.vf-profile-manager-overlay {
    background: #141414 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.vf-profile-panel {
    width: min(1100px, calc(100% - 32px)) !important;
    padding: 24px 0 12px !important;
}

.vf-profile-panel h2,
.vf-profile-manager-panel h2 {
    font-size: clamp(44px, 5vw, 64px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.04em !important;
    font-weight: 500 !important;
    margin-bottom: 16px !important;
}

.vf-profile-panel p,
.vf-profile-manager-panel > p {
    color: #808080 !important;
    font-size: 20px !important;
    line-height: 1.35 !important;
    margin-bottom: 40px !important;
}

.vf-profile-close,
.vf-profile-manager-close {
    top: 6px !important;
    right: 6px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255,255,255,.88) !important;
    font-size: 34px !important;
    box-shadow: none !important;
    border: 0 !important;
}

.vf-profile-grid {
    gap: 28px !important;
}

.vf-profile-card {
    gap: 14px !important;
    color: #808080 !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    transition: color .18s ease !important;
}

.vf-profile-card:hover,
.vf-profile-card:focus-visible {
    color: #fff !important;
}

.vf-profile-card .vf-profile-avatar {
    width: 150px !important;
    height: 150px !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    border: 3px solid transparent !important;
}

.vf-profile-card:hover .vf-profile-avatar,
.vf-profile-card:focus-visible .vf-profile-avatar {
    transform: none !important;
    box-shadow: none !important;
    border-color: #fff !important;
}

.vf-profile-manage-wrap {
    margin-top: 52px !important;
}

.vf-profile-manage-button {
    min-height: 50px !important;
    padding: 0 24px !important;
    border-radius: 0 !important;
    border: 1px solid #808080 !important;
    background: transparent !important;
    color: #808080 !important;
    letter-spacing: .18em !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.vf-profile-manage-button:hover,
.vf-profile-manage-button:focus-visible {
    border-color: #fff !important;
    color: #fff !important;
    background: transparent !important;
    transform: none !important;
}

.vf-profile-manage-icon {
    width: 24px !important;
    height: 24px !important;
    border-radius: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 17px !important;
}

.vf-profile-manager-panel {
    width: min(1120px, calc(100vw - 32px)) !important;
    max-height: calc(100vh - 24px) !important;
    padding: 42px 24px 26px !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.vf-profile-manager-tabs {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 14px !important;
    margin-bottom: 28px !important;
}

.vf-profile-manager-tab {
    min-height: 76px !important;
    padding: 14px 16px !important;
    border-radius: 0 !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    background: rgba(255,255,255,.03) !important;
}

.vf-profile-manager-tab.is-active {
    border-color: #fff !important;
    background: rgba(255,255,255,.07) !important;
    box-shadow: none !important;
}

.vf-profile-manager-tab strong {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.vf-profile-manager-tab-avatar {
    width: 54px !important;
    height: 54px !important;
    border-radius: 6px !important;
    background: linear-gradient(135deg, #1f2937, #111827) !important;
}

.vf-profile-manager-current {
    margin-bottom: 24px !important;
    padding: 18px 20px !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
}

.vf-profile-manager-big-avatar {
    width: 88px !important;
    height: 88px !important;
    border-radius: 6px !important;
    background: linear-gradient(135deg, #312e81, #0f172a) !important;
}

.vf-profile-manager-current-text span {
    text-transform: uppercase !important;
    letter-spacing: .12em !important;
    font-size: 11px !important;
    color: #808080 !important;
}

.vf-profile-manager-current-text strong {
    font-size: 28px !important;
    font-weight: 600 !important;
}

.vf-profile-manager-field span {
    text-transform: uppercase !important;
    letter-spacing: .12em !important;
    font-size: 11px !important;
    color: #808080 !important;
}

.vf-profile-manager-field input {
    min-height: 52px !important;
    border-radius: 0 !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    background: rgba(0,0,0,.38) !important;
    color: #fff !important;
}

.vf-profile-manager-field input:focus {
    border-color: #fff !important;
    box-shadow: none !important;
}

.vf-profile-avatar-library {
    grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)) !important;
    gap: 16px !important;
}

.vf-profile-avatar-choice {
    min-height: 146px !important;
    padding: 16px 10px !important;
    border-radius: 0 !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    background: rgba(255,255,255,.03) !important;
}

.vf-profile-avatar-choice:hover,
.vf-profile-avatar-choice:focus-visible {
    border-color: #fff !important;
}

.vf-profile-avatar-choice.is-active {
    border-color: #fff !important;
    background: rgba(255,255,255,.08) !important;
    box-shadow: none !important;
}

.vf-profile-avatar-choice-image,
.vf-profile-avatar-choice-fallback {
    width: 74px !important;
    height: 74px !important;
    border-radius: 6px !important;
}

.vf-profile-avatar-choice strong {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,.82) !important;
}

.vf-profile-manager-feedback {
    margin-top: 18px !important;
    font-size: 14px !important;
    min-height: 22px !important;
}

.vf-profile-manager-actions {
    justify-content: center !important;
    gap: 14px !important;
    margin-top: 28px !important;
}

.vf-profile-manager-actions button {
    min-width: 170px !important;
    min-height: 50px !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.vf-profile-manager-secondary {
    border: 1px solid #808080 !important;
    color: #808080 !important;
    background: transparent !important;
}

.vf-profile-manager-secondary:hover,
.vf-profile-manager-secondary:focus-visible {
    border-color: #fff !important;
    color: #fff !important;
}

.vf-profile-manager-primary {
    background: #fff !important;
    color: #111 !important;
}

.vf-profile-manager-primary:hover,
.vf-profile-manager-primary:focus-visible {
    background: rgba(255,255,255,.82) !important;
}

@media (max-width: 760px) {
    .vf-profile-panel {
        width: calc(100% - 18px) !important;
        padding-top: 18px !important;
    }

    .vf-profile-panel h2,
    .vf-profile-manager-panel h2 {
        font-size: 34px !important;
    }

    .vf-profile-panel p,
    .vf-profile-manager-panel > p {
        font-size: 16px !important;
        margin-bottom: 24px !important;
    }

    .vf-profile-grid {
        gap: 18px !important;
    }

    .vf-profile-card {
        font-size: 17px !important;
    }

    .vf-profile-card .vf-profile-avatar {
        width: 104px !important;
        height: 104px !important;
    }

    .vf-profile-manage-wrap {
        margin-top: 34px !important;
    }

    .vf-profile-manager-panel {
        width: calc(100vw - 12px) !important;
        padding: 34px 12px 18px !important;
    }

    .vf-profile-manager-current {
        padding: 14px !important;
    }

    .vf-profile-manager-big-avatar {
        width: 72px !important;
        height: 72px !important;
    }

    .vf-profile-avatar-library {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .vf-profile-avatar-choice {
        min-height: 120px !important;
    }

    .vf-profile-avatar-choice-image,
    .vf-profile-avatar-choice-fallback {
        width: 56px !important;
        height: 56px !important;
    }

    .vf-profile-manager-actions button {
        min-width: 100% !important;
    }
}


/* =========================================================
   LÁPIZ ENCIMA DEL AVATAR EN GESTIONAR PERFILES 9.2.4
   ========================================================= */
.vf-profile-manager-tab-avatar,
.vf-profile-manager-big-avatar {
    position: relative !important;
    overflow: visible !important;
}

.vf-profile-manager-tab-avatar::after,
.vf-profile-manager-big-avatar::after {
    content: '✎' !important;
    position: absolute !important;
    right: -8px !important;
    bottom: -8px !important;
    width: 28px !important;
    height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: #111 !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.35) !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

.vf-profile-manager-big-avatar::after {
    width: 34px !important;
    height: 34px !important;
    right: -10px !important;
    bottom: -10px !important;
    font-size: 16px !important;
}

@media (max-width: 760px) {
    .vf-profile-manager-tab-avatar::after {
        width: 24px !important;
        height: 24px !important;
        right: -6px !important;
        bottom: -6px !important;
        font-size: 12px !important;
    }

    .vf-profile-manager-big-avatar::after {
        width: 28px !important;
        height: 28px !important;
        right: -8px !important;
        bottom: -8px !important;
        font-size: 13px !important;
    }
}


/* =========================================================
   LÁPIZ SOBRE AVATAR EN PANTALLA DE PERFILES 9.2.5
   ========================================================= */
.vf-profile-overlay.is-managing .vf-profile-card .vf-profile-avatar {
    position: relative !important;
    overflow: visible !important;
}

.vf-profile-overlay.is-managing .vf-profile-card .vf-profile-avatar::after {
    content: '✎' !important;
    position: absolute !important;
    right: -8px !important;
    bottom: -8px !important;
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(20,20,20,.96) !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.35) !important;
    z-index: 4 !important;
    pointer-events: none !important;
}

.vf-profile-overlay.is-managing .vf-profile-card strong {
    color: #fff !important;
}

.vf-profile-overlay.is-managing .vf-profile-card {
    cursor: pointer !important;
}

.vf-profile-overlay.is-managing .vf-profile-card:hover .vf-profile-avatar,
.vf-profile-overlay.is-managing .vf-profile-card:focus-visible .vf-profile-avatar {
    transform: scale(1.03) !important;
    box-shadow: 0 0 0 4px #fff !important;
}

.vf-profile-overlay.is-managing .vf-profile-manage-button {
    border-color: #fff !important;
    color: #fff !important;
}

@media (max-width: 760px) {
    .vf-profile-overlay.is-managing .vf-profile-card .vf-profile-avatar::after {
        width: 24px !important;
        height: 24px !important;
        right: -6px !important;
        bottom: -6px !important;
        font-size: 12px !important;
    }
}


/* =========================================================
   FIX MODO EDICIÓN DE PERFIL DESDE AVATAR 9.2.6
   ========================================================= */
.vf-profile-overlay.is-managing .vf-profile-card .vf-profile-avatar {
    position: relative !important;
    overflow: visible !important;
}

.vf-profile-overlay.is-managing .vf-profile-card .vf-profile-avatar::after {
    content: '✎' !important;
    position: absolute !important;
    right: -8px !important;
    bottom: -8px !important;
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(20,20,20,.96) !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.35) !important;
    z-index: 4 !important;
    pointer-events: none !important;
}

.vf-profile-overlay.is-managing .vf-profile-card:hover .vf-profile-avatar,
.vf-profile-overlay.is-managing .vf-profile-card:focus-visible .vf-profile-avatar {
    transform: scale(1.03) !important;
    box-shadow: 0 0 0 4px #fff !important;
}

.vf-profile-overlay.is-managing .vf-profile-manage-button,
.vf-profile-manage-button.is-active {
    border-color: #fff !important;
    color: #fff !important;
}

@media (max-width: 760px) {
    .vf-profile-overlay.is-managing .vf-profile-card .vf-profile-avatar::after {
        width: 24px !important;
        height: 24px !important;
        right: -6px !important;
        bottom: -6px !important;
        font-size: 12px !important;
    }
}


/* =========================================================
   UN CLIC EN AVATAR PARA EDITAR 9.2.7
   ========================================================= */
.vf-profile-overlay.is-managing .vf-profile-card {
    cursor: pointer !important;
}
.vf-profile-overlay.is-managing .vf-profile-card:active .vf-profile-avatar {
    transform: scale(.98) !important;
}


/* =========================================================
   FIX REAL UN CLIC PARA EDITAR PERFIL 9.2.8
   ========================================================= */
.vf-profile-overlay.is-managing .vf-profile-card {
    touch-action: manipulation !important;
}


/* =========================================================
   FIX DEFINITIVO UN CLIC AVATAR EDITAR 9.2.9
   ========================================================= */
.vf-profile-overlay.is-managing #vfProfileGrid .vf-profile-card,
.vf-profile-overlay.is-managing #vfProfileGrid .vf-profile-card * {
    cursor: pointer !important;
    touch-action: manipulation !important;
}


/* =========================================================
   EDICIÓN REAL CON UN CLIC SOBRE EL AVATAR 9.3.0
   ========================================================= */
.vf-profile-card {
    position: relative !important;
}

.vf-profile-edit-hit {
    display: none !important;
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 150px !important;
    height: 150px !important;
    border: 0 !important;
    border-radius: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(0,0,0,.38) !important;
    color: #fff !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 30 !important;
}

.vf-profile-edit-hit span {
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(20,20,20,.96) !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.45) !important;
}

.vf-profile-overlay.is-managing .vf-profile-edit-hit {
    display: flex !important;
}

.vf-profile-overlay.is-managing .vf-profile-card .vf-profile-avatar::after {
    content: none !important;
    display: none !important;
}

.vf-profile-overlay.is-managing .vf-profile-card:hover .vf-profile-edit-hit,
.vf-profile-overlay.is-managing .vf-profile-card:focus-within .vf-profile-edit-hit {
    background: rgba(0,0,0,.48) !important;
}

@media (max-width: 760px) {
    .vf-profile-edit-hit {
        width: 104px !important;
        height: 104px !important;
    }

    .vf-profile-edit-hit span {
        width: 34px !important;
        height: 34px !important;
        font-size: 15px !important;
    }
}


/* =========================================================
   FIX UN CLIC SIN DOBLE PULSACIÓN 9.3.1
   ========================================================= */
.vf-profile-manager-overlay {
    z-index: 1000001 !important;
}

.vf-profile-overlay:not(.is-open) {
    pointer-events: none !important;
}


/* Añadir perfil en selector */
.vf-profile-card-add .vf-profile-avatar {
    background: rgba(255,255,255,.08) !important;
    border: 2px dashed rgba(255,255,255,.28) !important;
    color: #fff !important;
    font-size: 72px !important;
    line-height: 1 !important;
}

.vf-profile-card-add .vf-profile-avatar span {
    transform: translateY(-2px) !important;
    display: inline-block !important;
}

.vf-profile-card-add:hover .vf-profile-avatar {
    background: rgba(255,255,255,.14) !important;
    border-color: rgba(255,255,255,.5) !important;
    box-shadow: 0 0 0 4px #fff !important;
}

.vf-profile-card-add .vf-profile-edit-hit {
    display: none !important;
}


/* Login protegido 9.3.3 */
.vf-logout-link {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    border-radius: 999px !important;
    color: rgba(255,255,255,.72) !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}
.vf-logout-link:hover {
    color: #fff !important;
    border-color: rgba(255,255,255,.56) !important;
    background: rgba(255,255,255,.08) !important;
}
@media (max-width: 760px) {
    .vf-logout-link {
        display: none !important;
    }
}


/* Acceso privado separado WordPress 9.3.4 */
.vf-logout-link {
    white-space: nowrap !important;
}


/* =========================================================
   PERFILES NETFLIX REALES 9.3.7
   ========================================================= */
.vf-profile-card {
    position: relative !important;
}

.vf-profile-type-badge {
    margin-top: -8px !important;
    color: rgba(255,255,255,.46) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.vf-profile-card:hover .vf-profile-type-badge,
.vf-profile-card:focus-visible .vf-profile-type-badge {
    color: rgba(255,255,255,.88) !important;
}

.vf-profile-manager-type-field select {
    width: 100% !important;
    min-height: 52px !important;
    border-radius: 0 !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    background: rgba(0,0,0,.38) !important;
    color: #fff !important;
    padding: 0 14px !important;
    font-size: 16px !important;
    outline: none !important;
}

.vf-profile-manager-type-field select:focus {
    border-color: #fff !important;
}

.vf-profile-manager-tab-text {
    display: grid !important;
    gap: 4px !important;
    min-width: 0 !important;
}

.vf-profile-manager-tab-text small {
    color: rgba(255,255,255,.48) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .11em !important;
    text-transform: uppercase !important;
}

.vf-profile-card-add .vf-profile-avatar {
    background: rgba(255,255,255,.08) !important;
    border: 2px dashed rgba(255,255,255,.28) !important;
    color: #fff !important;
    font-size: 72px !important;
    line-height: 1 !important;
}

.vf-profile-card-add .vf-profile-type-badge,
.vf-profile-card-add .vf-profile-edit-hit {
    display: none !important;
}

.vf-profile-card-add:hover .vf-profile-avatar,
.vf-profile-card-add:focus-visible .vf-profile-avatar {
    background: rgba(255,255,255,.14) !important;
    border-color: rgba(255,255,255,.5) !important;
}

.vf-kids-profile .vf-header::after {
    content: 'Perfil infantil' !important;
    position: fixed !important;
    top: 72px !important;
    right: 24px !important;
    z-index: 999 !important;
    padding: 7px 11px !important;
    border-radius: 999px !important;
    background: rgba(37,99,235,.85) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}


/* =========================================================
   PANEL MI CUENTA 9.3.8
   ========================================================= */
.vf-page.is-account .vf-hero,
.vf-page.is-account .vf-main {
    display: none !important;
}

.vf-account-main {
    min-height: calc(100vh - 72px) !important;
    padding: 120px 0 70px !important;
    background:
        radial-gradient(circle at top right, rgba(229,9,20,.24), transparent 32%),
        linear-gradient(180deg, #141414 0%, #050505 100%) !important;
}

.vf-account-hero {
    margin-bottom: 30px !important;
}

.vf-account-kicker {
    display: inline-flex !important;
    color: #e50914 !important;
    font-weight: 900 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    margin-bottom: 12px !important;
}

.vf-account-hero h1 {
    margin: 0 !important;
    font-size: clamp(42px, 6vw, 76px) !important;
    letter-spacing: -.05em !important;
    font-weight: 800 !important;
}

.vf-account-hero p,
.vf-account-muted,
.vf-account-danger p {
    color: rgba(255,255,255,.68) !important;
}

.vf-account-notice {
    margin: 0 0 22px !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
}

.vf-account-notice-success {
    background: rgba(34,197,94,.14) !important;
    border: 1px solid rgba(34,197,94,.35) !important;
    color: #bbf7d0 !important;
}

.vf-account-notice-error {
    background: rgba(229,9,20,.14) !important;
    border: 1px solid rgba(229,9,20,.38) !important;
    color: #fecaca !important;
}

.vf-account-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.vf-account-card {
    background: rgba(20,20,20,.82) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 18px !important;
    padding: 22px !important;
    box-shadow: 0 18px 50px rgba(0,0,0,.30) !important;
}

.vf-account-card-main {
    background: linear-gradient(135deg, rgba(229,9,20,.20), rgba(20,20,20,.88)) !important;
}

.vf-account-card h2 {
    margin: 0 0 16px !important;
    font-size: 24px !important;
    letter-spacing: -.02em !important;
}

.vf-account-data {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    padding: 13px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

.vf-account-data span,
.vf-account-form label span,
.vf-account-profile-item span {
    color: rgba(255,255,255,.58) !important;
    font-size: 13px !important;
}

.vf-account-data strong {
    color: #fff !important;
    font-size: 16px !important;
}

.vf-account-profiles {
    display: grid !important;
    gap: 10px !important;
    margin: 14px 0 18px !important;
}

.vf-account-profile-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px !important;
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.06) !important;
    border-radius: 14px !important;
}

.vf-account-profile-avatar {
    width: 52px !important;
    height: 52px !important;
    border-radius: 8px !important;
    display: inline-grid !important;
    place-items: center !important;
    background: linear-gradient(135deg, #e50914, #7f0006) !important;
    color: #fff !important;
    font-weight: 950 !important;
    font-size: 22px !important;
    overflow: hidden !important;
    flex: 0 0 auto !important;
}

.vf-account-profile-avatar img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

.vf-account-profile-item strong {
    display: block !important;
    color: #fff !important;
    font-size: 16px !important;
}

.vf-account-form {
    display: grid !important;
    gap: 14px !important;
}

.vf-account-form label {
    display: grid !important;
    gap: 7px !important;
}

.vf-account-form input[type="email"],
.vf-account-form input[type="password"] {
    width: 100% !important;
    min-height: 48px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    background: rgba(0,0,0,.35) !important;
    color: #fff !important;
    padding: 0 13px !important;
}

.vf-account-form input:focus {
    outline: none !important;
    border-color: #fff !important;
}

.vf-account-check {
    display: flex !important;
    align-items: center !important;
    grid-template-columns: none !important;
    gap: 10px !important;
    color: rgba(255,255,255,.76) !important;
}

.vf-account-check input {
    width: 18px !important;
    height: 18px !important;
}

.vf-account-button,
.vf-account-button:visited {
    min-height: 44px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #e50914 !important;
    color: #fff !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.vf-account-button:hover {
    background: #f6121d !important;
}

.vf-account-button-outline {
    width: 100% !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,.25) !important;
}

.vf-account-button-light {
    background: #fff !important;
    color: #111 !important;
}

.vf-account-button-danger {
    background: #7f1d1d !important;
}

.vf-account-button-danger:hover {
    background: #991b1b !important;
}

.vf-account-actions-inline {
    margin-top: 18px !important;
}

.vf-account-danger {
    border-color: rgba(239,68,68,.26) !important;
}

@media (max-width: 900px) {
    .vf-account-main {
        padding-top: 96px !important;
    }

    .vf-account-grid {
        grid-template-columns: 1fr !important;
    }

    .vf-account-data {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
}


/* =========================================================
   GALERÍA PREMIUM DE AVATARES 9.4.2
   ========================================================= */
.vf-profile-avatar-gallery {
    display: grid !important;
    gap: 24px !important;
    max-height: min(45vh, 430px) !important;
    overflow: auto !important;
    padding: 4px 6px 10px 0 !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255,255,255,.28) rgba(255,255,255,.06) !important;
}

.vf-profile-avatar-gallery::-webkit-scrollbar {
    width: 10px !important;
}

.vf-profile-avatar-gallery::-webkit-scrollbar-track {
    background: rgba(255,255,255,.06) !important;
    border-radius: 999px !important;
}

.vf-profile-avatar-gallery::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.28) !important;
    border-radius: 999px !important;
}

.vf-profile-avatar-category {
    padding: 16px !important;
    border-radius: 22px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
}

.vf-profile-avatar-category-head {
    display: flex !important;
    align-items: end !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-bottom: 14px !important;
}

.vf-profile-avatar-category-head span {
    color: rgba(255,255,255,.46) !important;
    font-size: 11px !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
}

.vf-profile-avatar-category-head strong {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.vf-profile-avatar-category .vf-profile-avatar-library {
    grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)) !important;
    gap: 12px !important;
}

.vf-profile-avatar-category .vf-profile-avatar-choice {
    min-height: 132px !important;
    border-radius: 18px !important;
    background: rgba(0,0,0,.20) !important;
    border-color: rgba(255,255,255,.08) !important;
    transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease !important;
}

.vf-profile-avatar-category .vf-profile-avatar-choice:hover,
.vf-profile-avatar-category .vf-profile-avatar-choice:focus-visible {
    transform: translateY(-3px) !important;
    border-color: rgba(255,255,255,.55) !important;
    background: rgba(255,255,255,.08) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.30) !important;
}

.vf-profile-avatar-category .vf-profile-avatar-choice.is-active {
    border-color: #fff !important;
    background: rgba(229,9,20,.18) !important;
    box-shadow: 0 0 0 2px rgba(229,9,20,.75), 0 18px 36px rgba(0,0,0,.35) !important;
}

.vf-profile-avatar-category .vf-profile-avatar-choice-image,
.vf-profile-avatar-category .vf-profile-avatar-choice-fallback {
    width: 76px !important;
    height: 76px !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.28) !important;
}

.vf-profile-avatar-category .vf-profile-avatar-choice-image img {
    border-radius: inherit !important;
}

@media (max-width: 760px) {
    .vf-profile-avatar-gallery {
        max-height: 48vh !important;
        gap: 16px !important;
        padding-right: 2px !important;
    }

    .vf-profile-avatar-category {
        padding: 12px !important;
        border-radius: 18px !important;
    }

    .vf-profile-avatar-category-head strong {
        font-size: 17px !important;
    }

    .vf-profile-avatar-category .vf-profile-avatar-library {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    .vf-profile-avatar-category .vf-profile-avatar-choice {
        min-height: 116px !important;
        padding: 10px 6px !important;
    }

    .vf-profile-avatar-category .vf-profile-avatar-choice-image,
    .vf-profile-avatar-category .vf-profile-avatar-choice-fallback {
        width: 58px !important;
        height: 58px !important;
        border-radius: 14px !important;
    }

    .vf-profile-avatar-category .vf-profile-avatar-choice strong {
        font-size: 11px !important;
    }
}


/* AVATARES REALISTAS 9.4.3 */
.vf-profile-avatar-category:has(.vf-profile-avatar-choice img[src*="avatar-realista-"]) .vf-profile-avatar-category-head strong {
    color: #fff !important;
}

.vf-profile-avatar-choice-image img[src*="avatar-realista-"] {
    object-fit: cover !important;
    transform: scale(1.04) !important;
}

.vf-profile-avatar-choice:has(img[src*="avatar-realista-"]) {
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)) !important;
}


/* =========================================================
   BUSCADOR AVANZADO 9.4.5
   ========================================================= */
.vf-search-panel {
    width: min(1180px, calc(100vw - 28px)) !important;
}

.vf-search-advanced {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(120px, 1fr)) auto !important;
    gap: 10px !important;
    margin: 18px 0 14px !important;
    align-items: end !important;
}

.vf-search-advanced label {
    display: grid !important;
    gap: 6px !important;
    text-align: left !important;
}

.vf-search-advanced label span {
    color: rgba(255,255,255,.62) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
}

.vf-search-advanced select,
.vf-search-clear-filters {
    min-height: 42px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    background: rgba(255,255,255,.07) !important;
    color: #fff !important;
    padding: 0 14px !important;
    outline: none !important;
    font-weight: 750 !important;
}

.vf-search-advanced select:focus,
.vf-search-clear-filters:focus-visible {
    border-color: rgba(255,255,255,.72) !important;
    box-shadow: 0 0 0 3px rgba(255,255,255,.12) !important;
}

.vf-search-advanced select option {
    background: #141414 !important;
    color: #fff !important;
}

.vf-search-clear-filters {
    cursor: pointer !important;
    background: transparent !important;
    color: rgba(255,255,255,.78) !important;
    white-space: nowrap !important;
}

.vf-search-clear-filters:hover {
    color: #fff !important;
    border-color: rgba(255,255,255,.48) !important;
    background: rgba(255,255,255,.1) !important;
}

@media (max-width: 980px) {
    .vf-search-advanced {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .vf-search-clear-filters {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 640px) {
    .vf-search-advanced {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    .vf-search-advanced select,
    .vf-search-clear-filters {
        min-height: 40px !important;
        font-size: 13px !important;
        padding: 0 10px !important;
    }
}


/* =========================================================
   MÓVIL, TABLET Y TV OPTIMIZADO 9.5.5
   ========================================================= */
:root {
    --vf-touch-target: 48px;
    --vf-tv-touch-target: 60px;
}

.vf-page button,
.vf-page a,
.vf-page [role="button"],
.vf-private-login-page button,
.vf-private-login-page a {
    touch-action: manipulation !important;
}

.vf-nav,
.vf-header-right-actions {
    -webkit-overflow-scrolling: touch !important;
}

.vf-nav a,
.vf-button,
.vf-profile-button,
.vf-header-search-button,
.vf-card-quick,
.vf-row-arrow,
.vf-hero-arrow,
.vf-profile-manage-button,
.vf-profile-manager-actions button,
.vf-private-login-page button,
.vf-private-login-page input {
    min-height: var(--vf-touch-target) !important;
}

.vf-card,
.vf-profile-card,
.vf-button,
.vf-nav a,
.vf-card-quick,
.vf-row-arrow,
.vf-hero-arrow,
.vf-profile-button,
.vf-header-search-button {
    outline-offset: 4px !important;
}

body.vf-using-keyboard .vf-card:focus,
body.vf-using-keyboard .vf-profile-card:focus,
body.vf-using-keyboard .vf-button:focus,
body.vf-using-keyboard .vf-nav a:focus,
body.vf-using-keyboard .vf-card-quick:focus,
body.vf-using-keyboard .vf-row-arrow:focus,
body.vf-using-keyboard .vf-hero-arrow:focus,
body.vf-using-keyboard .vf-profile-button:focus,
body.vf-using-keyboard .vf-header-search-button:focus,
body.vf-tv-mode .vf-card:focus,
body.vf-tv-mode .vf-profile-card:focus,
body.vf-tv-mode .vf-button:focus,
body.vf-tv-mode .vf-nav a:focus,
body.vf-tv-mode .vf-card-quick:focus,
body.vf-tv-mode .vf-row-arrow:focus,
body.vf-tv-mode .vf-hero-arrow:focus,
body.vf-tv-mode .vf-profile-button:focus,
body.vf-tv-mode .vf-header-search-button:focus {
    outline: 4px solid rgba(255,255,255,.95) !important;
    box-shadow: 0 0 0 7px rgba(229,9,20,.75), 0 14px 42px rgba(0,0,0,.55) !important;
    z-index: 40 !important;
}

body.vf-using-keyboard .vf-card:focus,
body.vf-tv-mode .vf-card:focus {
    transform: scale(1.07) translateY(-6px) !important;
}

.vf-section,
.vf-row-nav,
.vf-card {
    content-visibility: auto !important;
    contain-intrinsic-size: 320px !important;
}

.vf-poster,
.vf-profile-avatar img,
.vf-profile-button-avatar img,
.vf-modal-backdrop,
.vf-hero-bg {
    image-rendering: auto !important;
}

.vf-poster {
    background: linear-gradient(135deg, #202020, #050505) !important;
}

.vf-row {
    overscroll-behavior-inline: contain !important;
    scroll-snap-type: x proximity !important;
}

.vf-row > * {
    scroll-snap-align: start !important;
}

@media (max-width: 900px) {
    .vf-shell {
        width: calc(100% - 20px) !important;
    }

    .vf-header {
        position: sticky !important;
        top: 0 !important;
    }

    .vf-header-inner {
        min-height: 62px !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
        padding: 8px 0 !important;
    }

    .vf-logo {
        font-size: 18px !important;
        min-height: 44px !important;
    }

    .vf-nav {
        order: 3 !important;
        width: 100% !important;
        display: flex !important;
        gap: 8px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 4px 0 8px !important;
        scrollbar-width: none !important;
    }

    .vf-nav::-webkit-scrollbar {
        display: none !important;
    }

    .vf-nav a {
        flex: 0 0 auto !important;
        padding: 12px 14px !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,.06) !important;
        white-space: nowrap !important;
        font-size: 14px !important;
    }

    .vf-nav a.is-active {
        background: rgba(229,9,20,.92) !important;
        color: #fff !important;
    }

    .vf-header-right-actions {
        margin-left: auto !important;
        gap: 8px !important;
    }

    .vf-profile-button strong {
        display: none !important;
    }

    .vf-hero {
        min-height: 70vh !important;
        padding-top: 76px !important;
        align-items: flex-end !important;
    }

    .vf-title {
        font-size: clamp(34px, 9vw, 54px) !important;
    }

    .vf-description {
        max-width: 100% !important;
        font-size: 15px !important;
        line-height: 1.45 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .vf-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .vf-actions .vf-button {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 14px !important;
        font-size: 14px !important;
    }

    .vf-row {
        grid-auto-columns: minmax(155px, 58vw) !important;
        gap: 12px !important;
        padding-bottom: 12px !important;
    }

    .vf-card {
        border-radius: 10px !important;
    }

    .vf-card:hover {
        transform: none !important;
    }

    .vf-card-hover-panel-netflix,
    .vf-card-hover-actions-netflix {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
    }

    .vf-card-quick {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
    }

    .vf-row-arrow {
        width: 46px !important;
        opacity: .92 !important;
    }

    .vf-profile-grid {
        gap: 18px !important;
    }

    .vf-profile-card .vf-profile-avatar {
        width: 112px !important;
        height: 112px !important;
    }

    .vf-profile-card {
        font-size: 16px !important;
    }

    .vf-modal-panel,
    .vf-search-panel,
    .vf-profile-manager-panel {
        width: calc(100vw - 12px) !important;
        max-height: calc(100vh - 12px) !important;
    }
}

@media (min-width: 1200px) and (pointer: coarse), (min-width: 1600px) {
    body {
        --vf-touch-target: var(--vf-tv-touch-target);
    }

    .vf-shell {
        width: min(1760px, calc(100% - 72px)) !important;
    }

    .vf-logo {
        font-size: 30px !important;
    }

    .vf-nav {
        gap: 18px !important;
    }

    .vf-nav a {
        min-height: 60px !important;
        padding: 18px 22px !important;
        font-size: 20px !important;
    }

    .vf-header-search-button,
    .vf-profile-button {
        min-height: 60px !important;
        font-size: 18px !important;
    }

    .vf-button {
        min-height: 64px !important;
        padding: 18px 26px !important;
        font-size: 18px !important;
    }

    .vf-row {
        grid-auto-columns: minmax(320px, 360px) !important;
        gap: 20px !important;
    }

    .vf-card-title {
        font-size: 20px !important;
    }

    .vf-card-meta,
    .vf-card-meta-strip,
    .vf-card-genre-strip {
        font-size: 15px !important;
    }

    .vf-card-quick {
        width: 52px !important;
        height: 52px !important;
        font-size: 20px !important;
    }

    .vf-row-arrow {
        width: 84px !important;
        font-size: 50px !important;
    }

    .vf-profile-panel {
        width: min(1280px, calc(100% - 64px)) !important;
    }

    .vf-profile-card .vf-profile-avatar {
        width: 180px !important;
        height: 180px !important;
    }

    .vf-profile-card {
        font-size: 24px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vf-page *,
    .vf-private-login-page * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}


/* =========================================================
   SISTEMA VISTO / VOLVER A VER 9.5.6
   ========================================================= */
.vf-watched-button.is-watched,
.vf-card-quick-watched.is-active {
    background: rgba(46, 204, 113, .20) !important;
    border-color: rgba(46, 204, 113, .75) !important;
    color: #fff !important;
}

.vf-card.is-watched .vf-poster {
    filter: saturate(.88) brightness(.82) !important;
}

.vf-card-watched-badge {
    border: 1px solid rgba(46, 204, 113, .72) !important;
    color: #b8ffd2 !important;
    background: rgba(46, 204, 113, .16) !important;
    border-radius: 999px !important;
    padding: 2px 7px !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

.vf-card-quick-watched {
    font-size: 17px !important;
}

.vf-section-watch-again {
    animation: vfFadeUp .22s ease both;
}


/* =========================================================
   SERIES MEJORADAS 9.5.7
   ========================================================= */
.vf-episodes-top {
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.vf-continue-series-button,
.vf-season-watched-button {
    min-height: 38px !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    padding: 0 14px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
}

.vf-continue-series-button {
    background: #fff !important;
    color: #111 !important;
}

.vf-season-watched-button.is-complete {
    background: rgba(34,197,94,.16) !important;
    border-color: rgba(34,197,94,.42) !important;
    color: #d1fae5 !important;
}

.vf-episodes-subtitle {
    display: grid !important;
    gap: 8px !important;
    min-width: 220px !important;
}

.vf-episodes-subtitle small {
    color: rgba(255,255,255,.62) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.vf-season-progress {
    width: min(360px, 100%) !important;
    height: 6px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.12) !important;
    overflow: hidden !important;
}

.vf-season-progress span {
    display: block !important;
    height: 100% !important;
    background: #e50914 !important;
    border-radius: inherit !important;
}

.vf-episode-card.is-watched {
    border-color: rgba(34,197,94,.34) !important;
    background: rgba(34,197,94,.06) !important;
}

.vf-episode-card.is-watched .vf-episode-title {
    color: #d1fae5 !important;
}

.vf-episode-media {
    position: relative !important;
}

.vf-episode-check {
    position: absolute !important;
    right: 8px !important;
    bottom: 8px !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #22c55e !important;
    color: #06140b !important;
    font-weight: 950 !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.35) !important;
}

.vf-episode-meta-line {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin: 6px 0 8px !important;
}

.vf-episode-meta-line span {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: rgba(255,255,255,.68) !important;
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 999px !important;
    padding: 4px 8px !important;
}

.vf-episode-watch-toggle {
    align-self: center !important;
    min-height: 34px !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    padding: 0 12px !important;
    font-weight: 850 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

.vf-episode-watch-toggle.is-watched {
    background: rgba(34,197,94,.14) !important;
    border-color: rgba(34,197,94,.42) !important;
    color: #d1fae5 !important;
}

.vf-episode-watch-toggle:hover,
.vf-continue-series-button:hover,
.vf-season-watched-button:hover {
    transform: translateY(-1px) !important;
    filter: brightness(1.08) !important;
}

@media (max-width: 760px) {
    .vf-continue-series-button,
    .vf-season-watched-button {
        width: 100% !important;
    }

    .vf-episode-watch-toggle {
        width: 100% !important;
        margin-top: 8px !important;
    }
}
