.watch-page {
    position: relative;
}

.watch-hero {
    position: absolute;
    inset: 0;
    height: 420px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.watch-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(24px);
    transform: scale(1.1);
    opacity: 0.35;
}

.watch-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 49, 0.2) 0%, #0d0d31 100%);
}

.watch-page__inner {
    position: relative;
    z-index: 1;
}

.watch-player-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    aspect-ratio: 16 / 9;
    user-select: none;
    -webkit-user-select: none;
    direction: ltr;
    unicode-bidi: isolate;
    --lp-accent: hsl(var(--base));
    --lp-controls-h: 54px;
}

.watch-player-wrap:fullscreen,
.watch-player-wrap:-webkit-full-screen,
.watch-player-wrap:-moz-full-screen,
.watch-player-wrap:-ms-fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    aspect-ratio: auto;
    border-radius: 0;
    background: #000;
}

.watch-player-wrap.is-pseudo-fs {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    border-radius: 0 !important;
    margin: 0 !important;
    z-index: 2147483646 !important;
    background: #000 !important;
    box-shadow: none !important;
    transform: none !important;
    filter: none !important;
    isolation: isolate;
}

html.lp-fs-active,
html.lp-fs-active body,
body.lp-fs-active {
    overflow: hidden !important;
    touch-action: none;
    height: 100% !important;
}

body.lp-fs-active .header,
body.lp-fs-active .scroll-to-top,
body.lp-fs-active #preloader,
body.lp-fs-active .body-overlay,
body.lp-fs-active .sidebar-overlay,
body.lp-fs-active .header-search-area,
body.lp-fs-active .modal-backdrop {
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
}

.watch-player-wrap:fullscreen .watch-native-player,
.watch-player-wrap:-webkit-full-screen .watch-native-player,
.watch-player-wrap.is-fullscreen .watch-native-player,
.watch-player-wrap.is-pseudo-fs .watch-native-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.watch-player-wrap.lp-controls-idle.is-playing {
    cursor: none;
}

.watch-player-wrap.lp-controls-idle.is-playing .lp-overlay {
    cursor: none;
}

.watch-playback-error {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    text-align: center;
}

.watch-native-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: contain;
}

/* —— Custom player chrome —— */
.lp-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lp-big-play {
    width: 76px;
    height: 76px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: color-mix(in srgb, var(--lp-accent) 88%, #000);
    color: #fff;
    font-size: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    z-index: 4;
    padding-left: 5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lp-big-play:hover {
    transform: scale(1.07);
    background: var(--lp-accent);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 0 0 6px color-mix(in srgb, var(--lp-accent) 22%, transparent);
}

.lp-big-play:active {
    transform: scale(0.96);
}

.lp-big-play.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.88);
}

.lp-spinner {
    position: absolute;
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.lp-spinner.is-visible,
.watch-player-wrap.is-loading .lp-spinner {
    opacity: 1;
    animation: lp-spin 0.75s linear infinite;
}

@keyframes lp-spin {
    to { transform: rotate(360deg); }
}

.lp-seek-toast {
    position: absolute;
    top: 18%;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    backdrop-filter: blur(6px);
}

.lp-seek-toast.is-visible {
    opacity: 1;
}

.lp-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    padding: 0 12px 10px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 35%,
        rgba(0, 0, 0, 0.82) 100%
    );
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.watch-player-wrap.lp-controls-visible .lp-controls,
.watch-player-wrap.is-paused .lp-controls,
.watch-player-wrap.lp-menu-open .lp-controls {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.watch-player-wrap.is-paused .lp-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

.lp-progress {
    position: relative;
    height: 18px;
    display: flex;
    align-items: center;
    margin-bottom: 2px;
    cursor: pointer;
}

.lp-progress__rail {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    overflow: hidden;
    transition: height 0.15s;
}

.lp-progress:hover .lp-progress__rail,
.lp-progress:focus-within .lp-progress__rail {
    height: 6px;
}

.lp-progress__buffered,
.lp-progress__played {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    border-radius: inherit;
}

.lp-progress__buffered {
    background: rgba(255, 255, 255, 0.35);
}

.lp-progress__played {
    background: var(--lp-accent);
}

.lp-progress__seek {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 18px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}

.lp-progress__seek::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}

.lp-progress__seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    margin-top: -5px;
    opacity: 0;
    transition: opacity 0.15s;
}

.lp-progress:hover .lp-progress__seek::-webkit-slider-thumb,
.lp-progress:focus-within .lp-progress__seek::-webkit-slider-thumb {
    opacity: 1;
}

.lp-progress__seek::-moz-range-track {
    height: 4px;
    background: transparent;
    border: none;
}

.lp-progress__seek::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: none;
    opacity: 0;
}

.lp-progress:hover .lp-progress__seek::-moz-range-thumb {
    opacity: 1;
}

.lp-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: var(--lp-controls-h);
}

.lp-bar__left,
.lp-bar__right {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.lp-btn {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    line-height: 1;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease,
        transform 0.15s ease,
        box-shadow 0.18s ease;
}

.lp-btn i {
    display: block;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.lp-btn:hover,
.lp-btn:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lp-btn:active {
    transform: scale(0.94);
    background: rgba(255, 255, 255, 0.2);
}

#lpPlay {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: color-mix(in srgb, var(--lp-accent) 82%, #111);
    border-color: color-mix(in srgb, var(--lp-accent) 55%, transparent);
    color: #fff;
    font-size: 23px;
    box-shadow:
        0 4px 14px color-mix(in srgb, var(--lp-accent) 35%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#lpPlay:hover,
#lpPlay:focus-visible {
    background: var(--lp-accent);
    border-color: transparent;
    color: #fff;
    box-shadow:
        0 6px 18px color-mix(in srgb, var(--lp-accent) 45%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lp-btn--text {
    width: auto;
    min-width: 42px;
    height: 34px;
    padding: 0 11px;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}

.lp-btn--text:hover,
.lp-btn--text:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.2);
}

.lp-btn--text i {
    font-size: 15px;
}

.lp-btn--text .lp-btn__label {
    line-height: 1;
}

.lp-popover .lp-menu.is-open ~ .lp-btn--text,
.lp-popover:has(.lp-menu.is-open) > .lp-btn--text {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.24);
}

.lp-btn--skip {
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.9);
}

.lp-btn--skip .lp-btn__hint {
    position: absolute;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: -0.02em;
    bottom: 8px;
    right: 8px;
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    line-height: 1;
    pointer-events: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.lp-btn--skip:hover .lp-btn__hint {
    background: var(--lp-accent);
}

.lp-volume {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-right: 2px;
    border-radius: 12px;
    transition: background 0.18s ease;
}

.lp-volume:hover,
.lp-volume:focus-within {
    background: rgba(255, 255, 255, 0.08);
}

.lp-volume__range {
    width: 0;
    opacity: 0;
    margin-right: 8px;
    transition: width 0.22s ease, opacity 0.18s ease;
    appearance: none;
    -webkit-appearance: none;
    height: 4px;
    background: linear-gradient(
        to right,
        var(--lp-accent) 0%,
        var(--lp-accent) var(--lp-vol, 100%),
        rgba(255, 255, 255, 0.28) var(--lp-vol, 100%),
        rgba(255, 255, 255, 0.28) 100%
    );
    border-radius: 999px;
    cursor: pointer;
}

.lp-volume:hover .lp-volume__range,
.lp-volume:focus-within .lp-volume__range {
    width: 78px;
    opacity: 1;
}

.lp-volume__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
    transition: transform 0.15s ease;
}

.lp-volume__range:hover::-webkit-slider-thumb,
.lp-volume__range:active::-webkit-slider-thumb {
    transform: scale(1.12);
}

.lp-volume__range::-moz-range-thumb {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}

.lp-time {
    color: rgba(255, 255, 255, 0.88);
    font-size: 12.5px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    padding: 6px 10px;
    margin-left: 2px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    direction: ltr;
    unicode-bidi: isolate;
    letter-spacing: 0.01em;
}

.lp-time__sep {
    opacity: 0.45;
    margin: 0 4px;
    font-weight: 500;
}

.lp-popover {
    position: relative;
}

.lp-menu {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    min-width: 124px;
    max-height: 240px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 12px;
    background: rgba(12, 12, 28, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    z-index: 8;
    direction: ltr;
    text-align: left;
}

.lp-menu.is-open {
    display: block;
    animation: lp-menu-in 0.16s ease;
}

@keyframes lp-menu-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-menu__item {
    display: block;
    width: 100%;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    text-align: left;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.lp-menu__item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lp-menu__item.is-active {
    background: color-mix(in srgb, var(--lp-accent) 22%, transparent);
    color: var(--lp-accent);
}

.watch-quality-menu {
    display: none !important;
}

@media (max-width: 767px) {
    .watch-player-wrap {
        border-radius: 8px;
        --lp-controls-h: 48px;
    }

    .lp-big-play {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .lp-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: 10px;
    }

    #lpPlay {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 20px;
    }

    .lp-btn--skip {
        width: 40px;
        height: 40px;
    }

    .lp-btn--text {
        height: 32px;
        padding: 0 9px;
        min-width: 36px;
    }

    .lp-volume__range,
    .lp-volume:hover .lp-volume__range {
        display: none;
    }

    .lp-time {
        font-size: 11.5px;
        padding: 5px 8px;
    }

    .lp-btn--text .lp-btn__label {
        display: none;
    }

    #lpPip {
        display: none;
    }

    .lp-controls {
        padding: 0 8px 8px;
    }

    .lp-bar {
        gap: 4px;
    }

    .lp-bar__left,
    .lp-bar__right {
        gap: 2px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .lp-progress__seek::-webkit-slider-thumb {
        opacity: 1;
        width: 16px;
        height: 16px;
    }

    .lp-progress__rail {
        height: 5px;
    }
}

.watch-player-wrap .video-js {
    width: 100%;
    height: 100%;
}

.watch-player-wrap .vjs-tech {
    object-fit: contain;
}

.watch-gate {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    z-index: 5;
    cursor: pointer;
    text-align: center;
    padding: 24px;
    text-decoration: none;
    color: inherit;
}

.watch-gate__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    z-index: -1;
}

.watch-gate__play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: hsl(var(--base));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 16px;
    transition: transform 0.2s ease;
}

.watch-gate:hover .watch-gate__play {
    transform: scale(1.08);
}

.watch-gate__title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.watch-gate__text {
    color: #bfbfbf;
    font-size: 14px;
    max-width: 320px;
    margin: 0 auto 16px;
}

.watch-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.watch-preview__video,
.watch-preview__embed {
    width: 100%;
    height: 100%;
    display: block;
}

.watch-preview__embed {
    position: relative;
}

.watch-preview__embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.watch-preview__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.watch-preview__play-btn {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.watch-preview__play-btn i {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--base-color, #e50914);
    font-size: 24px;
}

.watch-preview__label {
    margin: 10px 0 0;
    color: #bfbfbf;
    font-size: 14px;
    text-align: center;
}

.watch-preview-cta {
    margin-top: 16px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.watch-preview-cta__text {
    color: #d0d0d0;
    margin-bottom: 12px;
    font-size: 14px;
}

.watch-seo-longform {
    margin-top: 28px;
    padding: 24px 0 8px;
    color: #d1d5db;
    line-height: 1.95;
    font-size: 15px;
    text-align: justify;
    text-justify: inter-word;
}

.watch-seo-longform p,
.watch-seo-longform li {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.95;
}

.watch-seo-longform h2,
.watch-seo-longform h3,
.watch-seo-longform h4 {
    text-align: right;
}

.watch-seo-longform h2 {
    color: #fff;
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 28px 0 14px;
}

.watch-seo-longform h3 {
    color: #f3f4f6;
    font-size: 17px;
    margin: 20px 0 10px;
}

.watch-seo-longform a {
    color: var(--base-color, #e50914);
    text-decoration: underline;
}

.watch-seo-longform table {
    width: 100%;
    margin: 12px 0 20px;
    text-align: right;
}

.watch-seo-longform th,
.watch-seo-longform td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.watch-prose {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.95;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.watch-description {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.95;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    font-size: 15px;
}

.watch-description p + p,
.watch-prose p + p {
    margin-top: 0.95em;
}

.watch-description > *:first-child,
.watch-prose > *:first-child {
    margin-top: 0;
}

.watch-description h2,
.watch-description h3,
.watch-description h4,
.watch-prose h2,
.watch-prose h3,
.watch-prose h4 {
    color: #fff;
    text-align: right;
    line-height: 1.45;
    font-weight: 700;
    margin: 1.75em 0 0.75em;
    padding-inline-start: 14px;
    border-inline-start: 3px solid hsl(var(--base));
}

.watch-description h2,
.watch-prose h2 {
    font-size: clamp(17px, 2vw, 20px);
}

.watch-description h3,
.watch-prose h3 {
    font-size: 16px;
    color: #f3f4f6;
    border-inline-start-color: hsl(var(--base) / 0.55);
}

.watch-description ul,
.watch-description ol,
.watch-prose ul,
.watch-prose ol {
    margin: 1.1em 0 1.35em;
    padding: 14px 18px 14px 16px;
    list-style: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.watch-description li,
.watch-prose li {
    position: relative;
    padding-inline-start: 1.1em;
    margin: 0.55em 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.85;
    text-align: justify;
}

.watch-description ul > li::before,
.watch-prose ul > li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: hsl(var(--base));
    box-shadow: 0 0 0 3px hsl(var(--base) / 0.18);
}

.watch-description strong,
.watch-description b,
.watch-prose strong,
.watch-prose b {
    color: #fff;
    font-weight: 700;
}

.watch-description blockquote,
.watch-prose blockquote {
    margin: 1.4em 0;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-inline-start: 3px solid hsl(var(--base));
    background: rgba(0, 0, 0, 0.22);
    color: rgba(255, 255, 255, 0.82);
    font-style: italic;
}

/* Inline stills inside description / longform */
.watch-details-card--description .watch-description--article .watch-inline-still,
.watch-details-card--description .watch-description--article figure,
.watch-inline-still,
.watch-description figure,
.watch-prose figure,
.watch-seo-longform figure {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 760px);
    max-width: 760px;
    margin: 2em auto !important;
    padding: 12px 12px 14px;
    text-align: center !important;
    float: none !important;
    clear: both;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.watch-details-card--description .watch-description--article .watch-inline-still img,
.watch-details-card--description .watch-description--article figure img,
.watch-inline-still img,
.watch-description figure img,
.watch-prose figure img,
.watch-seo-longform figure img,
.watch-description > img,
.watch-prose > img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b0b16;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    object-fit: cover;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.watch-inline-still:hover img,
.watch-description figure:hover img,
.watch-prose figure:hover img,
.watch-seo-longform figure:hover img {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px hsl(var(--base) / 0.35);
}

.watch-details-card--description .watch-description--article .watch-inline-still figcaption,
.watch-details-card--description .watch-description--article figure figcaption,
.watch-inline-still figcaption,
.watch-inline-still__caption,
.watch-description figure figcaption,
.watch-prose figure figcaption,
.watch-seo-longform figure figcaption {
    display: inline-block !important;
    max-width: 92%;
    margin: 12px auto 2px !important;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(13, 13, 49, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(243, 244, 246, 0.88) !important;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.01em;
    text-align: center !important;
    text-justify: auto;
}

.watch-inline-still figcaption::before,
.watch-inline-still__caption::before,
.watch-description figure figcaption::before,
.watch-prose figure figcaption::before,
.watch-seo-longform figure figcaption::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-inline-end: 8px;
    border-radius: 50%;
    background: hsl(var(--base));
    vertical-align: middle;
    opacity: 0.95;
    box-shadow: 0 0 0 3px hsl(var(--base) / 0.2);
}

@media (max-width: 575px) {
    .watch-inline-still,
    .watch-description figure,
    .watch-prose figure,
    .watch-seo-longform figure,
    .watch-details-card--description .watch-description--article .watch-inline-still {
        margin: 1.4em auto !important;
        max-width: 100%;
        width: 100%;
        padding: 8px 8px 10px;
        border-radius: 14px;
    }

    .watch-inline-still img,
    .watch-description figure img,
    .watch-prose figure img,
    .watch-seo-longform figure img {
        border-radius: 10px;
    }

    .watch-inline-still figcaption,
    .watch-description figure figcaption,
    .watch-prose figure figcaption,
    .watch-seo-longform figure figcaption {
        font-size: 12px;
        padding: 6px 12px;
        max-width: 100%;
    }
}

.watch-prose-list {
    color: #d1d5db;
    line-height: 1.95;
    padding-inline-start: 1.25rem;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
}

.watch-prose-list li + li {
    margin-top: 0.45em;
}

.watch-meta__preview {
    margin-top: 1rem;
    margin-bottom: 0;
    color: #bfbfbf;
    line-height: 1.9;
}

.watch-key-takeaways {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.watch-key-takeaways li {
    position: relative;
    padding: 12px 14px 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #e5e7eb;
    line-height: 1.75;
    text-align: justify;
    text-justify: inter-word;
}

.watch-key-takeaways li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
    background: hsl(var(--base));
}

.watch-facts-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

.watch-facts-table .visually-hidden,
.watch-facts-table caption.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.watch-facts-table caption {
    caption-side: top;
}

.watch-facts-table th,
.watch-facts-table td {
    padding: 14px 16px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: right;
}

.watch-facts-table tr:last-child th,
.watch-facts-table tr:last-child td {
    border-bottom: none;
}

.watch-facts-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.watch-facts-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.watch-facts-table th {
    width: 38%;
    max-width: 220px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.watch-facts-table td {
    color: #d1d5db;
    line-height: 1.7;
}

.watch-app-cta {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
}

.watch-app-cta__text {
    margin: 0 0 10px;
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.6;
}

.watch-app-cta__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.watch-app-cta__link {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.watch-app-cta__link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: hsl(var(--base));
    color: #fff;
}

.watch-details-card .accordion-body.watch-prose {
    color: #d1d5db;
}

.watch-faq-block {
    margin-top: 4px;
}

.watch-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.watch-faq__item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
}

.watch-faq__item:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.watch-faq__heading {
    margin: 0;
    font-size: inherit;
}

.watch-faq__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: right;
    cursor: pointer;
    box-shadow: none;
}

.watch-faq__btn:focus,
.watch-faq__btn:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 1px hsl(var(--base) / 0.55);
}

.watch-faq__btn:not(.collapsed) {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.watch-faq__question {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    color: #f3f4f6;
}

.watch-faq__icon {
    position: relative;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.watch-faq__icon::before,
.watch-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #d1d5db;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.watch-faq__icon::before {
    width: 12px;
    height: 2px;
}

.watch-faq__icon::after {
    width: 2px;
    height: 12px;
}

.watch-faq__btn:not(.collapsed) .watch-faq__icon {
    border-color: hsl(var(--base) / 0.45);
    background: hsl(var(--base) / 0.12);
}

.watch-faq__btn:not(.collapsed) .watch-faq__icon::before,
.watch-faq__btn:not(.collapsed) .watch-faq__icon::after {
    background: hsl(var(--base));
}

.watch-faq__btn:not(.collapsed) .watch-faq__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.watch-faq__answer {
    padding: 14px 16px 16px;
    color: #d1d5db;
    line-height: 1.95;
    text-align: justify;
    text-justify: inter-word;
    border: 0;
}

.watch-faq__panel {
    background: transparent;
}

@media (max-width: 575px) {
    .watch-faq__question {
        font-size: 14px;
    }

    .watch-faq__btn {
        padding: 12px 14px;
        gap: 10px;
    }

    .watch-faq__icon {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }
}

.watch-seo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin: 16px 0 24px;
}

.watch-seo-gallery figure {
    margin: 0;
}

.watch-seo-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    background: #111;
}

.watch-seo-gallery figcaption {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 6px;
}

.watch-seo-trailer {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 12px 0 24px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.watch-seo-trailer iframe,
.watch-seo-trailer video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.category-page-header__title {
    color: #fff;
    font-size: clamp(22px, 3vw, 30px);
    margin-bottom: 8px;
}

.category-page-header__intro {
    color: #bfbfbf;
    font-size: 15px;
    margin-bottom: 0;
    max-width: 720px;
}

.watch-meta {
    margin-top: 24px;
}

.watch-meta__title {
    font-size: clamp(22px, 3vw, 32px);
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.35;
}

.watch-meta__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    color: #bfbfbf;
    font-size: 14px;
}

.watch-meta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.watch-meta__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #1b1b3f;
    color: #fff;
    font-size: 13px;
}

.watch-meta__heading {
    margin: 0 0 12px;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.watch-meta__heading .watch-meta__title {
    margin: 0;
}

.watch-meta__chip--audio {
    background: hsl(var(--base) / 0.2);
    color: hsl(var(--base));
    font-weight: 600;
}

.watch-meta__chip i {
    color: hsl(var(--base));
}

.watch-traffic-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.watch-traffic-badge i {
    font-size: 13px;
    color: hsl(var(--base) / 0.85);
    opacity: 0.9;
}

.watch-traffic-badge__text {
    color: rgba(255, 255, 255, 0.88);
}

.watch-party-btn {
    border: 1px solid hsl(var(--base));
    background: transparent;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.watch-party-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.watch-tabs .nav-link {
    color: #bfbfbf;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 12px 20px;
    font-weight: 500;
}

.watch-tabs .nav-link.active {
    color: hsl(var(--base));
    background: transparent;
    border-bottom-color: hsl(var(--base));
}

.watch-details-card {
    background: #1b1b3f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
    color: #bfbfbf;
}

.watch-details-card h4,
.watch-details-card__title {
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
}

.watch-details-card--description {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.035), transparent 42%),
        #1b1b3f;
}

.watch-details-card--description::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        hsl(var(--base)),
        hsl(var(--base) / 0.15)
    );
    pointer-events: none;
}

.watch-details-card--description .watch-details-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: clamp(17px, 2vw, 19px);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.watch-details-card--description .watch-details-card__title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to inline-end,
        rgba(255, 255, 255, 0.14),
        transparent 85%
    );
}

.watch-episodes {
    background: #1b1b3f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    max-height: 520px;
    overflow-y: auto;
}

.watch-episodes__title {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.watch-episode-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.watch-episode-item:hover,
.watch-episode-item.is-active {
    background: rgba(255, 255, 255, 0.04);
}

.watch-episode-item.is-active {
    border-right: 3px solid hsl(var(--base));
}

.watch-episode-item__thumb {
    width: 80px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.watch-episode-item__title {
    color: #fff;
    font-size: 14px;
    margin: 0 0 4px;
}

.watch-episode-item__link {
    font-size: 13px;
    color: hsl(var(--base));
}

.watch-ad-layer {
    position: absolute;
    inset: 0;
    z-index: 20;
    background: #000;
    display: none;
}

.watch-ad-layer.is-active {
    display: block;
}

.watch-ad-layer .watch-native-player {
    width: 100%;
    height: 100%;
}

.watch-ad-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    z-index: 21;
}

.lp-next-episode {
    position: absolute;
    inset: 0;
    z-index: 25;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lp-next-episode.is-active,
.lp-next-episode:not([hidden]) {
    display: flex;
}

.lp-next-episode__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

.lp-next-episode__card {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    background: rgba(20, 20, 48, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.lp-next-episode__label {
    margin: 0 0 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
}

.lp-next-episode__body {
    display: flex;
    gap: 14px;
    text-align: right;
    margin-bottom: 18px;
}

.lp-next-episode__thumb {
    flex: 0 0 96px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}

.lp-next-episode__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-next-episode__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.lp-next-episode__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.lp-next-episode__meta {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.lp-next-episode__price {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
}

.lp-next-episode__price--free {
    color: #4ade80;
}

.lp-next-episode__price--paid {
    color: #93c5fd;
}

.lp-next-episode__price--rent {
    color: hsl(var(--base));
}

.lp-next-episode__countdown {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 10px;
}

.lp-next-episode__ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.lp-next-episode__ring-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 4;
}

.lp-next-episode__ring-progress {
    fill: none;
    stroke: var(--lp-accent, hsl(var(--base)));
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.35s linear;
}

.lp-next-episode__seconds {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.lp-next-episode__hint {
    margin: 0 0 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.lp-next-episode__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.watch-resume-modal .modal-content {
    background: #1b1b3f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    text-align: center;
    padding: 24px;
}

.watch-resume-modal .modal-icon {
    font-size: 48px;
    color: hsl(var(--base));
    margin-bottom: 12px;
}

.watch-resume-modal .modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.watch-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    cursor: pointer;
}

.watch-lock-overlay__content {
    text-align: center;
    color: #fff;
}

.watch-lock-overlay__icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

/* Video.js labflix theme */
.video-js.vjs-labflix {
    font-family: inherit;
}

.video-js.vjs-labflix .vjs-big-play-button {
    background: hsl(var(--base));
    border: none;
    border-radius: 50%;
    width: 72px;
    height: 72px;
    line-height: 72px;
    margin-top: -36px;
    margin-left: -36px;
}

.video-js.vjs-labflix .vjs-control-bar {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.video-js.vjs-labflix .vjs-play-progress,
.video-js.vjs-labflix .vjs-volume-level {
    background: hsl(var(--base));
}

.video-js.vjs-labflix .vjs-slider-bar {
    background: hsl(var(--base));
}

@media (max-width: 991px) {
    .watch-hero {
        height: 280px;
    }

    .watch-episodes {
        max-height: none;
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .watch-hero {
        height: 200px;
    }

    .watch-gate__play {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }
}

.watch-user-comments-section {
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    scroll-margin-top: 110px;
}

.watch-user-comments-card {
    border: 1px solid rgba(255, 175, 0, 0.35);
    background: #1b1b3f;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.watch-user-comments-card #user-comments-title {
    color: #fff;
    font-weight: 700;
}

.watch-user-comment + .watch-user-comment {
    margin-top: 0.75rem;
}

.watch-stars-input,
.watch-stars-readonly {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 2px;
    align-items: center;
    direction: ltr;
}

.watch-star-btn {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0 1px;
    margin: 0;
    line-height: 1;
    font-size: 1.45rem;
    color: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.watch-star-btn:hover,
.watch-star-btn:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.watch-star-btn.is-active,
.watch-star-btn.is-preview {
    color: #ffc107;
}

.watch-stars-readonly .watch-star {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
}

.watch-stars-readonly .watch-star.is-filled {
    color: #ffc107;
}

.watch-user-rating-picker .form-label {
    color: #fff;
}

.js-rating-status {
    min-height: 1.25rem;
}

