input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none !important;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
    display: none !important;
    width: 0;
    height: 0;
}

.icon-svg {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    flex-shrink: 0;
}

.icon-spin {
    animation: icon-spin 1s linear infinite;
}

@keyframes icon-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sr-only {
    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;
}

:root {
    --movy-bg: #07080b;
    --movy-surface: #15161b;
    --movy-surface-2: #1d1e24;
    --movy-text: #f4f4f6;
    --movy-muted: #8a8c95;
    --movy-line: rgba(255,255,255,.1);
    --movy-accent: #e5092f;
    --movy-radius: 13px;
    --movy-pad: clamp(20px,4vw,66px);
}

.movy-ui {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--movy-bg) !important;
    color: var(--movy-text);
    font-family: Outfit,Arial,sans-serif !important;
}

.movy-ui.movy-locked {
    overflow: hidden;
}

.movy-header {
    position: fixed !important;
    z-index: 1000 !important;
    inset: 0 0 auto !important;
    height: 72px !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: linear-gradient(180deg,rgba(3,4,6,.85) 0%,transparent 100%) !important;
    box-shadow: none !important;
    transition: background .25s ease,backdrop-filter .25s ease !important;
}

.movy-header:before,
.movy-header:after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    background: none !important;
}

.movy-header.scrolled {
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    background: rgba(8,9,13,.88) !important;
    box-shadow: none !important;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.movy-nav-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1760px;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--movy-pad);
}

.movy-brand {
    display: inline-flex;
    align-items: center;
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity .2s ease, transform .2s ease;
}

.movy-brand:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.movy-brand-desktop {
    display: inline-block;
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.8px;
    color: #ffffff;
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

.movy-brand-mobile {
    display: none;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    color: #ffffff;
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

.movy-brand .flix-accent {
    color: #ffc107;
    text-shadow: 0 0 14px rgba(255, 193, 7, 0.65), 0 0 24px rgba(255, 193, 7, 0.35);
}

.movy-main-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    height: 44px;
    padding: 4px 6px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(18,19,24,.78);
    box-shadow: 0 12px 36px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.1);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    transition: background .22s ease, border-color .22s ease, min-width .22s ease;
}

.movy-nav-links {
    display: flex;
    align-items: center;
    gap: 3px;
}

.movy-search-inline-bar {
    display: none;
    align-items: center;
    gap: 10px;
    flex: 1;
    height: 34px;
    padding: 0 12px;
}

.movy-main-nav.search-active .movy-nav-links,
.movy-main-nav.search-active .movy-nav-divider,
.movy-main-nav.search-active .movy-nav-tools {
    display: none !important;
}

.movy-main-nav.search-active .movy-search-inline-bar {
    display: flex !important;
}

.movy-main-nav.search-active {
    min-width: 480px;
    border-color: rgba(255,255,255,.25);
    background: rgba(14,15,20,.96);
}

.movy-main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 999px;
    color: rgba(255,255,255,.65) !important;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.movy-main-nav a .icon-svg {
    font-size: 15px;
    opacity: .85;
    transition: opacity .2s ease, transform .2s cubic-bezier(.2,.75,.25,1), filter .2s ease;
}

.movy-main-nav .movy-nav-links .movy-nav-link-icon {
    width: 16px;
    height: 16px;
    color: currentColor;
    stroke-width: 1.65;
    opacity: .74;
    transform: translateY(-.25px);
}

.movy-main-nav .movy-nav-links .movy-nav-link-icon-home {
    width: 15px;
    height: 15px;
}

.movy-main-nav a:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,.08);
}

.movy-main-nav a:hover .icon-svg {
    opacity: 1;
}

.movy-main-nav .movy-nav-links a:hover .movy-nav-link-icon {
    transform: translateY(-1px) scale(1.04);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .32));
}

.movy-main-nav .movy-nav-links a:active .movy-nav-link-icon {
    transform: translateY(0) scale(.94);
}

.movy-main-nav a.active {
    color: #ffffff !important;
    background: rgba(255,255,255,.18) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.2);
}

.movy-main-nav a.active .icon-svg {
    color: #ffffff;
    opacity: 1;
}

.movy-main-nav .movy-nav-links a.active .movy-nav-link-icon {
    transform: translateY(-.5px) scale(1.03);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .35));
}

.movy-nav-icon-btn.movy-nav-telegram {
    color: #29b6f6 !important;
}

.movy-nav-icon-btn.movy-nav-telegram .icon-svg {
    width: 18px;
    height: 18px;
    color: #29b6f6;
    transition: transform .2s ease, color .2s ease;
}

.movy-nav-icon-btn.movy-nav-telegram:hover {
    background: rgba(41,182,246,.15) !important;
    color: #ffffff !important;
}

.movy-nav-icon-btn.movy-nav-telegram:hover .icon-svg {
    color: #ffffff;
    transform: scale(1.1);
}

.movy-nav-divider {
    display: block;
    width: 1px;
    height: 18px;
    margin: 0 6px;
    background: rgba(255,255,255,.16);
    flex-shrink: 0;
}

.movy-nav-tools {
    display: flex;
    align-items: center;
    gap: 2px;
}

.movy-nav-icon-btn {
    display: grid !important;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50%;
    color: rgba(255,255,255,.7) !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.movy-nav-icon-btn .icon-svg {
    font-size: 15px;
}

.movy-nav-icon-btn:hover,
.movy-nav-icon-btn[aria-expanded=true] {
    color: #ffffff !important;
    background: rgba(255,255,255,.12) !important;
}

.movy-main-nav a.active:after {
    display: none;
}

.movy-nav-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

.movy-icon-button {
    display: grid !important;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 999px;
    color: #e4e4e6 !important;
    background: rgba(255,255,255,.04) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease, color .22s ease;
}

.movy-icon-button:hover,
.movy-icon-button[aria-expanded=true] {
    border-color: rgba(255,255,255,.2) !important;
    color: #ffffff !important;
    background: rgba(255,255,255,.12) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.15);
    transform: translateY(-1px);
}

.movy-icon-button:active {
    transform: scale(.95);
}

.movy-account-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header-avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.movy-account-menu {
    position: absolute;
    z-index: 1020;
    top: 66px;
    right: var(--movy-pad);
    display: none;
    width: 270px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    background: rgba(22, 22, 28, 0.98);
    box-shadow: 0 20px 50px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.movy-account-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 4px;
}

.movy-account-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #111216;
    color: #ffffff;
    cursor: pointer;
    appearance: none;
}

.movy-account-avatar:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.movy-account-avatar:disabled {
    cursor: wait;
}

.movy-account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .18s ease, transform .18s ease;
}

.movy-avatar-edit-icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(0, 0, 0, .58);
    opacity: 0;
    transition: opacity .18s ease;
}

.movy-avatar-edit-icon .icon-svg {
    width: 17px;
    height: 17px;
}

.movy-account-avatar:hover img,
.movy-account-avatar:focus-visible img {
    filter: brightness(.58);
    transform: scale(1.05);
}

.movy-account-avatar:hover .movy-avatar-edit-icon,
.movy-account-avatar:focus-visible .movy-avatar-edit-icon {
    opacity: 1;
}

.movy-avatar-spinner {
    position: absolute;
    inset: 10px;
    display: none;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: movy-avatar-spin .7s linear infinite;
}

.movy-account-avatar.is-uploading img {
    filter: brightness(.35);
}

.movy-account-avatar.is-uploading .movy-avatar-edit-icon {
    display: none;
}

.movy-account-avatar.is-uploading .movy-avatar-spinner {
    display: block;
}

.movy-avatar-input {
    position: fixed;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.movy-profile-quote {
    display: -webkit-box;
    max-width: 175px;
    min-height: 13px;
    margin-top: 2px;
    overflow: hidden;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    font-style: italic;
    line-height: 1.25;
    text-overflow: ellipsis;
    transform: translateY(0);
    opacity: 1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: opacity .26s ease, transform .26s ease;
}

.movy-profile-quote.is-changing {
    opacity: 0;
    transform: translateY(4px);
}

.movy-profile-quote.is-paused {
    display: none;
}

.movy-avatar-status {
    display: block;
    max-width: 150px;
    margin-top: 2px;
    overflow: hidden;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movy-avatar-status:empty {
    display: none;
}

.movy-avatar-status[data-state="success"] {
    color: #65d48a;
}

.movy-avatar-status[data-state="error"] {
    color: #ff7b83;
}

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

.movy-account-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.movy-account-name-row {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 5px;
}

.movy-account-name-row strong {
    min-width: 0;
}

.movy-name-edit-button,
.movy-name-action-button {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    color: rgba(255, 255, 255, .58);
    background: transparent;
    cursor: pointer;
    transition: color .18s ease, background .18s ease;
}

.movy-name-edit-button:hover,
.movy-name-edit-button:focus-visible,
.movy-name-action-button:hover,
.movy-name-action-button:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, .1);
    outline: none;
}

.movy-name-edit-button .icon-svg,
.movy-name-action-button .icon-svg {
    width: 13px;
    height: 13px;
}

.movy-name-edit-form {
    display: none;
    align-items: center;
    gap: 3px;
    width: 100%;
}

.movy-name-edit-form input {
    min-width: 0;
    width: 100%;
    height: 30px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 7px;
    color: #ffffff;
    background: rgba(0, 0, 0, .24);
    font: inherit;
    font-size: 12px;
    outline: none;
}

.movy-name-edit-form input:focus {
    border-color: rgba(255, 255, 255, .5);
}

.movy-account-info.is-editing-name .movy-account-name-row,
.movy-account-info.is-editing-name > small,
.movy-account-info.is-editing-name .movy-profile-quote,
.movy-account-info.is-editing-name .movy-avatar-status {
    display: none;
}

.movy-account-info.is-editing-name .movy-name-edit-form {
    display: flex;
}

.movy-name-edit-form.is-saving {
    opacity: .65;
}

.movy-name-status {
    display: block;
    max-width: 165px;
    margin-top: 2px;
    overflow: hidden;
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movy-name-status:empty {
    display: none;
}

.movy-name-status[data-state="success"] {
    color: #65d48a;
}

.movy-name-status[data-state="error"] {
    color: #ff7b83;
}

.movy-account-info strong {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movy-account-info small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}

.movy-account-menu.active {
    display: block;
    animation: movy-menu-in .18s ease-out;
}

.movy-main-nav.search-active ~ .movy-account-menu,
.movy-main-nav.search-active ~ .movy-nav-actions .movy-account-menu {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.movy-account-menu>a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 10px;
    color: #d4d5d9 !important;
    font-size: 14px;
    font-weight: 600;
    transition: all .18s ease;
}

.movy-account-menu>a:hover {
    color: #fff !important;
    background: rgba(255,255,255,.08);
}

.movy-account-menu>a .icon-svg {
    font-size: 16px;
    color: rgba(255,255,255,.7);
}

.movy-menu-divider {
    height: 1px;
    margin: 8px 0;
    background: rgba(255,255,255,.08);
}

.movy-ad-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    color: #d4d5d9;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.movy-ad-toggle span {
    display: flex;
    align-items: center;
    gap: 11px;
}

.movy-ad-toggle input {
    position: absolute;
    opacity: 0;
}

.movy-ad-toggle b {
    position: relative;
    width: 38px;
    height: 22px;
    border-radius: 99px;
    background: #454750;
    transition: background .2s ease;
}

.movy-ad-toggle b:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f5f5f6;
    transition: transform .2s ease,background .2s ease;
}

.movy-ad-toggle input:checked+b {
    background: #efeff0;
}

.movy-ad-toggle input:checked+b:after {
    background: #111216;
    transform: translateX(16px);
}

.movy-auth-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.movy-auth-actions button,
.movy-auth-actions a,
.movy-menu-wide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    border: 1px solid var(--movy-line);
    border-radius: 9px;
    color: #eeeef0;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.movy-auth-actions button:first-child,
.movy-auth-actions a:first-child {
    border-color: white;
    color: #111216;
    background: white;
}

.movy-auth-actions button:hover,
.movy-auth-actions a:hover,
.movy-auth-actions button:focus-visible,
.movy-auth-actions a:focus-visible {
    border-color: #ffffff;
    color: #111216;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
    transform: translateY(-2px);
    outline: none;
}

.movy-auth-actions button:first-child:hover,
.movy-auth-actions a:first-child:hover,
.movy-auth-actions button:first-child:focus-visible,
.movy-auth-actions a:first-child:focus-visible {
    border-color: var(--movy-accent);
    color: #ffffff;
    background: var(--movy-accent);
    box-shadow: 0 8px 22px rgba(229, 9, 47, .3);
}

.movy-auth-actions button:active,
.movy-auth-actions a:active {
    box-shadow: none;
    transform: translateY(0) scale(.97);
}

.movy-menu-wide {
    width: 100%;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.movy-menu-wide .icon-svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.movy-menu-wide:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #111216 !important;
}

.movy-empty-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: rgba(255, 255, 255, 0.4);
}

.movy-empty-icon-box .icon-svg {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.movy-menu-trigger {
    display: none !important;
}

.movy-home .mobile-nav,
.movy-inner .mobile-nav {
    display: none;
}

.movy-hero {
    position: relative;
    height: min(86dvh,880px);
    min-height: 650px;
    overflow: hidden;
    background: #0b0c0f;
}

.movy-hero>.swiper-wrapper {
    height: 100%;
}

.movy-hero-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.movy-hero-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transform: scale(1.01);
    pointer-events: none;
}

.movy-hero-slide.swiper-slide-active .movy-hero-backdrop {
    animation: movy-hero-scale 8s ease-out both;
}

.movy-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(7,8,11,.97) 0%,rgba(7,8,11,.74) 30%,rgba(7,8,11,.12) 67%,rgba(7,8,11,.22) 100%),linear-gradient(0deg,var(--movy-bg) 0%,rgba(7,8,11,.7) 10%,transparent 42%);
}

.movy-hero-content {
    position: absolute;
    z-index: 2;
    bottom: clamp(100px,15vh,155px);
    left: var(--movy-pad);
    width: min(550px,51vw);
}

.movy-hero-slide.swiper-slide-active .movy-hero-content>* {
    animation: movy-content-in .62s both;
}

.movy-hero-slide.swiper-slide-active .movy-hero-content>:nth-child(2) { animation-delay: .07s; }
.movy-hero-slide.swiper-slide-active .movy-hero-content>:nth-child(3) { animation-delay: .13s; }
.movy-hero-slide.swiper-slide-active .movy-hero-content>:nth-child(4) { animation-delay: .19s; }

.movy-hero-logo {
    width: min(360px,75%);
    max-height: 140px;
    margin-bottom: 20px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 5px 16px rgba(0,0,0,.45));
}

.movy-logo-invert {
    filter: brightness(0) invert(1) drop-shadow(0 5px 16px rgba(0,0,0,.5)) !important;
}

.movy-hero-content h1 {
    max-width: 650px;
    margin: 0 0 17px;
    color: #fff;
    font-size: clamp(50px,6.2vw,88px);
    line-height: .92;
    letter-spacing: -.055em;
}

.movy-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin-bottom: 13px;
    color: #c4c5ca;
    font-size: 12px;
    font-weight: 600;
}

.movy-hero-meta b {
    color: #ff3556;
}

.movy-hero-meta span:not(:first-of-type):before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0 10px 3px 0;
    border-radius: 50%;
    background: #73757d;
}

.movy-hero-meta i {
    color: #f6c453;
}

.movy-hero-content p {
    display: -webkit-box;
    max-width: 58ch;
    margin: 0 0 24px;
    overflow: hidden;
    color: #d1d2d6;
    font-size: 15px;
    line-height: 1.58;
    text-shadow: 0 2px 8px rgba(0,0,0,.7);
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.movy-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.movy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.01em;
    white-space: nowrap;
    transition: transform .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease;
}

.movy-button .icon-svg {
    font-size: 18px;
    flex-shrink: 0;
}

.movy-button:hover {
    transform: translateY(-2px) scale(1.02);
}

.movy-button:active {
    transform: scale(.98);
}

.movy-button-light {
    color: #0d0e12 !important;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(255,255,255,.2);
}

.movy-button-light:hover {
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(255,255,255,.32);
}

.movy-button-dark {
    border-color: rgba(255,255,255,.18);
    background: rgba(30,32,40,.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.movy-button-dark:hover {
    border-color: rgba(255,255,255,.3);
    background: rgba(50,53,65,.85);
}

.movy-hero-controls {
    position: absolute;
    z-index: 8;
    right: var(--movy-pad);
    bottom: 68px;
    display: flex;
    align-items: center;
}

.movy-hero-dots {
    position: static !important;
    display: flex;
    align-items: center;
    width: auto !important;
    transform: none !important;
}

.movy-hero-dots .swiper-pagination-bullet {
    width: 22px;
    height: 3px;
    margin: 0 3px !important;
    border-radius: 99px;
    background: #fff;
    opacity: .3;
    transition: width .22s ease,opacity .22s ease;
}

.movy-hero-dots .swiper-pagination-bullet-active {
    width: 31px;
    background: #fff;
    opacity: 1;
}

.movy-empty-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 73dvh;
    padding: 120px 20px 80px;
    text-align: center;
    background: radial-gradient(circle at 50% 30%,rgba(229,9,47,.15),transparent 35%),var(--movy-bg);
}

.movy-empty-hero>span {
    color: var(--movy-accent);
    font-size: 68px;
    font-weight: 900;
    font-style: italic;
}

.movy-empty-hero h1 {
    max-width: 720px;
    margin: 5px 0 14px;
    font-size: clamp(34px,6vw,64px);
    line-height: .96;
    letter-spacing: -.05em;
}

.movy-empty-hero p {
    max-width: 550px;
    margin-bottom: 22px;
    color: var(--movy-muted);
}

.movy-empty-hero button {
    min-height: 43px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    color: #111216;
    background: white;
    cursor: pointer;
    font-weight: 700;
}

.movy-catalog {
    position: relative;
    z-index: 6;
    margin-top: -52px;
    padding-bottom: 65px;
}

.movy-shelf {
    margin-bottom: 43px;
    padding: 0 var(--movy-pad);
}

.movy-shelf-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.movy-shelf-head h2 {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #f4f4f6;
    font-size: clamp(18px,2vw,23px);
    font-weight: 700;
    letter-spacing: -.02em;
}

.movy-shelf-head h2 .icon-svg {
    color: #686a73;
    font-size: 11px;
    transition: color .2s ease,transform .2s ease;
}

.movy-shelf-head:hover h2 .icon-svg {
    color: var(--movy-accent);
    transform: translateX(3px);
}

.movy-shelf-head p {
    margin: 4px 0 0;
    color: #747680;
    font-size: 11px;
}

.movy-see-all {
    flex: 0 0 auto;
    padding-bottom: 4px;
    color: #868892 !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.movy-see-all:hover {
    color: #fff !important;
}

.movy-slider-nav {
    position: absolute;
    z-index: 10;
    inset: 0;
    pointer-events: none;
}

.movy-slider-nav button {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.25s ease, color 0.2s ease, background 0.25s ease;
}

.movy-slider-nav button .icon-svg {
    font-size: 20px;
    stroke-width: 3.2px !important;
}

.movy-slider-nav button[data-row-prev] {
    left: 0;
    width: 48px;
    justify-content: flex-start;
    padding-left: 6px;
    background: linear-gradient(to right, var(--movy-bg, #07080b) 0%, rgba(7, 8, 11, 0.75) 50%, transparent 100%);
}

.movy-slider-nav button[data-row-next] {
    right: 0;
    width: 52px;
    justify-content: flex-end;
    padding-right: 6px;
    background: linear-gradient(to left, var(--movy-bg, #07080b) 0%, rgba(7, 8, 11, 0.75) 50%, transparent 100%);
}

.movy-slider-nav button:hover {
    color: var(--movy-accent, #e5092f);
}

.movy-slider-nav button.swiper-button-disabled,
.movy-slider-nav button:disabled {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.movy-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: -16px 0 -8px;
    padding: 16px 0 8px;
}

.movy-row .swiper-wrapper,
.movy-top-row .swiper-wrapper {
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
}

.movy-row .swiper-slide {
    width: clamp(245px,22vw,342px);
    height: auto;
}

.movy-row.swiper-grab-cursor,
.movy-top-row.swiper-grab-cursor {
    cursor: grab;
}

.movy-row.swiper-grab-cursor:active,
.movy-top-row.swiper-grab-cursor:active {
    cursor: grabbing;
}

.movy-ranked-row .swiper-slide {
    width: clamp(225px,20vw,305px);
}

.movy-card {
    position: relative;
    display: block;
    min-width: 0;
    color: #fff !important;
    scroll-snap-align: start;
    transition: transform .28s cubic-bezier(.2,.8,.2,1);
}

.movy-card:hover {
    z-index: 3;
    transform: translateY(-5px);
}

.movy-ranked-row .movy-card {
    padding-left: 30px;
}

.movy-card-visual {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--movy-radius);
    background: linear-gradient(145deg,#1d1f26,#101116);
    box-shadow: 0 9px 30px rgba(0,0,0,.2);
}

.movy-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .4s ease,transform .5s ease,filter .35s ease;
}

.movy-card-visual img.loaded {
    opacity: 1;
}

img.movy-card-logo {
    position: absolute !important;
    bottom: 8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    max-width: 82% !important;
    max-height: 42% !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 1 !important;
    z-index: 5 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.95)) !important;
    transition: transform 0.3s ease, filter 0.3s ease !important;
}

.movy-card:hover img.movy-card-logo,
.movy-top-card:hover img.movy-card-logo,
.m-card:hover img.movy-card-logo,
.rank-card:hover img.movy-card-logo {
    transform: translateX(-50%) scale(1.06) !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.98)) !important;
}

img.movy-card-logo.movy-logo-invert {
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.95)) !important;
}

.movy-card:hover img.movy-card-logo.movy-logo-invert,
.movy-top-card:hover img.movy-card-logo.movy-logo-invert,
.m-card:hover img.movy-card-logo.movy-logo-invert,
.rank-card:hover img.movy-card-logo.movy-logo-invert {
    transform: translateX(-50%) scale(1.06) !important;
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.98)) !important;
}

img.movy-featured-logo {
    display: block !important;
    width: auto !important;
    max-width: 220px !important;
    max-height: 60px !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 1 !important;
    margin-bottom: 8px !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.95)) !important;
}

img.movy-featured-logo.movy-logo-invert {
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.95)) !important;
}

.movy-card-visual .movy-fallback-image,
.movy-top-visual .movy-fallback-image,
.movy-cast-photo-wrap .movy-fallback-image,
.m-poster .movy-fallback-image,
.rank-poster .movy-fallback-image,
.movy-fallback-image,
img.fallback-active,
img[src*="picture-fallback.svg"] {
    opacity: 1;
    object-fit: cover;
    background-color: #121318;
}

.movy-card:hover .movy-card-visual .movy-fallback-image,
.movy-top-card:hover .movy-top-visual .movy-fallback-image,
.movy-cast-card:hover .movy-cast-photo-wrap .movy-fallback-image,
.movy-cast-card:hover .movy-cast-photo-wrap img.fallback-active,
.movy-cast-card:hover .movy-cast-photo-wrap img[src*="picture-fallback.svg"],
.m-card:hover .m-poster img.movy-fallback-image,
.rank-card:hover .rank-poster img.movy-fallback-image {
    filter: brightness(1.08);
    transform: scale(1.04);
}

.movy-card:hover .movy-card-visual img {
    filter: brightness(.72);
    transform: scale(1.055);
}

.movy-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(5,6,8,.57),transparent 48%);
    opacity: .35;
    transition: opacity .25s ease;
}

.movy-card:hover .movy-card-shade {
    opacity: 1;
}

.movy-play,
.m-play,
.sp-play {
    display: none !important;
}

.movy-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #111216;
    background: white;
    opacity: 0;
    transform: translate(-50%,-42%) scale(.82);
    transition: opacity .23s ease,transform .23s ease;
}

.movy-play .icon-svg {
    margin-left: 2px;
    font-size: 13px;
}

.movy-card:hover .movy-play {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}

.movy-badge {
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 3px 6px;
    border-radius: 4px;
    color: #fff;
    background: var(--movy-accent);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .08em;
}

.movy-collection-order {
    position: absolute;
    z-index: 6;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    min-height: 34px;
    padding: 7px 9px 6px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-left: 2px solid var(--movy-accent);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(8, 9, 12, .82);
    box-shadow: 0 7px 20px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.movy-collection-order small {
    align-self: center;
    color: rgba(255, 255, 255, .68);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.movy-collection-order strong {
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
}

.movy-collection-order em {
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
}

.movy-card:hover .movy-collection-order {
    border-color: rgba(255, 255, 255, .34);
    border-left-color: var(--movy-accent);
    background: rgba(8, 9, 12, .94);
    transform: translateY(-1px);
}

.netflix-badge-group {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.netflix-badge-red {
    background-color: #e50914;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    padding: 3px 8px;
    letter-spacing: -0.1px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 0;
}

.netflix-badge-group .netflix-badge-red:only-child {
    border-bottom-right-radius: 4px;
}

.netflix-badge-white {
    background-color: #ffffff;
    color: #141414;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    padding: 3px 8px;
    letter-spacing: -0.1px;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 0;
}

.netflix-badge-group .netflix-badge-white:only-child {
    border-bottom-left-radius: 4px;
}

.movy-ep-tag {
    color: #ff2a4b !important;
    font-weight: 700 !important;
}

.movy-card-copy {
    display: block;
    padding: 9px 2px 0;
}

.movy-card-copy strong {
    display: block;
    overflow: hidden;
    color: #eeeef0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movy-card-copy>span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    overflow: hidden;
    color: #747680;
    font-size: 9px;
    white-space: nowrap;
}

.movy-card-copy>span b {
    color: #9a9ca4;
    font-weight: 500;
}

.movy-card-copy>span b .icon-svg {
    color: #f6c453;
}

.movy-card-copy>span>em {
    color: #494b52;
    font-style: normal;
}

.movy-rank {
    position: absolute;
    z-index: -1;
    bottom: 33px;
    left: -6px;
    color: #1d1f25;
    font-size: 88px;
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.09em;
    -webkit-text-stroke: 1px #565862;
}

.movy-genres {
    display: grid;
    grid-template-columns: repeat(6,minmax(0,1fr));
    gap: 9px;
}

.movy-genres a {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 105px;
    overflow: hidden;
    padding: 13px;
    border: 1px solid var(--movy-line);
    border-radius: var(--movy-radius);
    color: #fff !important;
    background: #18191f;
    isolation: isolate;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.movy-genres a:before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: var(--genre-image);
    background-position: center;
    background-size: cover;
    filter: saturate(.72);
    transition: transform .45s ease;
}

.movy-genres a:after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: var(--genre-gradient, linear-gradient(135deg, rgba(var(--genre-rgb, 7, 8, 11), 0.92) 0%, rgba(var(--genre-rgb, 7, 8, 11), 0.55) 50%, rgba(7, 8, 11, 0.3) 100%));
    transition: background .4s ease;
}

.movy-genres a:hover {
    border-color: rgba(var(--genre-rgb, 255, 255, 255), 0.35);
}

.movy-genres a:hover:before {
    transform: scale(1.07);
}

.movy-genres strong {
    font-size: 13px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.movy-genres .icon-svg {
    color: rgba(255,255,255,.75);
    font-size: 11px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
}

.movy-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .58s ease,transform .58s ease;
}

.movy-reveal.visible {
    opacity: 1;
    transform: none;
}

.movy-search-inline-bar>.icon-svg {
    color: #8e919e;
    font-size: 16px;
    flex-shrink: 0;
}

.movy-search-inline-bar input {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
}

.movy-search-inline-bar input::placeholder {
    color: #787a86;
}

.movy-search-inline-bar .close-so {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #989aab;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: color .18s ease, background .18s ease;
}

.movy-search-inline-bar .close-so:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.movy-search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    min-width: 100%;
    max-height: 540px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(18, 19, 26, 0.96);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 999;
}

.movy-search-dropdown.has-results {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.movy-search-dropdown .movy-search-tabs {
    display: flex;
    gap: 8px;
    padding: 2px 2px 6px;
    flex-shrink: 0;
}

.movy-search-dropdown .movy-search-tabs button {
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #9194a2;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all .18s ease;
}

.movy-search-dropdown .movy-search-tabs button:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.movy-search-dropdown .movy-search-tabs button.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.28);
    font-weight: 700;
}

.movy-search-dropdown .so-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    max-height: 440px;
    padding-right: 4px;
}

.movy-search-dropdown .so-results::-webkit-scrollbar {
    width: 5px;
}

.movy-search-dropdown .so-results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

.movy-search-dropdown .movy-search-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease !important;
    text-decoration: none !important;
    color: #ffffff !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.movy-search-dropdown .movy-search-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    transform: none !important;
}

.movy-search-dropdown .movy-search-item img {
    width: 44px !important;
    height: 62px !important;
    min-width: 44px !important;
    min-height: 62px !important;
    max-width: 44px !important;
    max-height: 62px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.movy-search-dropdown .movy-search-item .si-info {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.movy-search-dropdown .movy-search-item .si-info strong {
    display: block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    margin: 0 0 3px 0 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.movy-search-dropdown .movy-search-item .si-info small {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    color: #8e91a0 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
}

.movy-search-dropdown .movy-search-item .si-info small b {
    color: #f6c453 !important;
    font-weight: 700 !important;
}

.movy-search-dropdown .movy-search-item .si-chevron {
    color: #6c6e7c !important;
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    transition: transform .18s ease, color .18s ease !important;
}

.movy-search-dropdown .movy-search-item:hover .si-chevron {
    color: #ffffff !important;
    transform: translateX(2px) !important;
}

.movy-search-shell .si-info small {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #8c8e9c !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

.movy-search-shell .si-info small b {
    color: #f6c453 !important;
    font-weight: 700 !important;
}

.movy-search-shell .search-item>.icon-svg {
    color: #6a6c78 !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    transition: transform .2s ease, color .2s ease !important;
}

.movy-search-shell .search-item:hover>.icon-svg {
    color: #ffffff !important;
    transform: translateX(3px) !important;
}

.movy-search-empty {
    padding: 40px 16px !important;
    color: #8c8e9c !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: center !important;
}

.movy-search-loading {
    display: grid !important;
    gap: 8px !important;
    padding: 8px 0 !important;
}

.movy-search-loading i {
    display: block !important;
    height: 64px !important;
    border-radius: 12px !important;
    background: linear-gradient(90deg,#202229 25%,#30323a 50%,#202229 75%) !important;
    background-size: 200% 100% !important;
    animation: movy-skeleton 1.25s infinite linear !important;
}

.movy-ui footer {
    padding: 55px var(--movy-pad) 38px !important;
    border-top: 1px solid var(--movy-line) !important;
    background: #08090c !important;
}

.movy-ui footer .container {
    width: 100% !important;
    max-width: 1200px !important;
}

.movy-ui footer .brand {
    color: #fff !important;
}

.movy-ui footer p {
    color: #656771 !important;
}

.movy-hero-labels {
    position: absolute;
    z-index: 5;
    right: var(--movy-pad);
    bottom: 110px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: min(620px, 48vw);
}

.movy-callout {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 36px;
    padding: 7px 14px 7px 10px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 999px;
    color: #f6f6f8;
    background: rgba(8,9,12,.78);
    box-shadow: 0 8px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    font-size: 12px;
    line-height: 1;
}

.movy-callout img {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    object-fit: contain;
}

.movy-callout strong {
    color: inherit;
    font-size: inherit;
    font-weight: 700;
    white-space: nowrap;
}

.movy-callout:hover {
    border-color: rgba(255,255,255,.14);
    background: rgba(19,20,25,.88);
}

.movy-top-heading>div:first-child {
    position: relative;
    padding-left: 12px;
}

.movy-top-heading>div:first-child:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    border-radius: 4px;
    background: var(--movy-accent);
}

.movy-top-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: -16px 0 -8px;
    padding: 16px 0 8px;
}

.movy-top-row .swiper-slide {
    width: clamp(145px,11.5vw,180px);
    height: auto;
}

.movy-top-row .movy-top-slide-featured {
    width: clamp(355px,31vw,485px);
}

.movy-top-card {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    color: #fff !important;
    transition: transform .28s cubic-bezier(.2,.8,.2,1);
}

.movy-top-card:hover {
    z-index: 4;
    transform: translateY(-5px);
}

.movy-top-featured {
    width: 100%;
}

.movy-top-visual {
    position: relative;
    display: block;
    height: clamp(205px,17vw,255px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 11px;
    background: linear-gradient(145deg,#1d1f26,#101116);
}

.movy-top-visual>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .4s ease,transform .5s ease,filter .3s ease;
}

.movy-top-visual>img.loaded {
    opacity: 1;
}

.movy-top-poster .movy-top-visual>img {
    object-position: center 20%;
}

.movy-top-card:hover .movy-top-visual>img {
    transform: scale(1.045);
    filter: brightness(.78);
}

.movy-top-badge {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 38px;
    border-radius: 0 0 8px 0;
    color: white;
    background: var(--movy-accent);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,.35);
}

.movy-top-badge small {
    font-size: 7px;
    letter-spacing: .05em;
    margin-bottom: 1px;
}

.movy-top-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 18px;
    background: linear-gradient(90deg,rgba(7,8,11,.92),rgba(7,8,11,.56) 62%,transparent),linear-gradient(0deg,rgba(7,8,11,.88),transparent 65%);
}

.movy-top-overlay strong {
    max-width: 65%;
    margin-bottom: 7px;
    font-size: clamp(21px,2.2vw,34px);
    line-height: .95;
    letter-spacing: -.04em;
}

.movy-top-overlay>span {
    display: -webkit-box;
    max-width: 72%;
    margin-bottom: 10px;
    overflow: hidden;
    color: #d0d1d5;
    font-size: 9px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.movy-top-overlay>b {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 7px;
    color: #101116;
    background: white;
    font-size: 9px;
}

.movy-top-poster .movy-play {
    opacity: 0;
}

.movy-top-poster:hover .movy-play {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}

.movy-top-copy {
    display: block;
    padding: 8px 2px 0;
}

.movy-top-copy>strong {
    display: block;
    overflow: hidden;
    color: #eeeef0;
    font-size: 11px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movy-top-copy>span {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    overflow: hidden;
    color: #6f717a;
    font-size: 8px;
    white-space: nowrap;
}

.movy-top-copy>span b {
    color: #a2a4ab;
    font-weight: 500;
}

.movy-top-copy>span b i {
    color: #f6c453;
}

.movy-top-copy>span>em {
    color: #484a51;
    font-style: normal;
}

@keyframes movy-menu-in {
    from { opacity: 0;transform: translateY(-7px) scale(.97); }
}

@keyframes movy-search-in {
    from { opacity: 0;transform: translateY(-12px) scale(.98); }
}

@keyframes movy-content-in {
    from { opacity: 0;transform: translateY(15px); }
    to { opacity: 1;transform: none; }
}

@keyframes movy-hero-scale {
    from { transform: scale(1.035); }
    to { transform: scale(1.005); }
}

@keyframes movy-skeleton {
    to { background-position: -200% 0; }
}

@media (max-width:1100px) {
    .movy-main-nav a span {
        display: none;
    }

    .movy-main-nav a {
        padding: 8px 12px;
    }

    .movy-brand strong {
        display: none;
    }

    .movy-genres {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}

@media (max-width:768px) {
    :root {
        --movy-pad: 16px;
        --movy-mobile-nav-height: 56px;
    }

    .movy-header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        height: calc(60px + env(safe-area-inset-top, 0px)) !important;
        padding: env(safe-area-inset-top, 0px) 16px 0 !important;
        background: transparent !important;
        border: 0 !important;
        z-index: 100;
        pointer-events: none;
    }

    .movy-nav-shell {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 100% !important;
        padding: 0 !important;
    }

    .movy-header .movy-brand {
        display: inline-flex !important;
        pointer-events: auto;
    }

    .movy-brand-desktop {
        display: none !important;
    }

    .movy-brand-mobile {
        display: inline-block !important;
    }

    .movy-menu-trigger {
        display: none !important;
    }

    .movy-nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        pointer-events: auto !important;
    }

    .movy-nav-actions .movy-icon-button {
        width: 36px;
        height: 36px;
    }

    .mobile-nav button.m-nav-item {
        background: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
        font-family: inherit;
    }

    .movy-main-nav.search-active {
        position: fixed !important;
        top: calc(env(safe-area-inset-top, 0px) + 8px) !important;
        left: max(12px, env(safe-area-inset-left, 0px)) !important;
        right: max(12px, env(safe-area-inset-right, 0px)) !important;
        width: auto !important;
        min-width: 0 !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        grid-template-columns: none !important;
        padding: 4px 8px !important;
        border-radius: 999px !important;
        background: rgba(16, 17, 23, 0.96) !important;
        border: 1px solid rgba(255, 255, 255, 0.22) !important;
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(28px) !important;
        -webkit-backdrop-filter: blur(28px) !important;
        box-sizing: border-box !important;
        z-index: 1010 !important;
        pointer-events: auto !important;
    }

    .movy-main-nav.search-active .movy-search-inline-bar {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 100% !important;
        padding: 0 8px !important;
        align-items: center !important;
        gap: 10px !important;
        box-sizing: border-box !important;
    }

    .movy-main-nav.search-active .movy-search-inline-bar input {
        min-width: 0 !important;
    }

    .movy-main-nav.search-active .movy-account-wrap {
        display: none !important;
    }

    .movy-main-nav.search-active .movy-search-dropdown {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        max-height: calc(100dvh - env(safe-area-inset-top, 0px) - 76px) !important;
        z-index: 1009 !important;
        background: rgba(16, 17, 23, 0.98) !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        border-radius: 18px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9) !important;
        box-sizing: border-box !important;
    }

    .movy-main-nav {
        position: absolute;
        top: calc(100% + 6px);
        right: 16px;
        left: 16px;
        display: none;
        grid-template-columns: repeat(2,1fr);
        padding: 7px;
        background: rgba(20,21,26,.98);
        pointer-events: auto;
    }

    .movy-main-nav.active {
        display: grid;
    }

    .movy-main-nav a {
        justify-content: center;
    }

    .movy-main-nav a span {
        display: inline;
    }

    .movy-home .mobile-nav,
    .movy-inner .mobile-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        z-index: 999;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: start;
        justify-content: initial;
        width: 100%;
        max-width: none;
        height: calc(var(--movy-mobile-nav-height) + env(safe-area-inset-bottom, 0px));
        padding: 0 env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
        background: linear-gradient(180deg, rgba(14, 14, 17, 0.98), rgba(6, 6, 8, 0.99));
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.025);
        backdrop-filter: blur(18px) saturate(125%);
        -webkit-backdrop-filter: blur(18px) saturate(125%);
        box-sizing: border-box;
    }

    .mobile-nav .m-nav-item {
        position: relative;
        display: flex;
        flex: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        width: 100%;
        min-width: 0;
        height: var(--movy-mobile-nav-height);
        padding: 0 2px;
        color: rgba(255, 255, 255, 0.58) !important;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 0.01em;
        text-decoration: none;
        transition: color 0.18s ease, transform 0.18s ease;
        box-sizing: border-box;
    }

    .mobile-nav .m-nav-item span {
        margin-top: 0;
        color: rgba(255, 255, 255, 0.58) !important;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 0.01em;
        transition: color 0.18s ease;
    }

    .mobile-nav .m-nav-item .icon-svg {
        color: #ffffff;
        font-size: 20px;
        fill: currentColor;
        stroke: currentColor;
        stroke-width: 1.6;
        opacity: .5;
        transition: color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
    }

    .mobile-nav .m-nav-item:hover,
    .mobile-nav .m-nav-item.active {
        color: #ffffff !important;
        font-weight: 400;
    }

    .mobile-nav .m-nav-item:hover span,
    .mobile-nav .m-nav-item.active span {
        color: #ffffff !important;
    }

    .mobile-nav .m-nav-item:hover .icon-svg,
    .mobile-nav .m-nav-item.active .icon-svg {
        color: #e5092f !important;
        opacity: 1;
        transform: translateY(-1px) scale(1.05);
    }

    .mobile-nav .m-nav-item.active:after {
        content: '';
        position: absolute;
        bottom: 1px;
        width: 18px;
        height: 2px;
        border-radius: 2px 2px 0 0;
        background: #e5092f;
        box-shadow: 0 0 10px rgba(229, 9, 47, 0.55);
    }

    .mobile-nav .m-nav-item.m-nav-telegram,
    .mobile-nav .m-nav-item.m-nav-telegram:hover,
    .mobile-nav .m-nav-item.m-nav-telegram.active {
        color: rgba(255, 255, 255, 0.58) !important;
        font-weight: 400;
    }

    .mobile-nav .m-nav-item.m-nav-telegram:hover span,
    .mobile-nav .m-nav-item.m-nav-telegram.active span {
        color: #ffffff !important;
    }

    .mobile-nav .m-nav-item.m-nav-telegram .icon-svg {
        color: #ffffff !important;
        opacity: .5;
    }

    .mobile-nav .m-nav-item.m-nav-telegram:hover .icon-svg,
    .mobile-nav .m-nav-item.m-nav-telegram.active .icon-svg {
        color: #ffffff !important;
        opacity: 1;
    }

    .movy-hero {
        height: 76dvh;
        min-height: 610px;
    }

    .movy-hero-backdrop {
        object-position: 65% center;
    }

    .movy-hero-shade {
        background: linear-gradient(90deg,rgba(7,8,11,.6),rgba(7,8,11,.13)),linear-gradient(0deg,var(--movy-bg) 0%,rgba(7,8,11,.9) 24%,transparent 68%);
    }

    .movy-hero-content {
        right: var(--movy-pad);
        bottom: 68px;
        width: auto;
    }

    .movy-hero-logo {
        width: min(260px,68vw);
        max-height: 95px;
        margin-bottom: 15px;
    }

    .movy-hero-content h1 {
        font-size: clamp(40px,13vw,61px);
    }

    .movy-hero-content p {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }

    .movy-button {
        min-height: 41px;
        padding: 0 14px;
        font-size: 12px;
    }

    .movy-hero-labels {
        top: 66px !important;
        right: 16px !important;
        left: auto !important;
        bottom: auto !important;
        max-width: none;
        justify-content: flex-end;
        gap: 6px;
    }

    .movy-hero-labels .movy-callout:not(.movy-callout-top) {
        display: none !important;
    }

    .movy-callout {
        min-height: 32px;
        padding: 6px 10px 6px 7px;
        gap: 6px;
        font-size: 10px;
    }

    .movy-callout img {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .movy-hero-controls {
        right: 16px;
        bottom: 18px;
        gap: 5px;
    }

    .movy-hero-dots .swiper-pagination-bullet {
        width: 14px;
        margin: 0 2px !important;
    }

    .movy-hero-dots .swiper-pagination-bullet-active {
        width: 22px;
    }

    .movy-top-row .swiper-slide {
        width: 42vw;
    }

    .movy-top-row .movy-top-slide-featured {
        width: 82vw;
    }

    .movy-top-visual {
        height: 220px;
    }

    .movy-top-overlay {
        padding: 15px;
    }

    .movy-top-overlay strong {
        font-size: 26px;
    }

    .movy-top-overlay>span {
        max-width: 82%;
    }

    .movy-catalog {
        margin-top: -30px;
        padding-bottom: 90px;
    }

    .movy-shelf {
        margin-bottom: 35px;
    }

    .movy-row-actions {
        display: none;
    }

    .movy-row .swiper-slide {
        width: 76vw;
    }

    .movy-ranked-row .swiper-slide {
        width: 60vw;
    }

    .movy-genres {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .movy-genres a {
        min-height: 98px;
    }

    .movy-account-menu {
        position: fixed;
        top: 66px;
        right: 10px;
        left: 10px;
        width: auto;
    }

    .search-overlay-v4 {
        padding: 68px 12px 12px !important;
    }

    .movy-search-shell {
        width: 100% !important;
        max-width: 100% !important;
        max-height: calc(100dvh - 80px) !important;
    }

    .movy-ui footer {
        padding-bottom: 110px !important;
    }
}

@media (max-width:430px) {
    .movy-button-dark i {
        display: none;
    }

    .movy-ranked-row .swiper-slide {
        width: 66vw;
    }

    .movy-genres strong {
        font-size: 12px;
    }

    .movy-search-shell .search-item {
        grid-template-columns: 43px 1fr auto;
    }

    .movy-search-shell .search-item img {
        width: 43px !important;
        height: 57px !important;
    }
}

@media (prefers-reduced-motion:reduce) {
    .movy-ui *,
    .movy-ui *:before,
    .movy-ui *:after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media (prefers-reduced-transparency:reduce) {
    .movy-header.scrolled,
    .movy-main-nav,
    .movy-account-menu,
    .movy-search-shell,
    .movy-button-dark {
        backdrop-filter: none;
        background: #15161b !important;
    }
}

/* Browse Page (Filmes / Séries) */
.movy-browse-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 80px;
}

.movy-top-red-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 550px;
    background: radial-gradient(ellipse 75% 50% at 50% 0%, rgba(180, 20, 35, 0.25) 0%, rgba(110, 10, 20, 0.08) 55%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.movy-browse-hero {
    position: relative;
    width: 100%;
    min-height: 260px;
    padding: 105px var(--movy-pad) 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    margin-bottom: 24px;
}

.movy-browse-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.movy-browse-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.55;
    filter: brightness(0.9);
}

.movy-browse-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 8, 11, 0.4) 0%, rgba(7, 8, 11, 0.85) 65%, #07080b 100%),
                linear-gradient(90deg, rgba(7, 8, 11, 0.75) 0%, transparent 70%);
}

.movy-browse-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.movy-browse-hero-title-wrap {
    display: inline-flex;
    align-items: stretch;
    gap: 16px;
    position: relative;
}

.movy-browse-hero-title-bar {
    background: linear-gradient(180deg, #ff2a4b 0%, #e5092f 100%);
    opacity: 0;
    transform-origin: top center;
    flex-shrink: 0;
    width: 4px;
    min-height: 100%;
    border-radius: 4px;
    transform: scaleY(0);
    animation: movy-bar-scale 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 0 14px rgba(229, 9, 47, 0.6);
}

.movy-browse-hero-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.movy-browse-title-mask {
    overflow: hidden;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.movy-browse-title-mask h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -1.2px;
    margin: 0;
    color: #ffffff;
    line-height: 1.1;
    opacity: 0;
    transform: translateX(-100%);
    animation: movy-title-slide 0.6s 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes movy-bar-scale {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes movy-title-slide {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes movy-text-fade {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.movy-browse-hero-content p {
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(8px);
    animation: movy-text-fade 0.5s 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.movy-browse-body {
    padding: 0 var(--movy-pad);
}

.movy-browse-section {
    margin-bottom: 36px;
}

.movy-browse-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.movy-browse-section-head h2 {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.movy-browse-trending-swiper {
    position: relative;
    overflow: hidden;
    margin: -16px 0 -8px;
    padding: 16px 0 8px;
}

.movy-browse-trending-swiper .swiper-wrapper {
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
}

.movy-browse-trending-swiper .swiper-slide {
    width: 280px !important;
}

@media (max-width: 768px) {
    .movy-browse-trending-swiper .swiper-slide {
        width: 220px !important;
    }
}

.movy-poster-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: transform 0.22s ease;
}

.movy-poster-card:hover {
    transform: translateY(-4px);
}

.movy-poster-card .mpc-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 14px;
    overflow: hidden;
    background: #15161b;
    margin-bottom: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.movy-poster-card .mpc-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.movy-poster-card:hover .mpc-visual img {
    transform: scale(1.05);
}

.movy-poster-card .mpc-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.movy-poster-card:hover .mpc-shade {
    opacity: 0.9;
}

.movy-poster-card .mpc-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movy-poster-card .mpc-play .icon-svg {
    width: 36px;
    height: 36px;
    padding: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.movy-poster-card:hover .mpc-play {
    opacity: 1;
    transform: scale(1);
}

.movy-poster-card .mpc-copy strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 3px;
}

.movy-poster-card .mpc-copy span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #8e91a0;
    font-size: 11.5px;
    font-weight: 500;
}

.movy-poster-card .mpc-copy span b {
    color: #f6c453;
}

.movy-poster-card .mpc-copy span em {
    font-style: normal;
    opacity: 0.4;
}

/* Filter Bar Pills & Popovers */
.movy-browse-filters {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.movy-browse-filter-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
}

.movy-filter-pill-wrap {
    position: relative;
}

.movy-filter-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    height: 33px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: #1e2128;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    user-select: none;
}

.movy-filter-pill:hover,
.movy-filter-pill.active {
    color: #ffffff;
    background: #282c35;
    border-color: rgba(255, 255, 255, 0.16);
}

.movy-filter-pill .movy-pill-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e5092f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    margin-left: 2px;
    flex-shrink: 0;
}

.movy-filter-pill .icon-svg {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.2s ease, color 0.2s ease;
}

.movy-filter-pill.active .icon-svg {
    transform: rotate(180deg);
    color: #ffffff;
}

.movy-filter-reset {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    margin-left: 4px;
    transition: color 0.15s ease;
    text-decoration: none;
}

.movy-filter-reset:hover {
    color: #ffffff;
}

.movy-filter-popover {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 1050;
    display: none;
    min-width: 180px;
    max-height: 360px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: #171920;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.movy-filter-popover::-webkit-scrollbar {
    width: 4px;
}

.movy-filter-popover::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

.movy-filter-popover.popover-right {
    left: auto;
    right: 0;
}

.movy-filter-popover.popover-grid {
    display: none;
    width: 320px;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.movy-filter-popover.popover-grid-3 {
    display: none;
    width: 310px;
    max-height: 300px;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.movy-filter-popover.popover-list-simple {
    padding: 6px;
    min-width: 175px;
    background: #171920;
}

.movy-filter-popover.popover-list-simple .movy-popover-item {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    user-select: none;
    text-decoration: none !important;
    margin-bottom: 2px;
}

.movy-filter-popover.popover-list-simple .movy-popover-item:last-child {
    margin-bottom: 0;
}

.movy-filter-popover.popover-list-simple .movy-popover-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.movy-filter-popover.popover-list-simple .movy-popover-item.active {
    background: #282c35;
    color: #ffffff;
    font-weight: 700;
}

.movy-filter-popover.active {
    display: block !important;
    animation: movy-menu-in 0.18s ease-out;
}

.movy-filter-popover.popover-grid.active,
.movy-filter-popover.popover-grid-3.active {
    display: grid !important;
}

.movy-popover-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    user-select: none;
    text-decoration: none !important;
}

.movy-popover-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.movy-popover-item.active {
    background: #282c35;
    color: #ffffff;
    font-weight: 700;
}

.movy-popover-item .item-check {
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    background: transparent;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.movy-popover-item.active .item-check {
    background: #e5092f;
    border-color: #e5092f;
}

.movy-popover-item .item-check .icon-svg {
    font-size: 10px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.movy-popover-item.active .item-check .icon-svg {
    opacity: 1;
}

.movy-popover-item .item-check {
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    background: transparent;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.movy-popover-item.active .item-check {
    background: var(--movy-accent, #e5092f);
    border-color: var(--movy-accent, #e5092f);
}

.movy-popover-item .item-check .icon-svg {
    font-size: 11px;
    color: #ffffff;
    opacity: 0;
}

.movy-popover-item.active .item-check .icon-svg {
    opacity: 1;
}

.movy-browse-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 16px;
    padding-top: 14px;
    margin-top: -14px;
    padding-bottom: 14px;
    margin-bottom: -14px;
}

@media (max-width: 1280px) {
    .movy-browse-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .movy-browse-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .movy-poster-card {
        flex: 0 0 135px;
        width: 135px;
    }
}

@media (max-width: 600px) {
    .movy-browse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 10px;
    }
    .movy-poster-card {
        flex: 0 0 120px;
        width: 120px;
    }
}

.movy-serie-page {
    width: 100%;
    min-height: 100vh;
    background: #05070a;
    color: #ffffff;
}

.movy-serie-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    height: 72vh;
    max-height: 700px;
    background: #05070a;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.movy-serie-backdrop-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.movy-serie-backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 1.2s ease;
}

.movy-serie-hero.trailer-active .movy-serie-backdrop-img {
    opacity: 0.35;
    filter: brightness(0.7);
    transform: scale(1.03);
}

.movy-serie-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none !important;
    background: 
        radial-gradient(circle at 75% 30%, transparent 10%, rgba(5, 7, 10, 0.45) 55%, #05070a 100%),
        linear-gradient(to top, #05070a 0%, rgba(5, 7, 10, 0.85) 45%, transparent 100%),
        linear-gradient(to right, #05070a 0%, rgba(5, 7, 10, 0.9) 35%, transparent 75%);
}

.movy-serie-top-bar {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1760px;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(20px, 3.5vw, 50px);
    box-sizing: border-box;
    pointer-events: none;
}

.movy-top-controls-group {
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.movy-serie-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20, 22, 28, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85) !important;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none !important;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.movy-serie-top-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.06);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.movy-serie-top-btn.active {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(239, 68, 68, 0.45);
    color: #ff334b !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), 0 0 10px rgba(239, 68, 68, 0.15);
}

.movy-serie-top-btn.active:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(239, 68, 68, 0.65);
    color: #ff4d61 !important;
}

.movy-volume-control-wrap {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.movy-serie-hero.trailer-active .movy-volume-control-wrap {
    display: inline-flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

.movy-volume-popover {
    position: absolute;
    top: calc(100% + 10px);
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-6px) scale(0.95);
    z-index: 35;
    background: rgba(14, 16, 22, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 14px 0 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s ease;
    pointer-events: none;
}

.movy-volume-popover::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.movy-volume-popover::after {
    content: '';
    position: absolute;
    top: -5px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 5px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    background: rgba(255, 255, 255, 0.14);
}

.movy-volume-control-wrap:hover .movy-volume-popover,
.movy-volume-control-wrap:focus-within .movy-volume-popover,
.movy-volume-control-wrap.is-dragging .movy-volume-popover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.movy-vol-track-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    width: 40px;
    padding: 8px 0;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.movy-vol-track {
    position: relative;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    flex-shrink: 0;
}

.movy-vol-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 99px;
    background: #ffffff;
    height: 0%;
    pointer-events: none;
}

.movy-vol-thumb {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 0%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
    transition: transform 0.12s ease;
    pointer-events: none;
}

.movy-vol-track-wrap:hover .movy-vol-thumb,
.movy-volume-control-wrap.is-dragging .movy-vol-thumb {
    transform: translate(-50%, 50%) scale(1.25);
}

.movy-serie-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3.5vw, 50px) 40px;
}

.movy-serie-hero-stack {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.movy-serie-title-box {
    margin-bottom: 14px;
}

.movy-serie-title-img {
    max-width: 320px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left bottom;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.65));
}

.movy-serie-title-text {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
    margin: 0;
}

.movy-serie-meta-collapse {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.movy-serie-meta-facts {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.movy-serie-score {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 800;
    color: #ffcc00;
}

.movy-serie-votes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.movy-serie-vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.movy-serie-vote-btn:hover,
.movy-serie-vote-btn.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.movy-serie-dot {
    color: rgba(255, 255, 255, 0.35);
}

.movy-serie-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
}

.movy-serie-genres {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.movy-serie-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 680px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movy-serie-cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.movy-serie-btn-play {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 48px !important;
    padding: 0 28px !important;
    border-radius: 9999px !important;
    background: #ffffff !important;
    color: #05070a !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    text-decoration: none !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3) !important;
    box-sizing: border-box !important;
}

.movy-serie-btn-play:hover {
    background: #ffffff !important;
    transform: translateY(-2px) scale(1.04) !important;
    color: #05070a !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.35) !important;
}

.movy-serie-btn-play svg {
    width: 18px !important;
    height: 18px !important;
    fill: #05070a !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.movy-serie-btn-play:hover svg {
    transform: scale(1.15) translateX(2px) !important;
}

.movy-serie-btn-list {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    height: 48px !important;
    padding: 0 26px !important;
    border-radius: 9999px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25) !important;
    position: relative !important;
    overflow: hidden !important;
}

.movy-serie-btn-list::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.movy-serie-btn-list:hover::before {
    opacity: 1;
}

.movy-serie-btn-list:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.movy-serie-btn-list:active {
    transform: translateY(0) scale(0.98) !important;
}

.movy-serie-btn-list.active {
    background: rgba(34, 197, 94, 0.22) !important;
    border-color: rgba(34, 197, 94, 0.55) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.25), 0 0 15px rgba(34, 197, 94, 0.15) !important;
}

.movy-serie-btn-list svg {
    width: 17px !important;
    height: 17px !important;
    stroke: currentColor !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.movy-serie-btn-list:hover svg {
    transform: scale(1.2) rotate(90deg);
}

.movy-serie-btn-list.active:hover svg {
    transform: scale(1.2) rotate(0deg);
}

.movy-serie-body {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    padding: 40px clamp(20px, 3.5vw, 50px) 80px;
    box-sizing: border-box;
}

.movy-section-title-bar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.movy-section-accent {
    width: 3px;
    height: 24px;
    background: var(--movy-accent, #e5092f);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 3px;
}

.movy-section-title-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.movy-section-title-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 4px 0 0;
}

.movy-episodes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.movy-episodes-left {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.movy-season-header-wrap {
    display: flex;
    align-items: stretch;
    gap: 12px;
    position: relative;
}

.movy-season-red-bar {
    width: 3px;
    background: #e5092f;
    border-radius: 2px;
    flex-shrink: 0;
}

.movy-season-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.movy-season-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
    line-height: 1.1;
}

.movy-season-dropdown-btn:hover {
    color: rgba(255, 255, 255, 0.85);
}

.movy-season-dropdown-btn #seasonDropdownIcon {
    transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.movy-season-dropdown-btn.active #seasonDropdownIcon {
    transform: rotate(180deg);
}

.movy-episodes-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin: 0;
}

.movy-season-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 155px;
    width: max-content;
    background: #191b22;
    border-radius: 14px;
    z-index: 1000;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85), 0 0 1px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    padding: 6px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.22s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.22s ease;
}

.movy-season-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.movy-season-menu-scroll {
    max-height: 235px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
    padding-right: 2px;
}

.movy-season-menu-scroll::-webkit-scrollbar {
    width: 4px;
    display: block;
}

.movy-season-menu-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.movy-season-menu-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
}

.movy-season-menu-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.45);
}

.movy-season-item {
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    font-weight: 600;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
    white-space: nowrap;
}

.movy-season-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.movy-season-item.active {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-weight: 700;
}

.movy-episodes-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.movy-ep-search-wrap {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transform: scale(0.95);
    transition: max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.movy-ep-search-wrap.active {
    max-width: 260px;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.movy-ep-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    pointer-events: none;
}

.movy-ep-search-icon .icon-svg {
    width: 15px !important;
    height: 15px !important;
    stroke: currentColor !important;
}

.movy-ep-search-input {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 0 34px 0 36px;
    height: 40px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    width: 220px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.movy-ep-search-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.movy-ep-search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 0;
}

.movy-ep-search-clear:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.movy-ctrl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    padding: 0;
}

.movy-ctrl-btn.hidden,
.movy-episodes-controls.is-searching #btnSearchEp {
    display: none !important;
}

.movy-ctrl-btn:hover,
.movy-ctrl-btn.active {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
}

.movy-view-pill {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    box-sizing: border-box;
    gap: 2px;
}

.movy-view-opt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.movy-view-opt:hover {
    color: rgba(255, 255, 255, 0.85);
}

.movy-view-opt.active {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.movy-view-opt .icon-svg {
    width: 16px !important;
    height: 16px !important;
    stroke: currentColor !important;
}

.swiper-episodes-wrap {
    position: relative;
    width: 100%;
}

.swiper-episodes-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60px;
    background: linear-gradient(to right, #05070a 0%, transparent 100%);
    z-index: 8;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-episodes-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 70px;
    background: linear-gradient(to left, #05070a 0%, transparent 100%);
    z-index: 8;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-episodes-wrap.has-left-shadow::before {
    opacity: 1;
}

.swiper-episodes-wrap.has-right-shadow::after {
    opacity: 1;
}

.swiper-episodes {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -14px;
    padding-top: 14px;
    padding-bottom: 20px;
}

.swiper-episodes:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: 16px;
    overflow-x: auto;
}

.swiper-episodes:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 280px;
    width: 280px;
}

.swiper-slide-ep {
    height: auto;
}

.movy-ep-card-hero {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #12141a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: flex-end !important;
    padding: 16px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.movy-ep-card-hero:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

.movy-ep-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}

.movy-ep-card-hero:hover .movy-ep-card-bg {
    transform: scale(1.06);
}

.movy-ep-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.15) 100%);
}

.movy-ep-card-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: auto;
}

.movy-ep-card-num {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.movy-ep-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movy-ep-card-desc {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
    margin: 2px 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movy-ep-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.movy-ep-next,
.movy-ep-prev,
.movy-ep-slider-next,
.movy-ep-slider-prev {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    z-index: 10 !important;
    border: none !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: opacity 0.25s ease, color 0.2s ease, background 0.25s ease !important;
    opacity: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.movy-ep-next .icon-svg,
.movy-ep-prev .icon-svg,
.movy-ep-slider-next .icon-svg,
.movy-ep-slider-prev .icon-svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 3.2px !important;
}

.movy-ep-next::after,
.movy-ep-prev::after,
.movy-ep-slider-next::after,
.movy-ep-slider-prev::after {
    display: none !important;
    content: "" !important;
}

.movy-ep-prev,
.movy-ep-slider-prev {
    left: 0 !important;
    width: 50px !important;
    justify-content: flex-start !important;
    padding-left: 6px !important;
    background: linear-gradient(to right, #05070a 0%, rgba(5, 7, 10, 0.75) 50%, transparent 100%) !important;
}

.movy-ep-next,
.movy-ep-slider-next {
    right: 0 !important;
    width: 55px !important;
    justify-content: flex-end !important;
    padding-right: 6px !important;
    background: linear-gradient(to left, #05070a 0%, rgba(5, 7, 10, 0.75) 50%, transparent 100%) !important;
}

.movy-ep-next:hover,
.movy-ep-prev:hover,
.movy-ep-slider-next:hover,
.movy-ep-slider-prev:hover {
    color: var(--movy-accent, #e5092f) !important;
}

.swiper-button-disabled {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@keyframes movyEpFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.movy-ep-fade-up {
    animation: movyEpFadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.movy-view-fade-in {
    animation: movyViewFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes movyViewFadeIn {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ep-view-slide,
.ep-view-list {
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.season-episodes {
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.movy-ep-card-hero,
.movy-ep-list-item {
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.movy-sorting-anim .swiper-slide-ep,
.movy-sorting-anim .movy-ep-list-item {
    animation: movySortFade 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes movySortFade {
    0% {
        opacity: 0.2;
        transform: scale(0.97) translateY(4px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.movy-ep-list-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.movy-ep-list-scroll {
    max-height: 560px;
    overflow-y: auto;
    scrollbar-width: none;
    padding-bottom: 44px;
    scroll-behavior: smooth;
}

.movy-ep-list-scroll::-webkit-scrollbar {
    display: none;
}

.movy-ep-list-vignette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to top, #05070a 0%, rgba(5, 7, 10, 0.85) 50%, transparent 100%);
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.movy-ep-list-vignette.scrolled-end {
    opacity: 0.15;
}

.movy-ep-scroll-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 6px 16px;
}

.movy-ep-scroll-btn:hover {
    color: #ffffff;
}

.movy-ep-scroll-btn svg {
    width: 14px;
    height: 14px;
}

.movy-ep-list-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.movy-ep-list-item {
    background: rgba(18, 20, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.movy-ep-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateX(3px);
}

.movy-ep-list-thumb {
    width: 170px;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #14161c;
}

.movy-ep-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movy-ep-list-rating {
    position: absolute;
    bottom: 6px;
    left: 6px;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 2px 6px;
    border-radius: 4px;
}

.movy-ep-list-rating svg {
    width: 10px;
    height: 10px;
    color: #ffcc00;
}

.movy-ep-list-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.movy-ep-list-num {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.movy-ep-list-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movy-ep-list-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movy-ep-list-dur {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.movy-ep-list-dl {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.movy-ep-list-dl:hover {
    background: #ffcc00;
    color: #000000;
    border-color: #ffcc00;
}

.movy-ep-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.movy-ep-num {
    font-size: 11px;
    font-weight: 800;
    color: var(--movy-accent, #e5092f);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 3px;
}

.movy-ep-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.movy-ep-card:hover .movy-ep-title {
    color: var(--movy-accent, #e5092f);
}

.movy-ep-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movy-ep-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.movy-ep-dur {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.movy-ep-rating {
    color: rgba(255, 204, 0, 0.9);
}

.swiper-cast-wrap {
    position: relative;
    width: 100%;
}

.swiper-cast-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    background: linear-gradient(to right, #05070a 0%, transparent 100%);
    z-index: 8;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-cast-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 60px;
    background: linear-gradient(to left, #05070a 0%, transparent 100%);
    z-index: 8;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-cast-wrap.has-left-shadow::before {
    opacity: 1;
}

.swiper-cast-wrap.has-right-shadow::after {
    opacity: 1;
}

.swiper-cast {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -14px;
    padding-top: 14px;
    margin-bottom: -14px;
    padding-bottom: 14px;
}

.swiper-cast .swiper-wrapper {
    align-items: flex-start;
    padding-top: 6px;
}

.swiper-slide-cast {
    width: 135px !important;
    flex: 0 0 135px !important;
    height: auto;
}

.movy-cast-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.movy-cast-card:hover {
    transform: translateY(-6px);
}

.movy-cast-photo-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: #14161c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.movy-cast-card:hover .movy-cast-photo-wrap {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75), 0 0 18px rgba(229, 9, 47, 0.2);
}

.movy-cast-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s ease;
}

.movy-cast-card:hover .movy-cast-photo-wrap img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.movy-cast-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.movy-cast-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.movy-cast-card:hover .movy-cast-name {
    color: var(--movy-accent, #e5092f);
    text-shadow: 0 0 10px rgba(229, 9, 47, 0.3);
}

.movy-cast-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    transition: color 0.2s ease;
}

.movy-cast-card:hover .movy-cast-role {
    color: rgba(255, 255, 255, 0.85);
}

.movy-cast-next,
.movy-cast-prev {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    z-index: 10 !important;
    border: none !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: opacity 0.25s ease, color 0.2s ease !important;
    opacity: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.movy-cast-next.swiper-button-disabled,
.movy-cast-prev.swiper-button-disabled,
.movy-cast-next.swiper-button-lock,
.movy-cast-prev.swiper-button-lock {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.movy-cast-next .icon-svg,
.movy-cast-prev .icon-svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 3.2px !important;
}

.movy-cast-prev {
    left: 0 !important;
    width: 45px !important;
    justify-content: flex-start !important;
    padding-left: 4px !important;
    background: linear-gradient(to right, #05070a 0%, rgba(5, 7, 10, 0.75) 50%, transparent 100%) !important;
}

.movy-cast-next {
    right: 0 !important;
    width: 50px !important;
    justify-content: flex-end !important;
    padding-right: 4px !important;
    background: linear-gradient(to left, #05070a 0%, rgba(5, 7, 10, 0.75) 50%, transparent 100%) !important;
}

.movy-cast-next:hover,
.movy-cast-prev:hover {
    color: var(--movy-accent, #e5092f) !important;
}

.movy-hero-trailer-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none !important;
    user-select: none;
}

.movy-hero-trailer-wrap.active {
    opacity: 1;
}

.movy-hero-trailer-wrap iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.45);
    pointer-events: none !important;
    border: none;
    user-select: none;
}

.movy-hero-trailer-shield {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: transparent;
    pointer-events: auto !important;
}

.movy-ep-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.movy-ep-row::-webkit-scrollbar {
    display: none;
}

.movy-ep-row .movy-ep-card {
    flex: 0 0 290px;
    width: 290px;
}

.movy-ep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    padding-bottom: 16px;
}

.movy-player-m {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 7, 10, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: none;
    flex-direction: column;
}

.movy-player-h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: rgba(18, 20, 25, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.movy-h-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.movy-close-b {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.2s ease;
}

.movy-close-b:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.movy-cur-t {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.movy-h-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.movy-h-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.movy-h-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.movy-h-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.movy-ifr-h {
    flex: 1;
    width: 100%;
    height: calc(100vh - 65px);
    background: #000000;
}

.movy-ifr-h iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .movy-serie-hero {
        height: 60vh;
        min-height: 420px;
    }
    .movy-serie-hero-content {
        padding-bottom: 25px;
    }
    .movy-serie-top-bar {
        top: 80px;
    }
    .movy-episodes-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

.v-c4-main {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3.5vw, 50px);
    box-sizing: border-box;
}

/* ============================================================
   RESPONSIVIDADE GLOBAL — BREAKPOINTS CONSOLIDADOS
   ============================================================ */

/* 1280px — telas intermediárias e laptops pequenos */
@media (max-width: 1280px) {
    .movy-hero {
        height: min(82dvh, 820px);
        min-height: 600px;
    }
    .movy-hero-content {
        width: min(500px, 54vw);
    }
    .movy-serie-hero {
        height: 68vh;
    }
    .movy-genres {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 1024px — tablets landscape e laptops antigos */
@media (max-width: 1024px) {
    .movy-hero {
        height: min(80dvh, 780px);
        min-height: 540px;
    }
    .movy-hero-content {
        width: min(480px, 62vw);
    }
    .movy-hero-content h1 {
        font-size: clamp(42px, 7vw, 68px);
    }
    .movy-serie-hero {
        height: 65vh;
        min-height: 480px;
    }
    .movy-serie-hero-stack {
        max-width: 540px;
    }
    .movy-serie-title-img {
        max-width: 260px;
        max-height: 85px;
    }
    .movy-serie-btn-play,
    .movy-serie-btn-list {
        height: 44px !important;
        font-size: 14px !important;
        padding: 0 22px !important;
    }
    .movy-browse-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .movy-genres {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .movy-row .swiper-slide {
        width: clamp(200px, 30vw, 300px);
    }
    .movy-top-row .swiper-slide {
        width: clamp(130px, 14vw, 165px);
    }
    .movy-top-row .movy-top-slide-featured {
        width: clamp(300px, 36vw, 440px);
    }
    .movy-episodes-header {
        gap: 12px;
    }
    .movy-ep-search-wrap.active {
        max-width: 200px;
    }
    .movy-serie-body {
        padding: 32px clamp(16px, 2.5vw, 40px) 60px;
    }
    .movy-browse-hero {
        padding-top: 90px;
    }
}

/* 768px — tablets e telas menores */
@media (max-width: 768px) {
    .movy-serie-hero {
        height: 58vh;
        min-height: 400px;
        max-height: none;
    }
    .movy-serie-top-bar {
        top: 14px;
        padding: 0 16px;
    }
    .movy-serie-hero-content {
        padding: 0 16px 20px;
    }
    .movy-serie-hero-stack {
        max-width: 100%;
    }
    .movy-serie-title-img {
        max-width: 200px;
        max-height: 70px;
    }
    .movy-serie-title-text {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }
    .movy-serie-meta-facts {
        font-size: 13px;
        gap: 8px;
    }
    .movy-serie-desc {
        font-size: 13px;
        -webkit-line-clamp: 2;
        max-width: 100%;
    }
    .movy-serie-btn-play,
    .movy-serie-btn-list {
        height: 42px !important;
        font-size: 13px !important;
        padding: 0 18px !important;
    }
    .movy-serie-cta-row {
        gap: 8px;
    }
    .movy-serie-body {
        padding: 24px 16px 72px;
    }
    .movy-section-title-text h2 {
        font-size: 18px;
    }
    .movy-episodes-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .movy-episodes-controls {
        width: 100%;
        flex-wrap: wrap;
    }
    .movy-ep-search-wrap.active {
        max-width: 100%;
        width: 100%;
        flex: 1;
    }
    .movy-ep-search-input {
        width: 100%;
    }
    .movy-season-dropdown-btn {
        font-size: 20px;
    }
    .movy-browse-hero {
        padding: 80px 16px 20px;
        min-height: 200px;
    }
    .movy-browse-title-mask h1 {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }
    .movy-browse-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .movy-browse-filter-group {
        gap: 6px;
    }
    .movy-filter-pill {
        height: 30px;
        font-size: 12px;
        padding: 5px 12px;
    }
    .movy-browse-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 10px;
    }
    .movy-browse-section-head h2 {
        font-size: 16px;
    }
    .movy-ep-list-scroll {
        max-height: 420px;
    }
    .movy-player-h {
        padding: 10px 14px;
    }
    .movy-h-btn span {
        display: none;
    }
    .movy-h-btn {
        padding: 7px 10px;
    }
    .movy-cur-t {
        font-size: 13px;
    }
    .movy-close-b {
        width: 32px;
        height: 32px;
    }
    .movy-ifr-h {
        height: calc(100vh - 55px);
    }
    .movy-ui footer {
        padding-bottom: 76px !important;
    }
    .movy-shelf {
        margin-bottom: 30px;
    }
}

/* 480px — smartphones maiores */
@media (max-width: 480px) {
    .movy-serie-hero {
        height: 54vh;
        min-height: 360px;
    }
    .movy-serie-title-img {
        max-width: 160px;
        max-height: 58px;
    }
    .movy-serie-title-text {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .movy-serie-desc {
        display: none;
    }
    .movy-serie-meta-facts {
        font-size: 12px;
        gap: 6px;
    }
    .movy-serie-btn-play,
    .movy-serie-btn-list {
        height: 40px !important;
        font-size: 13px !important;
        padding: 0 16px !important;
    }
    .movy-serie-votes {
        display: none;
    }
    .movy-browse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 8px;
    }
    .movy-browse-hero {
        padding: 72px 14px 16px;
    }
    .movy-browse-title-mask h1 {
        font-size: clamp(1.6rem, 7.5vw, 2rem);
    }
    .movy-genres {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .movy-genres a {
        min-height: 82px;
        padding: 10px;
    }
    .movy-genres strong {
        font-size: 12px;
    }
    .movy-row .swiper-slide {
        width: 74vw;
    }
    .movy-top-row .swiper-slide {
        width: 40vw;
    }
    .movy-top-row .movy-top-slide-featured {
        width: 80vw;
    }
    .movy-top-visual {
        height: 190px;
    }
    .movy-ep-search-input {
        font-size: 13px;
    }
    .movy-ctrl-btn {
        width: 36px;
        height: 36px;
    }
    .movy-view-pill {
        height: 36px;
    }
    .movy-view-opt {
        width: 30px;
        height: 30px;
    }
    .movy-season-dropdown-btn {
        font-size: 18px;
    }
    .movy-section-title-text h2 {
        font-size: 16px;
    }
    .movy-section-title-text p {
        font-size: 12px;
    }
    .movy-filter-pill {
        height: 28px;
        font-size: 11.5px;
        padding: 4px 10px;
    }
    .movy-ep-list-scroll {
        max-height: 340px;
    }
}

/* 380px — telas muito pequenas (iPhone SE, Galaxy A etc.) */
@media (max-width: 380px) {
    .movy-serie-hero {
        height: 52vh;
        min-height: 330px;
    }
    .movy-serie-btn-play span,
    .movy-serie-btn-list span {
        display: none;
    }
    .movy-serie-cta-row {
        gap: 6px;
    }
    .movy-browse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 6px;
    }
    .movy-top-row .swiper-slide {
        width: 44vw;
    }
    .movy-top-row .movy-top-slide-featured {
        width: 86vw;
    }
    .movy-hero-content h1 {
        font-size: clamp(34px, 11vw, 50px);
    }
    .movy-button {
        min-height: 38px;
        font-size: 12px;
        padding: 0 13px;
        gap: 7px;
    }
    .movy-hero-meta {
        font-size: 10px;
        gap: 5px 8px;
    }
}
