/*
Theme layer: Modern 2026 UX
Purpose: visual refresh without changing URLs, Rank Math output, or server-rendered content.
*/

:root {
  --movh-bg: #050506;
  --movh-surface: #0d0f13;
  --movh-surface-2: #12151b;
  --movh-surface-3: #191d25;
  --movh-border: rgb(255 255 255 / .1);
  --movh-border-strong: rgb(229 9 20 / .42);
  --movh-text: #edf5ff;
  --movh-muted: #a7adb8;
  --movh-blue: #e50914;
  --movh-cyan: #ff3040;
  --movh-green: #ff6b73;
  --movh-amber: #fbbf24;
  --movh-danger: #ff3040;
  --movh-red: #e50914;
  --movh-red-soft: rgb(229 9 20 / .16);
  --movh-red-border: rgb(229 9 20 / .36);
  --movh-red-hover: #ff2533;
  --movh-radius: 8px;
  --movh-shadow: 0 18px 42px rgb(0 0 0 / .42);
  --movh-shadow-soft: 0 10px 28px rgb(0 0 0 / .32);
}

/* Modern featured recommendation slider */
.movh-featured-slider {
  background:
    radial-gradient(circle at 78% 18%, rgb(229 9 20 / .22), transparent 30%),
    linear-gradient(180deg, #07080c, #030406) !important;
  border-bottom: 1px solid rgb(229 9 20 / .24);
  box-shadow: inset 0 -1px 0 rgb(255 255 255 / .04), 0 26px 70px rgb(0 0 0 / .42);
  min-height: clamp(29rem, 42vw, 39rem);
  overflow: hidden;
  padding: 0 !important;
  position: relative;
  text-align: left !important;
}

.movh-featured-stage {
  inset: 0;
  min-height: inherit;
  position: absolute;
}

.movh-featured-slide {
  background:
    linear-gradient(90deg, rgb(3 5 9 / .96) 0%, rgb(3 5 9 / .78) 42%, rgb(3 5 9 / .28) 100%),
    linear-gradient(0deg, rgb(3 5 9 / .96) 0%, rgb(3 5 9 / .36) 48%, rgb(3 5 9 / .72) 100%),
    var(--movh-slide-image, none),
    #07080c;
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity .55s ease, visibility .55s ease;
  visibility: hidden;
}

.movh-featured-slide::before {
  background:
    linear-gradient(90deg, rgb(229 9 20 / .7), transparent),
    rgb(255 255 255 / .08);
  content: "";
  height: 3px;
  left: max(1rem, calc((100% - 80rem) / 2));
  position: absolute;
  right: max(1rem, calc((100% - 80rem) / 2));
  top: 0;
  z-index: 1;
}

.movh-featured-slide::after {
  background:
    radial-gradient(circle at 78% 26%, rgb(229 9 20 / .24), transparent 28%),
    linear-gradient(0deg, rgb(3 5 9 / .66), transparent 38%);
  content: "";
  inset: 0;
  position: absolute;
}

.movh-featured-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.movh-featured-slide-inner {
  align-items: center;
  box-sizing: border-box;
  display: grid;
  gap: clamp(1rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 18rem);
  margin: 0 auto;
  min-height: inherit;
  padding: clamp(3.2rem, 5vw, 5rem) clamp(1rem, 3vw, 2rem) 7.2rem;
  position: relative;
  width: min(100%, 80rem);
  z-index: 2;
}

.movh-featured-copy {
  max-width: 52rem;
}

.movh-featured-kicker {
  color: #ff8a92;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1.1;
  margin: 0 0 .62rem;
  text-transform: uppercase;
}

.movh-featured-title {
  color: #fff !important;
  font-size: clamp(2.35rem, 5.3vw, 5.5rem) !important;
  font-weight: 950 !important;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 15ch;
  text-shadow: 0 16px 42px rgb(0 0 0 / .72);
}

.movh-featured-title a {
  color: inherit !important;
}

.movh-featured-meta,
.movh-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.movh-featured-meta {
  margin-top: 1rem;
}

.movh-featured-meta span {
  background: rgb(255 255 255 / .11);
  border: 1px solid rgb(255 255 255 / .16);
  border-radius: 999px;
  color: #fff;
  font-size: .82rem;
  font-weight: 850;
  line-height: 1;
  padding: .52rem .7rem;
}

.movh-featured-desc {
  color: #dbe4ef;
  font-size: clamp(.98rem, 1.25vw, 1.12rem);
  font-weight: 750;
  line-height: 1.75;
  margin: 1rem 0 0;
  max-width: 44rem;
  text-shadow: 0 8px 24px rgb(0 0 0 / .7);
}

.movh-featured-actions {
  gap: .75rem;
  margin-top: 1.18rem;
}

.movh-featured-watch,
.movh-featured-browse {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: .96rem;
  font-weight: 950;
  justify-content: center;
  min-height: 3.08rem;
  padding: .82rem 1.12rem;
}

.movh-featured-watch {
  background: var(--movh-red);
  box-shadow: 0 18px 38px rgb(229 9 20 / .3);
  color: #fff !important;
}

.movh-featured-watch:hover,
.movh-featured-watch:focus-visible {
  background: var(--movh-red-hover);
  color: #fff !important;
}

.movh-featured-browse {
  background: rgb(255 255 255 / .1);
  border: 1px solid rgb(255 255 255 / .16);
  color: #fff !important;
}

.movh-featured-poster {
  align-self: center;
  border: 1px solid rgb(255 255 255 / .16);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgb(0 0 0 / .54);
  justify-self: end;
  max-width: 18rem;
  overflow: hidden;
  transform: rotate(1deg);
  width: 100%;
}

.movh-featured-poster img {
  aspect-ratio: 2 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.movh-featured-controls {
  align-items: center;
  bottom: 1.35rem;
  display: flex;
  gap: .65rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 4;
}

.movh-featured-arrow,
.movh-featured-dot,
.movh-featured-thumb {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.movh-featured-arrow {
  align-items: center;
  background: rgb(255 255 255 / .1);
  border: 1px solid rgb(255 255 255 / .16);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 2.7rem;
  justify-content: center;
  width: 2.7rem;
}

.movh-featured-arrow span {
  font-size: 1.75rem;
  line-height: 1;
  transform: translateY(-1px);
}

.movh-featured-arrow:hover,
.movh-featured-arrow:focus-visible,
.movh-featured-dot:hover,
.movh-featured-dot:focus-visible {
  background: rgb(229 9 20 / .32);
  border-color: rgb(229 9 20 / .48);
}

.movh-featured-dots {
  align-items: center;
  display: flex;
  gap: .45rem;
}

.movh-featured-dot {
  background: rgb(255 255 255 / .28);
  border-radius: 999px;
  height: .48rem;
  padding: 0;
  transition: background-color .2s ease, width .2s ease;
  width: .48rem;
}

.movh-featured-dot.is-active {
  background: var(--movh-red);
  width: 2rem;
}

.movh-featured-thumbs {
  bottom: 1.2rem;
  display: grid;
  gap: .65rem;
  grid-auto-columns: minmax(7.2rem, 8.8rem);
  grid-auto-flow: column;
  max-width: min(44vw, 34rem);
  overflow: hidden;
  position: absolute;
  right: max(1rem, calc((100% - 80rem) / 2 + 2rem));
  z-index: 4;
}

.movh-featured-thumb {
  align-items: center;
  background: rgb(255 255 255 / .09);
  border: 1px solid rgb(255 255 255 / .14);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: .5rem;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  min-height: 3.4rem;
  padding: .42rem;
  text-align: left;
}

.movh-featured-thumb.is-active {
  background: rgb(229 9 20 / .2);
  border-color: rgb(229 9 20 / .52);
}

.movh-featured-thumb img {
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  width: 2.4rem;
}

.movh-featured-thumb span {
  display: -webkit-box;
  font-size: .76rem;
  font-weight: 850;
  line-height: 1.25;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 1023px) {
  .movh-featured-slide-inner {
    grid-template-columns: minmax(0, 1fr) minmax(9.5rem, 13rem);
    padding-bottom: 6.8rem;
  }

  .movh-featured-thumbs {
    display: none;
  }
}

@media (max-width: 767px) {
  .movh-featured-slider {
    min-height: 36rem;
  }

  .movh-featured-slide {
    background:
      linear-gradient(0deg, rgb(3 5 9 / .98) 0%, rgb(3 5 9 / .86) 50%, rgb(3 5 9 / .28) 100%),
      var(--movh-slide-image, none),
      #07080c;
    background-position: center top;
    background-size: cover;
  }

  .movh-featured-slide-inner {
    align-content: end;
    display: grid;
    grid-template-columns: 1fr;
    padding: 11.5rem 1rem 5.6rem;
  }

  .movh-featured-copy {
    max-width: 100%;
  }

  .movh-featured-title {
    font-size: clamp(2rem, 10vw, 3.2rem) !important;
    max-width: 12ch;
  }

  .movh-featured-desc {
    display: -webkit-box;
    font-size: .92rem;
    line-height: 1.6;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .movh-featured-poster {
    display: none;
  }

  .movh-featured-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .movh-featured-watch,
  .movh-featured-browse {
    min-height: 2.8rem;
    padding-left: .72rem;
    padding-right: .72rem;
  }

  .movh-featured-controls {
    bottom: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, #0a0a0d 0%, #050506 44%, #030304 100%) !important;
  color: var(--movh-text);
  text-rendering: optimizeLegibility;
}

a,
button,
input {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--movh-cyan);
  outline-offset: 3px;
}

.screen-reader-text,
.skip-link {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  white-space: nowrap;
  width: 1px;
}

.skip-link:focus,
.skip-link:focus-visible {
  clip: auto;
  clip-path: none;
  background: #f8fafc;
  border: 2px solid var(--movh-cyan);
  border-radius: var(--movh-radius);
  box-shadow: 0 12px 28px rgb(0 0 0 / .35);
  color: #0f172a;
  font-weight: 800;
  height: auto;
  left: 1rem;
  line-height: 1.2;
  padding: .8rem 1rem;
  top: 1rem;
  width: auto;
  z-index: 100000;
}

.movh-page {
  min-height: 100vh;
}

.movh-site-header {
  align-items: center;
  background: rgb(13 19 29 / .92);
  border: 1px solid var(--movh-border);
  border-radius: 0 0 var(--movh-radius) var(--movh-radius);
  box-shadow: var(--movh-shadow-soft);
  gap: 1rem;
}

.movh-brand-column {
  display: flex;
  justify-content: center;
}

.movh-logo {
  width: 150px;
}

.movh-logo img,
.custom-logo {
  border-radius: var(--movh-radius);
  max-height: 68px;
  object-fit: contain;
  width: auto;
}

.movh-site-tagline {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  margin: .35rem 0;
}

.movh-header-copy {
  color: var(--movh-muted);
}

.movh-nav {
  backdrop-filter: blur(16px);
  background: rgb(9 13 20 / .88) !important;
  border-color: var(--movh-border) !important;
}

.movh-nav-inner {
  gap: .85rem;
  min-height: 4rem;
}

@media (min-width: 768px) {
  .movh-nav-inner {
    justify-content: center !important;
  }

  .movh-menu-wrap {
    justify-content: center !important;
    order: 1 !important;
    width: 100% !important;
  }

  .movh-menu-wrap #primary-menu {
    justify-content: center;
    width: 100%;
  }

  .movh-search-wrap {
    justify-content: center !important;
    margin-top: .35rem !important;
    order: 2 !important;
    width: 100% !important;
  }

  .movh-search-wrap > div {
    width: min(100%, 38rem);
  }

  .movh-search-form {
    width: 100%;
  }
}

.movh-icon-btn {
  align-items: center;
  background: rgb(255 255 255 / .06);
  border: 1px solid var(--movh-border);
  color: var(--movh-text) !important;
  height: 2.75rem;
  justify-content: center;
  width: 2.75rem;
}

.movh-menu-wrap #primary-menu {
  gap: .45rem;
}

.movh-menu-wrap a {
  border-radius: 999px;
  color: #dbeafe;
  display: inline-flex;
  font-size: .95rem;
  line-height: 1;
  padding: .75rem .95rem;
  transition: background-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.movh-menu-wrap a:hover,
.movh-menu-wrap a:focus-visible {
  background: rgb(79 140 255 / .15);
  box-shadow: inset 0 0 0 1px rgb(125 211 252 / .24);
  color: #fff;
}

.movh-search-form {
  background: rgb(255 255 255 / .06);
  border: 1px solid var(--movh-border);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .05);
  gap: .45rem;
  padding: .35rem;
  width: min(100%, 26rem);
}

.movh-search-field input {
  background: transparent;
  border: 0;
  color: var(--movh-text);
  min-height: 2.45rem;
  padding: 0 .9rem;
  text-align: left;
  width: 100%;
}

.movh-search-field input::placeholder {
  color: #8aa0ba;
}

.movh-search-submit {
  background: var(--movh-blue);
  border: 0 !important;
  color: #fff;
  min-height: 2.45rem;
  padding-left: .95rem;
  padding-right: .95rem;
  white-space: nowrap;
}

.movh-search-submit:hover,
.movh-search-submit:focus-visible {
  background: #3b82f6;
}

.movh-home-intro {
  background: #111827 !important;
  border-bottom: 1px solid var(--movh-border);
}

.movh-shell {
  padding-left: .75rem;
  padding-right: .75rem;
}

.movh-content-shell {
  background: rgb(13 19 29 / .96) !important;
  border: 1px solid var(--movh-border);
  border-radius: var(--movh-radius) !important;
  box-shadow: var(--movh-shadow);
}

.movh-main {
  min-width: 0;
}

.movh-left-sidebar,
.movh-right-sidebar {
  min-width: 0;
}

.movh-page-title {
  color: #fff !important;
  font-size: 1.55rem !important;
  font-weight: 850 !important;
  letter-spacing: 0;
  line-height: 1.25;
}

.movh-single-title-wrap,
.movh-archive-hero {
  background: rgb(16 23 34 / .82);
  border: 1px solid var(--movh-border);
  border-radius: var(--movh-radius);
  padding: 1rem;
}

.movh-kicker {
  color: var(--movh-cyan);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: .35rem;
  text-transform: uppercase;
}

.movh-archive-lead {
  color: var(--movh-muted);
  line-height: 1.75;
  margin-top: .65rem;
  max-width: 58rem;
}

.movh-archive-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .85rem;
}

.movh-archive-stats span {
  background: rgb(255 255 255 / .06);
  border: 1px solid var(--movh-border);
  border-radius: 999px;
  color: #dbeafe;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  padding: .5rem .65rem;
}

.movh-series-hero,
.movh-movie-hero {
  overflow: hidden;
  position: relative;
}

.movh-series-hero::after,
.movh-movie-hero::after {
  background: linear-gradient(90deg, rgb(34 211 238 / .22), rgb(79 140 255 / .05));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.movh-movie-hero::after {
  background: linear-gradient(90deg, rgb(245 158 11 / .24), rgb(34 211 238 / .08));
}

.movh-section {
  margin-bottom: 1.5rem;
}

.movh-section-title,
.widget-title {
  align-items: center;
  background:
    linear-gradient(90deg, rgb(34 211 238 / .12), rgb(255 255 255 / .035) 42%, rgb(255 255 255 / .015));
  border: 1px solid var(--movh-border) !important;
  border-radius: var(--movh-radius);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .04);
  color: #fff !important;
  display: flex;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  gap: .7rem;
  justify-content: flex-start;
  line-height: 1.3;
  margin-bottom: 1rem !important;
  min-height: 3.2rem;
  padding: .7rem .9rem !important;
  text-align: left;
}

.movh-section-title::before,
.widget-title::before {
  background: linear-gradient(180deg, var(--movh-cyan), var(--movh-blue));
  border-radius: 999px;
  box-shadow: 0 0 16px rgb(34 211 238 / .28);
  content: "";
  display: block;
  flex: 0 0 .32rem;
  height: 1.55rem;
}

.widget-title {
  background:
    linear-gradient(90deg, rgb(79 140 255 / .13), rgb(255 255 255 / .035) 48%, rgb(255 255 255 / .015));
  font-size: 1rem !important;
  margin-bottom: .85rem !important;
  min-height: 3rem;
}

.widget-title::before {
  background: linear-gradient(180deg, var(--movh-cyan), var(--movh-green));
  height: 1.35rem;
}

.movh-section-title a {
  color: inherit;
}

.movh-section-title--with-action {
  flex-wrap: nowrap;
}

.movh-section-heading-link {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movh-section-more {
  align-items: center;
  background: rgb(255 255 255 / .07);
  border: 1px solid rgb(125 211 252 / .2);
  border-radius: 999px;
  color: #dbeafe !important;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  margin-left: auto;
  min-height: 2rem;
  padding: .5rem .72rem;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
  white-space: nowrap;
}

.movh-section-more:hover,
.movh-section-more:focus-visible {
  background: rgb(34 211 238 / .16);
  border-color: rgb(34 211 238 / .44);
  color: #fff !important;
}

.movh-card-grid {
  gap: .8rem !important;
}

.movh-card {
  background: rgb(16 23 34 / .9);
  border: 1px solid var(--movh-border);
  border-radius: var(--movh-radius);
  box-shadow: 0 10px 28px rgb(0 0 0 / .22);
  contain: layout paint;
  overflow: hidden;
  transform: translateZ(0);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.movh-card:hover,
.movh-card:focus-within {
  border-color: var(--movh-border-strong);
  box-shadow: 0 16px 34px rgb(0 0 0 / .34);
  transform: translateY(-2px);
}

.movh-card.hover\:scale-110:hover {
  transform: translateY(-2px) !important;
}

.movh-card-poster {
  aspect-ratio: 2 / 3;
  background: #0d1320;
  overflow: hidden;
}

.movh-card-poster a {
  display: block;
  height: 100%;
}

.post-list.movh-card img {
  aspect-ratio: 2 / 3;
  border-radius: 0 !important;
  height: 100% !important;
  object-fit: cover;
  width: 100%;
}

.movh-card-body {
  min-height: 4.8rem;
  padding: .7rem .65rem .75rem;
}

.movh-card.recomment .movh-card-body {
  min-height: 6rem;
}

.movh-card-title {
  color: #e7f0ff !important;
  display: -webkit-box;
  font-size: .92rem !important;
  line-height: 1.35;
  min-height: 2.5rem;
}

.movh-card-meta {
  align-items: center;
  color: var(--movh-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: .73rem;
  gap: .35rem;
  justify-content: center;
  margin-top: .45rem;
}

.movh-card-meta span {
  background: rgb(255 255 255 / .06);
  border: 1px solid rgb(255 255 255 / .08);
  border-radius: 999px;
  line-height: 1;
  padding: .3rem .45rem;
}

.badge-lang,
.uni-recomment-badge > span {
  background: linear-gradient(180deg, rgb(15 23 42 / .92), rgb(7 10 16 / .92));
  border: 1px solid rgb(251 191 36 / .42);
  border-radius: 999px !important;
  box-shadow: 0 8px 18px rgb(0 0 0 / .34), inset 0 1px 0 rgb(255 255 255 / .08);
}

.uni-recomment-badge {
  bottom: .42rem !important;
  left: auto !important;
  max-width: calc(100% - .84rem);
  right: .42rem;
  z-index: 3;
}

.uni-recomment-badge > span {
  align-items: center;
  display: inline-flex !important;
  justify-content: center;
  line-height: 1;
  margin: 0 !important;
  min-height: 1.75rem;
  padding: .28rem .48rem !important;
}

.uni-recomment-badge span,
.uni-recomment-badge div {
  align-items: center;
}

.uni-recomment-badge svg {
  flex: 0 0 auto;
  height: 1rem !important;
  margin-right: .12rem;
  width: 1rem !important;
}

.uni-recomment-badge p,
.uni-recomment-badge .text-sm {
  color: #f8fafc !important;
  font-size: .85rem !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.movh-detail-panel,
.movh-summary-card,
.movh-trailer-card,
.movh-player-shell,
.movh-episode-panel,
.archive-desc-wrap,
.movh-sidebar .widget {
  background: rgb(16 23 34 / .92) !important;
  border: 1px solid var(--movh-border) !important;
  border-radius: var(--movh-radius) !important;
  box-shadow: var(--movh-shadow-soft);
}

.movh-detail-panel {
  background:
    linear-gradient(135deg, rgb(15 23 42 / .95), rgb(11 18 29 / .96)) !important;
  overflow: hidden;
  padding: .85rem;
  position: relative;
}

.movh-detail-panel::before {
  background: linear-gradient(90deg, rgb(34 211 238 / .24), rgb(79 140 255 / .08), rgb(255 255 255 / 0));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.movh-detail-grid {
  align-items: stretch;
  gap: .7rem !important;
}

.movh-detail-pill {
  align-items: center;
  background:
    linear-gradient(180deg, rgb(255 255 255 / .06), rgb(255 255 255 / .035));
  border: 1px solid rgb(148 163 184 / .14);
  border-radius: var(--movh-radius);
  display: flex;
  justify-content: center;
  min-height: 4.05rem;
  overflow: hidden;
  padding: .72rem .82rem;
  position: relative;
  width: 100%;
}

.movh-detail-pill::after {
  display: none;
}

.movh-detail-pill > div {
  align-items: flex-start !important;
  display: flex;
  flex-direction: column !important;
  gap: .28rem;
  justify-content: center !important;
  min-width: 0;
  width: 100%;
}

.movh-detail-pill .w-1.h-1 {
  display: none;
}

.movh-detail-pill > div > span:first-child:not(.inline-block) {
  color: #9fb1c7 !important;
  display: block;
  font-size: .76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0;
  line-height: 1.15;
  width: 100%;
}

.movh-detail-pill > div > span:last-child,
.movh-detail-pill > div > span:last-child a,
.movh-detail-pill time {
  color: #f8fafc !important;
  display: inline-block;
  font-size: 1rem !important;
  font-weight: 850 !important;
  line-height: 1.25;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.movh-detail-pill a {
  color: inherit !important;
  text-decoration: none;
}

.movh-detail-pill .inline-block {
  align-items: center;
  background: #facc15;
  border: 1px solid rgb(250 204 21 / .34);
  border-radius: 6px;
  display: inline-flex !important;
  flex: 0 0 auto;
  padding: .18rem .3rem;
}

.movh-detail-pill img {
  display: block;
}

.movh-detail-pill p {
  color: #fff !important;
  font-size: 1.1rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.movh-detail-rating {
  background:
    linear-gradient(180deg, rgb(250 204 21 / .09), rgb(255 255 255 / .035));
  border-color: rgb(250 204 21 / .2);
}

.movh-detail-rating > div {
  align-items: center !important;
  flex-direction: row !important;
  gap: .55rem;
  justify-content: flex-start !important;
}

.movh-detail-rating p {
  font-size: 1.28rem !important;
}

/* Compact detail chips */
.movh-detail-panel {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}

.movh-detail-panel::before {
  display: none;
}

.movh-detail-panel > .my-4:first-child {
  margin-bottom: .8rem !important;
  margin-top: 0 !important;
}

.movh-detail-grid {
  align-items: center;
  display: flex !important;
  flex-wrap: wrap;
  gap: .5rem !important;
}

.movh-detail-pill {
  background: rgb(255 255 255 / .055);
  border: 1px solid rgb(148 163 184 / .16);
  border-radius: 999px;
  box-shadow: none !important;
  justify-content: flex-start;
  min-height: 2.45rem;
  padding: .42rem .64rem;
  width: auto !important;
}

.movh-detail-pill > div {
  align-items: center !important;
  display: flex;
  flex-direction: row !important;
  gap: .38rem;
  justify-content: flex-start !important;
  min-width: 0;
  width: auto;
}

.movh-detail-pill > div > span:first-child:not(.inline-block) {
  color: #9fb1c7 !important;
  flex: 0 0 auto;
  font-size: .78rem !important;
  line-height: 1;
  width: auto;
}

.movh-detail-pill > div > span:last-child,
.movh-detail-pill > div > span:last-child a,
.movh-detail-pill time {
  color: #f8fafc !important;
  display: inline-block;
  font-size: .92rem !important;
  font-weight: 850 !important;
  line-height: 1.05;
  max-width: min(15rem, 58vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movh-detail-rating {
  background: rgb(250 204 21 / .08);
  border-color: rgb(250 204 21 / .24);
}

.movh-detail-rating p {
  font-size: 1rem !important;
}

.movh-trailer-card {
  overflow: hidden;
}

.movh-panel-heading {
  background: rgb(9 13 20 / .7) !important;
  border-color: var(--movh-border) !important;
}

.movh-panel-heading h2 {
  color: #fff !important;
  font-size: 1rem !important;
}

.movh-trailer-poster img {
  aspect-ratio: 2 / 3;
  height: auto;
  max-height: 26rem;
  object-fit: cover;
}

.movh-trailer-frame iframe {
  aspect-ratio: 16 / 9;
  background: #020617;
  height: auto !important;
  min-height: 13rem;
}

.movh-player-shell {
  overflow: hidden;
  position: relative;
}

.movh-video-frame {
  aspect-ratio: 16 / 9;
  background: #020617;
  border-radius: var(--movh-radius);
  height: auto !important;
  min-height: 13rem;
}

#uni-video #video_player {
  background: #020617;
  border-radius: var(--movh-radius);
  overflow: hidden;
}

#uni-video #video_player iframe {
  display: block;
  width: 100%;
}

@media (max-width: 767px) {
  #uni-video #video_player,
  #uni-video #video_player iframe {
    aspect-ratio: auto;
    height: clamp(15rem, 64vw, 17.5rem) !important;
    min-height: clamp(15rem, 64vw, 17.5rem);
  }
}

.movh-episode-controls {
  align-items: center;
  background:
    linear-gradient(180deg, rgb(10 13 20 / .6), rgb(5 7 12 / .34));
  border: 1px solid rgb(239 68 68 / .12);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .035);
  display: grid;
  gap: .55rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 .65rem;
  padding: .42rem;
}

.movh-player-controls-single {
  grid-template-columns: minmax(10rem, 15rem);
  justify-content: center;
}

.movh-episode-control {
  align-items: center;
  background: rgb(15 19 28 / .58);
  border: 1px solid rgb(239 68 68 / .18);
  border-radius: 12px;
  color: #dce7f5;
  cursor: pointer;
  display: inline-flex;
  font-size: clamp(.78rem, 1.45vw, .9rem);
  font-weight: 800;
  gap: .36rem;
  justify-content: center;
  line-height: 1.2;
  min-height: 2.55rem;
  min-width: 0;
  padding: .48rem .65rem;
  text-align: center;
  text-shadow: none;
  transition: background-color .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease, opacity .16s ease, transform .16s ease;
}

.movh-episode-control:hover,
.movh-episode-control:focus-visible {
  background: rgb(45 14 20 / .68);
  border-color: rgb(239 68 68 / .46);
  box-shadow: 0 8px 18px rgb(0 0 0 / .18), 0 0 14px rgb(239 68 68 / .12);
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.movh-episode-control-refresh {
  background: rgb(25 28 38 / .68);
  border-color: rgb(248 113 113 / .26);
  color: #f4f7fb;
}

.movh-episode-control-refresh:hover,
.movh-episode-control-refresh:focus-visible {
  background: rgb(70 15 24 / .7);
  border-color: rgb(248 113 113 / .52);
  box-shadow: 0 8px 18px rgb(0 0 0 / .18), 0 0 14px rgb(239 68 68 / .14);
}

.movh-episode-control:disabled,
.movh-episode-control[aria-disabled="true"] {
  background: rgb(15 19 28 / .34);
  border-color: rgb(148 163 184 / .12);
  color: rgb(226 232 240 / .56);
  cursor: not-allowed;
  opacity: 1;
  transform: none;
}

.movh-control-icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.08em;
  justify-content: center;
  line-height: 1;
}

.movh-control-text {
  min-width: 0;
}

.movh-summary-card {
  color: #d7e3f4;
  line-height: 1.8;
}

.movie-summary {
  overflow: hidden;
  transition: max-height .24s ease;
}

.movie-summary.collapsed {
  max-height: 220px;
  position: relative;
}

.movie-summary.collapsed::after {
  background: linear-gradient(to bottom, rgb(16 23 34 / 0), rgb(16 23 34));
  bottom: 0;
  content: "";
  height: 70px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.movh-summary-toggle,
.archive-desc-toggle {
  background: rgb(79 140 255 / .18) !important;
  border: 1px solid rgb(125 211 252 / .28) !important;
  color: #eaf6ff !important;
  min-height: 2.65rem;
}

.movh-summary-toggle:hover,
.archive-desc-toggle:hover {
  background: rgb(79 140 255 / .26) !important;
}

.movh-episode-panel {
  margin-bottom: 1.75rem;
  padding: 1rem;
}

.movh-episode-header {
  margin-bottom: .9rem;
}

.movh-episode-header h2 {
  color: #fff !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  line-height: 1.3;
}

.movh-episode-header p {
  color: var(--movh-muted);
  font-size: .9rem;
  margin-top: .2rem;
}

#season {
  gap: .6rem !important;
  height: auto !important;
  margin-bottom: 1rem !important;
  min-height: 3.1rem;
  padding-bottom: .4rem;
  scroll-snap-type: x proximity;
}

#season .season-btn {
  background: rgb(255 255 255 / .07);
  border: 1px solid var(--movh-border);
  border-radius: 999px !important;
  color: #dbeafe;
  flex: 0 0 auto;
  min-height: 2.65rem;
  min-width: 8rem;
  scroll-snap-align: start;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

#season .season-btn.active,
#season .season-btn:hover,
#season .season-btn:focus-visible {
  background: var(--movh-blue);
  border-color: rgb(255 255 255 / .2);
  color: #fff;
  transform: translateY(-1px);
}

.movh-episode-list {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.ep-scroller {
  display: grid;
  gap: .55rem;
  grid-template-columns: repeat(auto-fill, minmax(5.6rem, 1fr));
  max-height: min(30rem, 60vh);
  overflow-y: auto;
  padding: .1rem;
  scrollbar-color: rgb(79 140 255 / .8) rgb(15 23 42 / .7);
  scrollbar-width: thin;
}

.ep {
  background: rgb(15 23 42 / .78);
  border: 1px solid rgb(125 211 252 / .22);
  border-radius: var(--movh-radius);
  color: #eaf6ff;
  min-height: 2.75rem;
  transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}

.ep:hover,
.ep:focus-visible,
.ep.active,
.ep.is-playing {
  background: rgb(34 211 238 / .16);
  border-color: rgb(34 211 238 / .55);
  color: #fff;
  transform: translateY(-1px);
}

.promo-banners {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin: 1rem 0;
}

.promo-banners a {
  display: inline-block;
  line-height: 0;
}

.promo-banners img {
  border: 1px solid var(--movh-border);
  border-radius: var(--movh-radius);
  display: block;
  height: auto;
  max-width: 100%;
}

.movh-single-ad-slot {
  width: 100%;
}

.movh-single-ad-slot > *,
.movh-single-ad-slot .widget,
.movh-single-ad-slot .textwidget,
.movh-single-ad-slot .wp-block-image,
.movh-single-ad-slot figure {
  margin: 0;
  max-width: 100%;
}

.movh-single-ad-slot a {
  display: inline-flex;
  line-height: 0;
  max-width: 100%;
}

.movh-single-ad-slot img,
.movh-single-ad-slot iframe,
.movh-single-ad-slot ins {
  border: 1px solid var(--movh-border);
  border-radius: var(--movh-radius);
  display: block;
  height: auto;
  max-width: 100%;
}

.movh-single-ad-slot iframe,
.movh-single-ad-slot ins {
  min-height: 5rem;
}

.movh-single-ad-slot--bottom {
  margin-top: 1rem;
}

.movh-sidebar .widget {
  margin-bottom: .9rem;
  padding: .9rem !important;
}

.movh-sidebar .widget li {
  background: rgb(255 255 255 / .045);
  border: 1px solid rgb(255 255 255 / .07);
  border-radius: 999px;
}

.movh-sidebar .widget li:hover {
  background: rgb(79 140 255 / .14);
}

.movh-sidebar .widget a {
  color: #dbeafe;
}

.archive-desc-wrap {
  padding: 1rem;
}

.movh-pagination-wrap {
  margin-top: 1.75rem !important;
  max-width: 100%;
}

.movh-pagination-nav {
  display: flex !important;
  justify-content: center;
  max-width: 100%;
  overflow-x: auto;
  padding: .25rem .25rem .55rem;
  scrollbar-width: thin;
}

.movh-pagination-list {
  align-items: center;
  background: rgb(9 13 20 / .72);
  border: 1px solid rgb(255 255 255 / .09);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgb(0 0 0 / .26);
  display: inline-flex !important;
  gap: .45rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  max-width: 100%;
  padding: .45rem;
}

.movh-pagination-item {
  display: flex;
  flex: 0 0 auto;
  line-height: 1;
  margin: 0;
}

.movh-page-link {
  align-items: center;
  background: linear-gradient(180deg, rgb(255 255 255 / .1), rgb(255 255 255 / .045));
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: 999px;
  color: #dbeafe !important;
  display: inline-flex !important;
  font-size: .96rem;
  font-weight: 800;
  height: 2.55rem;
  justify-content: center;
  line-height: 1;
  min-width: 2.55rem;
  padding: 0 .82rem;
  text-decoration: none !important;
  transition: background-color .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease, transform .16s ease;
}

.movh-page-link:hover,
.movh-page-link:focus-visible {
  background: rgb(34 211 238 / .16);
  border-color: rgb(34 211 238 / .42);
  color: #fff !important;
  transform: translateY(-1px);
}

.movh-page-link.current {
  background: linear-gradient(135deg, #22d3ee 0%, #4f8cff 100%);
  border-color: rgb(125 211 252 / .72);
  box-shadow: 0 10px 24px rgb(34 211 238 / .2);
  color: #06111f !important;
  cursor: default;
}

.movh-page-link.dots {
  background: transparent;
  border-color: transparent;
  color: var(--movh-muted) !important;
  min-width: 2rem;
  padding: 0 .45rem;
  pointer-events: none;
}

.movh-page-link.prev,
.movh-page-link.next {
  background: rgb(79 140 255 / .18);
  border-color: rgb(125 211 252 / .22);
  font-size: 1.15rem;
  min-width: 2.75rem;
}

.movh-page-arrow {
  display: inline-flex;
  line-height: 1;
  transform: translateY(-1px);
}

.footer-menu-wrap a {
  border-radius: 999px;
  padding: .55rem .75rem;
}

@media (min-width: 768px) {
  .movh-site-header {
    margin-top: .75rem;
  }

  .movh-site-tagline {
    font-size: 1.85rem;
  }

  .movh-page-title {
    font-size: 1.9rem !important;
  }

  .movh-card-grid {
    gap: 1rem !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .movh-content-shell.has-left-sidebar {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  .movh-content-shell.has-left-sidebar .movh-main {
    order: 1 !important;
    width: 100% !important;
  }

  .movh-content-shell.has-left-sidebar .movh-left-sidebar {
    order: 2 !important;
    width: 50% !important;
  }

  .movh-content-shell.has-left-sidebar .movh-right-sidebar {
    order: 3 !important;
    width: 50% !important;
  }
}

@media (min-width: 1024px) {
  .movh-content-shell.has-left-sidebar {
    align-items: flex-start;
    display: grid !important;
    gap: 1rem;
    grid-template-columns: minmax(10rem, 13rem) minmax(0, 1fr) minmax(13rem, 16rem);
  }

  .movh-content-shell.has-left-sidebar > .movh-single-discovery-hero {
    grid-column: 1 / -1;
    margin-bottom: 0;
    order: 0;
  }

  .movh-content-shell.has-left-sidebar .movh-left-sidebar {
    grid-column: 1;
    order: 1;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }

  .movh-content-shell.has-left-sidebar .movh-main {
    grid-column: 2;
    order: 2;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }

  .movh-content-shell.has-left-sidebar .movh-right-sidebar {
    grid-column: 3;
    order: 3;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }

  .movh-nav-inner {
    align-items: center;
    justify-content: space-between !important;
  }

  .movh-menu-wrap {
    flex: 1 1 auto;
    justify-content: flex-start !important;
    min-width: 0;
    order: 1 !important;
    width: auto !important;
  }

  .movh-menu-wrap #primary-menu {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: auto;
  }

  .movh-search-wrap {
    flex: 0 0 auto;
    justify-content: flex-end !important;
    margin-left: auto;
    margin-top: 0 !important;
    order: 2 !important;
    width: auto !important;
  }

  .movh-search-wrap > div {
    width: auto;
  }

  .movh-search-form {
    width: clamp(18rem, 24vw, 28rem);
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .movh-menu-wrap a {
    font-size: .86rem;
    padding-left: .58rem;
    padding-right: .58rem;
  }

  .movh-search-form {
    width: 18rem;
  }
}

@media (max-width: 767px) {
  .movh-site-header {
    border-radius: 0;
    padding-bottom: .9rem !important;
    padding-top: .9rem !important;
  }

  .movh-logo {
    width: 126px;
  }

  .movh-header-copy {
    margin-top: .55rem;
  }

  .movh-site-tagline {
    font-size: 1.25rem;
  }

  .movh-nav-inner {
    padding: .75rem !important;
  }

  .movh-search-wrap > div,
  .movh-search-form {
    width: 100%;
  }

  .movh-search-submit span {
    display: none;
  }

  .movh-search-submit svg {
    margin: 0;
  }

  .movh-content-shell {
    border-left: 0;
    border-radius: 0 !important;
    border-right: 0;
    flex-wrap: wrap !important;
    padding: .75rem !important;
  }

  .movh-content-shell.has-left-sidebar {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }

  .movh-content-shell.has-left-sidebar .movh-main {
    order: 1 !important;
    width: 100% !important;
  }

  .movh-content-shell.has-left-sidebar .movh-left-sidebar {
    order: 2 !important;
    width: 100% !important;
  }

  .movh-content-shell.has-left-sidebar .movh-right-sidebar {
    order: 3 !important;
    width: 100% !important;
  }

  .movh-page-title {
    font-size: 1.35rem !important;
  }

  .movh-section-title--with-action {
    gap: .55rem;
  }

  .movh-section-more {
    font-size: .72rem;
    min-height: 1.85rem;
    padding: .45rem .58rem;
  }

  .movh-card-grid {
    gap: .65rem !important;
  }

  .movh-card-body {
    min-height: 4.55rem;
    padding: .62rem .55rem .68rem;
  }

  .movh-card.recomment .movh-card-body {
    min-height: 5.8rem;
  }

  .movh-card-title {
    font-size: .86rem !important;
  }

  .movh-detail-grid {
    gap: .55rem !important;
  }

  .movh-detail-panel > .my-4:first-child {
    margin-bottom: .6rem !important;
  }

  .movh-detail-pill {
    max-width: 100%;
    min-height: 2.25rem;
    padding: .36rem .52rem;
  }

  .movh-detail-pill > div {
    gap: .28rem;
  }

  .movh-detail-pill > div > span:first-child:not(.inline-block) {
    font-size: .72rem !important;
  }

  .movh-detail-pill > div > span:last-child,
  .movh-detail-pill > div > span:last-child a,
  .movh-detail-pill time {
    font-size: .84rem !important;
    max-width: calc(100vw - 9rem);
  }

  .movh-detail-rating p {
    font-size: .94rem !important;
  }

  .movh-trailer-poster {
    padding-right: 1rem !important;
  }

  .movh-trailer-poster img {
    width: min(11rem, 58vw) !important;
  }

  #season .season-btn {
    min-width: 7rem;
  }

  .ep-scroller {
    gap: .45rem;
    grid-template-columns: repeat(auto-fill, minmax(4.8rem, 1fr));
  }

  .movh-episode-controls {
    gap: .35rem;
    padding: .36rem;
  }

  .movh-player-controls-single {
    grid-template-columns: minmax(0, 1fr);
  }

  .movh-episode-control {
    min-height: 2.5rem;
    padding: .46rem .32rem;
  }

  .movh-control-text {
    white-space: normal;
  }

  .movh-pagination-nav {
    justify-content: flex-start;
    margin-left: -.75rem;
    margin-right: -.75rem;
    -webkit-overflow-scrolling: touch;
    padding: .25rem .75rem .65rem;
    scroll-padding-left: .75rem;
    scroll-padding-right: .75rem;
    scrollbar-width: none;
  }

  .movh-pagination-nav::-webkit-scrollbar {
    display: none;
  }

  .movh-pagination-list {
    border-radius: var(--movh-radius);
    flex: 0 0 max-content;
    gap: .35rem;
    max-width: none;
    min-width: max-content;
    padding: .38rem;
    width: max-content;
  }

  .movh-page-link {
    font-size: .86rem;
    height: 2.28rem;
    min-width: 2.28rem;
    padding: 0 .62rem;
  }

  .movh-page-link.prev,
  .movh-page-link.next {
    min-width: 2.42rem;
  }
}

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

/* Dark Cinema Red 2026 theme layer */
body {
  background:
    linear-gradient(180deg, #08080b 0%, #050506 44%, #020203 100%) !important;
}

.movh-site-header {
  background:
    linear-gradient(180deg, rgb(18 20 26 / .96), rgb(8 9 12 / .96)) !important;
  border-color: rgb(229 9 20 / .18);
  box-shadow: 0 16px 42px rgb(0 0 0 / .42);
}

.movh-logo img,
.custom-logo {
  filter: drop-shadow(0 10px 22px rgb(0 0 0 / .55));
}

.movh-site-tagline {
  color: #fff !important;
  text-shadow: 0 2px 18px rgb(229 9 20 / .12);
}

.movh-nav {
  background: rgb(5 6 9 / .92) !important;
  border-color: rgb(229 9 20 / .16) !important;
}

.movh-menu-wrap a {
  color: #e5e7eb;
  position: relative;
}

.movh-menu-wrap a:hover,
.movh-menu-wrap a:focus-visible,
.footer-menu-wrap a:hover,
.footer-menu-wrap a:focus-visible {
  background: rgb(229 9 20 / .14);
  box-shadow: inset 0 0 0 1px rgb(229 9 20 / .3);
  color: #fff !important;
}

.movh-search-form {
  background: rgb(255 255 255 / .08);
  border-color: rgb(229 9 20 / .24);
  box-shadow: 0 10px 30px rgb(0 0 0 / .32), inset 0 1px 0 rgb(255 255 255 / .06);
}

.movh-search-field input {
  color: #f8fafc;
}

.movh-search-field input::placeholder {
  color: #9ca3af;
}

.movh-search-submit {
  background: linear-gradient(180deg, var(--movh-red-hover), var(--movh-red));
  border-color: rgb(255 255 255 / .14) !important;
  box-shadow: 0 10px 22px rgb(229 9 20 / .24);
}

.movh-search-submit:hover,
.movh-search-submit:focus-visible {
  background: linear-gradient(180deg, #ff3a45, #c80612);
}

.movh-home-intro,
.movh-content-shell,
.movh-single-title-wrap,
.movh-archive-hero,
.movh-detail-panel,
.movh-summary-card,
.movh-trailer-card,
.movh-player-shell,
.movh-episode-panel,
.archive-desc-wrap,
.movh-sidebar .widget {
  background: rgb(12 14 19 / .94) !important;
  border-color: rgb(229 9 20 / .16) !important;
}

.movh-content-shell {
  box-shadow: 0 22px 54px rgb(0 0 0 / .44);
}

.movh-single-title-wrap,
.movh-archive-hero {
  background:
    linear-gradient(135deg, rgb(18 20 26 / .96), rgb(10 11 15 / .96)) !important;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .035), 0 14px 34px rgb(0 0 0 / .28);
}

.movh-series-hero::after,
.movh-movie-hero::after,
.movh-detail-panel::before {
  background: linear-gradient(90deg, var(--movh-red), rgb(255 48 64 / .42), transparent) !important;
}

.movh-kicker {
  color: #ff4b57;
}

.movh-archive-stats span,
.movh-card-meta span,
.movh-detail-pill {
  background: rgb(255 255 255 / .06);
  border-color: rgb(255 255 255 / .1);
  color: #eef2f7;
}

.movh-section-title,
.widget-title,
.movh-panel-heading {
  background:
    linear-gradient(90deg, rgb(229 9 20 / .2), rgb(255 255 255 / .045) 42%, rgb(255 255 255 / .012)) !important;
  border-color: rgb(229 9 20 / .2) !important;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .05);
}

.movh-section-title::before,
.widget-title::before {
  background: linear-gradient(180deg, #ff4b57, var(--movh-red));
  box-shadow: 0 0 18px rgb(229 9 20 / .36);
}

.movh-section-more,
.movh-summary-toggle,
.archive-desc-toggle {
  background: rgb(229 9 20 / .14) !important;
  border-color: rgb(229 9 20 / .34) !important;
  color: #fff !important;
}

.movh-section-more:hover,
.movh-section-more:focus-visible,
.movh-summary-toggle:hover,
.archive-desc-toggle:hover {
  background: rgb(229 9 20 / .24) !important;
  border-color: rgb(255 75 87 / .55) !important;
}

.movh-card {
  background: linear-gradient(180deg, rgb(18 21 28 / .96), rgb(11 13 18 / .98));
  border-color: rgb(255 255 255 / .09);
  box-shadow: 0 14px 34px rgb(0 0 0 / .34);
}

.movh-card::before {
  background: linear-gradient(90deg, transparent, rgb(229 9 20 / .5), transparent);
  content: "";
  height: 2px;
  left: 0;
  opacity: .45;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.movh-card:hover,
.movh-card:focus-within {
  border-color: rgb(229 9 20 / .48);
  box-shadow: 0 18px 42px rgb(0 0 0 / .48), 0 0 0 1px rgb(229 9 20 / .12);
}

.movh-card-title {
  color: #f4f7fb !important;
}

.badge-lang {
  background: linear-gradient(180deg, #ff3a45, var(--movh-red)) !important;
  border-color: rgb(255 255 255 / .18) !important;
  box-shadow: 0 8px 16px rgb(0 0 0 / .34);
  color: #fff !important;
}

.uni-recomment-badge > span {
  background: linear-gradient(180deg, rgb(20 22 28 / .96), rgb(9 10 14 / .96));
  border-color: rgb(250 204 21 / .4);
}

.movh-detail-rating {
  background: rgb(250 204 21 / .1);
  border-color: rgb(250 204 21 / .28);
}

.movh-detail-pill:hover {
  border-color: rgb(229 9 20 / .28);
}

#season .season-btn {
  background: rgb(255 255 255 / .065);
  border-color: rgb(255 255 255 / .1);
  color: #e5e7eb;
}

#season .season-btn.active,
#season .season-btn:hover,
#season .season-btn:focus-visible {
  background: linear-gradient(180deg, var(--movh-red-hover), var(--movh-red));
  border-color: rgb(255 255 255 / .16);
  box-shadow: 0 10px 22px rgb(229 9 20 / .22);
  color: #fff;
}

.ep {
  background: rgb(16 18 24 / .9);
  border-color: rgb(229 9 20 / .2);
  color: #f3f4f6;
}

.ep:hover,
.ep:focus-visible,
.ep.active,
.ep.is-playing {
  background: rgb(229 9 20 / .2);
  border-color: rgb(255 75 87 / .58);
  color: #fff;
}

.ep-scroller {
  scrollbar-color: rgb(229 9 20 / .72) rgb(18 21 28 / .8);
}

.movie-summary.collapsed::after {
  background: linear-gradient(to bottom, rgb(12 14 19 / 0), rgb(12 14 19));
}

.movh-sidebar .widget li {
  background: rgb(255 255 255 / .055);
  border-color: rgb(255 255 255 / .09);
}

.movh-sidebar .widget li:hover {
  background: rgb(229 9 20 / .16);
  border-color: rgb(229 9 20 / .34);
}

.movh-sidebar .widget a {
  color: #eef2f7;
}

.movh-pagination-list {
  background: rgb(8 9 12 / .86);
  border-color: rgb(229 9 20 / .2);
}

.movh-page-link {
  background: linear-gradient(180deg, rgb(255 255 255 / .1), rgb(255 255 255 / .045));
  border-color: rgb(255 255 255 / .12);
  color: #eef2f7 !important;
}

.movh-page-link:hover,
.movh-page-link:focus-visible {
  background: rgb(229 9 20 / .18);
  border-color: rgb(229 9 20 / .5);
}

.movh-page-link.current {
  background: linear-gradient(180deg, #ff3a45, var(--movh-red));
  border-color: rgb(255 255 255 / .2);
  box-shadow: 0 10px 24px rgb(229 9 20 / .26);
  color: #fff !important;
}

.movh-page-link.prev,
.movh-page-link.next {
  background: rgb(229 9 20 / .16);
  border-color: rgb(229 9 20 / .34);
}

.promo-banners img,
.movh-video-frame,
.movh-trailer-frame iframe {
  border: 1px solid rgb(229 9 20 / .18);
  box-shadow: 0 12px 30px rgb(0 0 0 / .35);
}

.unicorn-ads.movh-ad-showcase {
  background: transparent !important;
}

.footer-menu-wrap a {
  color: #e5e7eb;
}

@media (max-width: 767px) {
  body {
    background:
      linear-gradient(180deg, #09090c 0%, #050506 46%, #020203 100%) !important;
  }

  .movh-section-title,
  .widget-title {
    min-height: 2.85rem;
    padding-left: .75rem !important;
    padding-right: .75rem !important;
  }

  .movh-card::before {
    height: 1px;
  }
}

/* Responsive polish for the cinema-red layer */
.movh-page-link {
  position: relative;
}

.movh-page-link .screen-reader-text {
  left: 0;
  top: 0;
}

@media (min-width: 1024px) {
  .movh-nav-inner {
    display: grid !important;
    gap: .85rem;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .movh-menu-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-color: rgb(229 9 20 / .55) transparent;
    scrollbar-width: thin;
  }

  .movh-menu-wrap #primary-menu {
    flex-wrap: nowrap;
    gap: .5rem;
    min-width: max-content;
  }

  .movh-menu-wrap #primary-menu > * + * {
    margin-left: 0 !important;
  }

  .movh-menu-wrap a {
    white-space: nowrap;
  }

  .movh-search-wrap {
    align-self: center;
    grid-column: 2;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .movh-menu-wrap a {
    font-size: .88rem;
    padding-left: .62rem;
    padding-right: .62rem;
  }

  .movh-search-form {
    width: clamp(16.5rem, 24vw, 21rem);
  }
}

/* 404 and footer refresh */
.movh-404-main {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex: 1 1 100%;
  grid-column: 1 / -1;
  justify-content: center;
  min-height: clamp(30rem, 62vh, 44rem);
  padding-bottom: clamp(2rem, 5vw, 4rem) !important;
  padding-top: clamp(2rem, 5vw, 4rem) !important;
  width: 100% !important;
}

.movh-404-card {
  background:
    linear-gradient(135deg, rgb(20 22 29 / .96), rgb(8 9 13 / .98)) !important;
  border: 1px solid rgb(229 9 20 / .24);
  border-radius: var(--movh-radius);
  box-sizing: border-box;
  box-shadow: 0 24px 60px rgb(0 0 0 / .45);
  margin-left: auto;
  margin-right: auto;
  max-width: 58rem;
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  text-align: center;
  width: min(100%, 58rem);
}

.movh-404-card::before {
  background: linear-gradient(90deg, var(--movh-red), rgb(255 75 87 / .48), transparent);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.movh-404-code {
  color: rgb(255 255 255 / .08);
  font-size: clamp(5.5rem, 16vw, 9.5rem);
  font-weight: 950;
  line-height: .82;
  margin-bottom: -1.2rem;
  pointer-events: none;
}

.movh-404-kicker {
  color: #ff4b57;
  letter-spacing: .14em;
  margin-bottom: .45rem;
}

.movh-404-title {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0 auto;
  max-width: 45rem;
}

.movh-404-desc {
  color: var(--movh-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: .9rem auto 0;
  max-width: 42rem;
}

.movh-404-search {
  margin: 1.35rem auto 0;
  max-width: 35rem;
}

.movh-404-search .movh-search-form {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.movh-404-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin-top: 1rem;
}

.movh-404-primary,
.movh-404-secondary {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: .92rem;
  font-weight: 850;
  justify-content: center;
  line-height: 1;
  min-height: 2.75rem;
  padding: .75rem 1rem;
  text-decoration: none !important;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.movh-404-primary {
  background: linear-gradient(180deg, var(--movh-red-hover), var(--movh-red));
  border: 1px solid rgb(255 255 255 / .16);
  box-shadow: 0 12px 26px rgb(229 9 20 / .26);
  color: #fff !important;
}

.movh-404-secondary {
  background: rgb(255 255 255 / .07);
  border: 1px solid rgb(255 255 255 / .12);
  color: #eef2f7 !important;
}

.movh-404-primary:hover,
.movh-404-primary:focus-visible,
.movh-404-secondary:hover,
.movh-404-secondary:focus-visible {
  border-color: rgb(255 75 87 / .54);
  color: #fff !important;
  transform: translateY(-1px);
}

.movh-404-secondary:hover,
.movh-404-secondary:focus-visible {
  background: rgb(229 9 20 / .18);
}

.movh-footer-content,
.movh-site-footer {
  background: rgb(7 8 11 / .96) !important;
  border-color: rgb(229 9 20 / .18) !important;
}

.movh-footer-content {
  border: 1px solid rgb(229 9 20 / .16);
  border-radius: var(--movh-radius);
  box-sizing: border-box;
  box-shadow: 0 18px 42px rgb(0 0 0 / .36);
  color: #c6cfdb;
  max-width: 100% !important;
  overflow: hidden;
  width: 100% !important;
}

.movh-site-footer {
  border-top: 1px solid rgb(229 9 20 / .22);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .035);
  margin-top: 1.5rem;
}

.movh-share-box {
  background:
    radial-gradient(circle at top left, rgb(229 9 20 / .16), transparent 34%),
    linear-gradient(180deg, rgb(15 16 21 / .98), rgb(8 9 13 / .98));
  border: 1px solid rgb(229 9 20 / .22);
  border-radius: var(--movh-radius);
  box-shadow: var(--movh-shadow-soft);
  margin: 1.35rem 0;
  overflow: hidden;
}

.movh-share-head {
  align-items: center;
  background:
    linear-gradient(90deg, rgb(229 9 20 / .2), rgb(255 255 255 / .045) 46%, rgb(255 255 255 / .018));
  border-bottom: 1px solid rgb(255 255 255 / .08);
  display: flex;
  min-height: 3.75rem;
  padding: .95rem 1.15rem;
}

.movh-share-title {
  align-items: center;
  color: #fff !important;
  display: inline-flex;
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
  font-weight: 900 !important;
  gap: .7rem;
  line-height: 1.2 !important;
  margin: 0 !important;
}

.movh-share-title::before {
  background: linear-gradient(180deg, var(--movh-red-hover), var(--movh-red));
  border-radius: 999px;
  box-shadow: 0 0 20px rgb(229 9 20 / .42);
  content: "";
  display: inline-block;
  height: 1.55rem;
  width: .32rem;
}

.movh-share-body {
  align-items: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 1.15rem;
}

.movh-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.movh-share-btn {
  align-items: center;
  background: rgb(255 255 255 / .055);
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .06);
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
  width: 3rem;
}

.movh-share-btn svg {
  fill: currentColor;
  height: 1.35rem;
  width: 1.35rem;
}

.movh-share-facebook {
  color: #70a7ff;
}

.movh-share-twitter {
  color: #65c7ff;
}

.movh-share-pinterest {
  color: #ff6170;
}

.movh-share-btn:hover,
.movh-share-btn:focus-visible {
  background: rgb(229 9 20 / .18);
  border-color: rgb(229 9 20 / .48);
  color: #fff;
  transform: translateY(-1px);
}

.movh-share-copy {
  align-items: center;
  background: rgb(255 255 255 / .055);
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 999px;
  display: grid;
  gap: .65rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  max-width: 38rem;
  min-height: 3.45rem;
  padding: .35rem .4rem .35rem .85rem;
  width: min(100%, 38rem);
}

.movh-share-link-icon {
  fill: #f87171;
  height: 1.25rem;
  width: 1.25rem;
}

.movh-share-input {
  background: transparent;
  border: 0;
  color: #f4f7fb;
  font-size: .95rem;
  font-weight: 700;
  min-width: 0;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.movh-share-copy-btn {
  background: linear-gradient(135deg, #e50914, #ff3040);
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgb(229 9 20 / .28);
  color: #fff;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 900;
  line-height: 1;
  min-height: 2.7rem;
  padding: 0 1.3rem;
  white-space: nowrap;
}

.movh-share-copy-btn:hover,
.movh-share-copy-btn:focus-visible {
  background: linear-gradient(135deg, #ff2533, #e50914);
}

.movh-footer-menu-band,
.movh-footer-widget-band {
  background:
    linear-gradient(180deg, rgb(13 15 20 / .96), rgb(6 7 10 / .98)) !important;
  border-color: rgb(229 9 20 / .18) !important;
}

.movh-footer-content .kub24hd-highlights {
  color: #c6cfdb;
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 70rem;
}

.movh-footer-content .kub24hd-highlights h2,
.movh-footer-content .kub24hd-highlights h3 {
  background:
    linear-gradient(90deg, rgb(229 9 20 / .18), rgb(255 255 255 / .045) 45%, rgb(255 255 255 / .012));
  border: 1px solid rgb(229 9 20 / .18);
  border-radius: var(--movh-radius);
  color: #fff !important;
  font-size: clamp(1.12rem, 2vw, 1.55rem) !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  padding: .85rem 1rem;
}

.movh-footer-content .kub24hd-highlights .seo-main-heading {
  font-size: clamp(1.35rem, 3vw, 2rem) !important;
  text-align: center;
}

.movh-footer-content .kub24hd-highlights p,
.movh-footer-content .kub24hd-highlights ul,
.movh-footer-content .kub24hd-highlights ol {
  background: rgb(255 255 255 / .035);
  border: 1px solid rgb(255 255 255 / .08);
  border-radius: var(--movh-radius);
  color: #c6cfdb;
  line-height: 1.82;
  margin: 0 !important;
  padding: 1rem;
}

.movh-footer-content .kub24hd-highlights .lead {
  color: #e5e7eb;
  font-size: 1rem;
}

.movh-footer-content .kub24hd-highlights a {
  color: #fff !important;
  text-decoration-color: rgb(229 9 20 / .5);
}

@media (min-width: 1024px) {
  .movh-footer-content .kub24hd-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movh-footer-content .kub24hd-highlights .seo-main-heading,
  .movh-footer-content .kub24hd-highlights .lead {
    grid-column: 1 / -1;
  }
}

.movh-footer-inner,
.movh-footer-widget-inner {
  max-width: 80rem;
}

.footer-menu-wrap {
  display: flex;
  justify-content: center;
}

.footer-menu-wrap ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu-wrap li {
  display: inline-flex;
}

.footer-menu-wrap a {
  background: rgb(255 255 255 / .055);
  border: 1px solid rgb(255 255 255 / .09);
  border-radius: 999px;
  color: #e5e7eb !important;
  display: inline-flex;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  padding: .68rem .9rem;
  text-decoration: none !important;
}

.footer-menu-wrap a:hover,
.footer-menu-wrap a:focus-visible {
  background: rgb(229 9 20 / .16);
  border-color: rgb(229 9 20 / .4);
}

.movh-footer-text,
.movh-footer-text .widget,
.movh-footer-text p {
  color: #b8c0cc !important;
  line-height: 1.7;
  margin-bottom: 0;
}

.movh-footer-text a,
.movh-footer-social a {
  color: #f3f4f6 !important;
  text-decoration-color: rgb(229 9 20 / .45);
}

.movh-footer-social {
  flex-wrap: wrap;
  gap: .75rem;
}

.movh-footer-social > * {
  margin-left: 0 !important;
}

@media (max-width: 767px) {
  .movh-404-main {
    min-height: auto;
    padding-left: .9rem !important;
    padding-right: .9rem !important;
  }

  .movh-404-card {
    padding: 1.15rem;
  }

  .movh-404-code {
    font-size: 5rem;
    margin-bottom: -.65rem;
  }

  .movh-404-desc {
    font-size: .94rem;
  }

  .movh-404-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .movh-404-primary,
  .movh-404-secondary {
    width: 100%;
  }

  .movh-share-head {
    min-height: 3.3rem;
    padding: .85rem .95rem;
  }

  .movh-share-body {
    align-items: stretch;
    padding: .95rem;
  }

  .movh-share-copy {
    border-radius: var(--movh-radius);
    grid-template-columns: auto minmax(0, 1fr);
    padding: .75rem;
  }

  .movh-share-copy-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-menu-wrap ul {
    gap: .45rem;
  }

  .footer-menu-wrap a {
    font-size: .84rem;
    padding: .62rem .78rem;
  }
}

/* Discovery Hub layout */
.movh-discovery-hero,
.movh-single-discovery-hero {
  background:
    radial-gradient(circle at 78% 18%, rgb(229 9 20 / .2), transparent 28%),
    linear-gradient(135deg, rgb(15 16 20 / .98), rgb(5 6 8 / .96));
  border: 1px solid rgb(255 255 255 / .11);
  border-radius: var(--movh-radius);
  box-shadow: var(--movh-shadow);
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
  min-width: 0;
  min-height: 25rem;
  overflow: hidden;
  padding: clamp(1rem, 2.5vw, 2rem);
  position: relative;
}

.movh-discovery-hero {
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 18rem);
}

.movh-single-discovery-hero {
  grid-template-columns: minmax(11rem, 17rem) minmax(0, 1fr);
  min-height: clamp(22rem, 32vw, 30rem);
}

.movh-content-shell > .movh-single-discovery-hero {
  box-sizing: border-box;
  flex: 0 0 100%;
  margin-bottom: .25rem;
  max-width: 100%;
  width: 100%;
}

.movh-discovery-hero-bg,
.movh-single-discovery-bg {
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: .34;
  position: absolute;
  transform: scale(1.04);
}

.movh-single-discovery-bg {
  background-position: center 28%;
  opacity: .5;
}

.movh-discovery-hero::after,
.movh-single-discovery-hero::after {
  background:
    linear-gradient(90deg, rgb(5 6 8 / .96) 0%, rgb(5 6 8 / .82) 45%, rgb(5 6 8 / .42) 100%),
    linear-gradient(0deg, rgb(5 6 8 / .92), transparent 50%);
  content: "";
  inset: 0;
  position: absolute;
}

.movh-single-discovery-hero::after {
  background:
    linear-gradient(90deg, rgb(5 6 8 / .97) 0%, rgb(5 6 8 / .82) 42%, rgb(5 6 8 / .34) 100%),
    linear-gradient(0deg, rgb(5 6 8 / .96) 0%, rgb(5 6 8 / .56) 50%, rgb(5 6 8 / .22) 100%);
}

.movh-discovery-hero-copy,
.movh-single-discovery-copy,
.movh-discovery-hero-poster,
.movh-single-discovery-poster {
  position: relative;
  z-index: 1;
}

.movh-discovery-hero-copy,
.movh-single-discovery-copy {
  align-self: end;
  max-width: 44rem;
  min-width: 0;
}

.movh-content-shell > .movh-single-discovery-hero .movh-single-discovery-copy {
  max-width: 56rem;
}

.movh-discovery-kicker {
  color: #ff8a92;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.1;
  margin-bottom: .45rem;
  text-transform: uppercase;
}

.movh-discovery-hero-title,
.movh-single-discovery-title {
  color: #fff !important;
  font-size: clamp(1.75rem, 4vw, 3.5rem) !important;
  font-weight: 950 !important;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
  max-width: 16ch;
}

.movh-single-discovery-title {
  font-size: clamp(1.85rem, 4vw, 3.7rem) !important;
  max-width: 30ch;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.movh-discovery-hero-title a {
  color: inherit;
}

.movh-discovery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .85rem;
}

.movh-discovery-meta span {
  background: rgb(255 255 255 / .09);
  border: 1px solid rgb(255 255 255 / .13);
  border-radius: 999px;
  color: #f7f7f8;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1;
  padding: .45rem .62rem;
}

.movh-single-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .9rem;
  max-width: 52rem;
}

.movh-single-hero-fact {
  align-items: center;
  background:
    linear-gradient(180deg, rgb(255 255 255 / .12), rgb(255 255 255 / .055)),
    rgb(16 18 24 / .78);
  border: 1px solid rgb(255 255 255 / .14);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgb(0 0 0 / .24),
    inset 0 1px 0 rgb(255 255 255 / .08);
  color: #f8fafc;
  display: inline-flex;
  gap: .42rem;
  line-height: 1;
  min-height: 2rem;
  min-width: 0;
  padding: .46rem .68rem;
}

.movh-single-hero-fact strong {
  color: #aab3c2;
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.movh-single-hero-fact em {
  color: #fff;
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.movh-single-hero-fact--rating strong {
  background: #f5c518;
  border-radius: 4px;
  color: #111827;
  padding: .15rem .28rem;
}

.movh-single-hero-cats {
  align-items: flex-start;
  display: flex;
  gap: .55rem;
  margin-top: .75rem;
  max-width: 52rem;
  min-width: 0;
}

.movh-single-hero-cats-label {
  color: #93c5fd;
  flex: 0 0 auto;
  font-size: .74rem;
  font-weight: 950;
  line-height: 1.65rem;
}

.movh-single-hero-cats ul {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  list-style: none;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.movh-single-hero-cats a {
  background:
    linear-gradient(180deg, rgb(59 130 246 / .98), rgb(29 78 216 / .96));
  border: 1px solid rgb(147 197 253 / .38);
  border-radius: 999px;
  box-shadow:
    0 10px 22px rgb(29 78 216 / .22),
    inset 0 1px 0 rgb(255 255 255 / .16);
  color: #fff !important;
  display: inline-flex;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.1;
  max-width: 100%;
  min-height: 1.65rem;
  overflow-wrap: anywhere;
  padding: .42rem .68rem;
}

.movh-single-hero-cats a:hover,
.movh-single-hero-cats a:focus-visible {
  background:
    linear-gradient(180deg, rgb(96 165 250 / .98), rgb(37 99 235 / .98));
  color: #fff !important;
}

.movh-discovery-hero-desc,
.movh-single-discovery-desc {
  color: #cbd5e1;
  font-size: .98rem;
  line-height: 1.75;
  margin: .9rem 0 0;
  max-width: 40rem;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.movh-discovery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.15rem;
}

.movh-discovery-watch,
.movh-discovery-secondary {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: .95rem;
  font-weight: 900;
  justify-content: center;
  min-height: 2.9rem;
  padding: .75rem 1.05rem;
}

.movh-discovery-watch {
  background: var(--movh-red);
  box-shadow: 0 14px 28px rgb(229 9 20 / .24);
  color: #fff !important;
}

.movh-discovery-watch:hover,
.movh-discovery-watch:focus-visible {
  background: var(--movh-red-hover);
  color: #fff !important;
}

.movh-discovery-secondary {
  background: rgb(255 255 255 / .08);
  border: 1px solid rgb(255 255 255 / .14);
  color: #f8fafc !important;
}

.movh-discovery-hero-poster,
.movh-single-discovery-poster {
  align-self: end;
  border: 1px solid rgb(255 255 255 / .14);
  border-radius: var(--movh-radius);
  box-shadow: 0 20px 48px rgb(0 0 0 / .46);
  overflow: hidden;
}

.movh-single-discovery-poster {
  max-width: 17rem;
}

.movh-discovery-hero-poster img,
.movh-single-discovery-poster img {
  aspect-ratio: 2 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.movh-discovery-section {
  margin-bottom: 1.4rem;
}

.movh-content-shell.has-home-header-widget {
  align-items: flex-start;
}

.movh-home-header-widget-band {
  flex: 0 0 100%;
  grid-column: 1 / -1;
  min-width: 0;
  order: 0;
  width: 100%;
}

.movh-home-header-widget-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0 0 1.25rem;
  overflow: hidden;
  padding: clamp(.85rem, 1.8vw, 1.2rem) 0;
  position: relative;
}

.movh-home-header-widget-inner::before {
  content: none;
}

.movh-home-header-widget-body {
  max-height: 8.8rem;
  overflow: hidden;
  position: relative;
  transition: max-height .24s ease;
  z-index: 1;
}

.movh-home-header-widget-body::after {
  background: linear-gradient(180deg, rgb(13 19 29 / 0), rgb(13 19 29 / .96));
  bottom: 0;
  content: "";
  height: 2.2rem;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.movh-home-header-widget-band.is-expanded .movh-home-header-widget-body {
  max-height: 40rem;
}

.movh-home-header-widget-band.is-expanded .movh-home-header-widget-body::after {
  opacity: 0;
}

.movh-home-header-widget-item {
  background: transparent !important;
  color: #dbe3ef;
  margin: 0;
}

.movh-home-header-widget-item + .movh-home-header-widget-item {
  margin-top: .85rem;
}

.movh-home-header-widget-title {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1rem;
  font-weight: 900;
  gap: .65rem;
  line-height: 1.25;
  margin: 0 0 .75rem;
}

.movh-home-header-widget-title::before {
  background: linear-gradient(180deg, #ff3040, #e50914);
  border-radius: 999px;
  box-shadow: 0 0 18px rgb(229 9 20 / .34);
  content: "";
  flex: 0 0 .28rem;
  height: 1.35rem;
}

.movh-home-header-widget-inner h2,
.movh-home-header-widget-inner h3,
.movh-home-header-widget-inner h4 {
  background: transparent !important;
  color: #fff !important;
  font-size: clamp(1.25rem, 2.25vw, 2rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 1rem;
  padding-bottom: .85rem;
  position: relative;
}

.movh-home-header-widget-inner h2::after,
.movh-home-header-widget-inner h3::after,
.movh-home-header-widget-inner h4::after {
  background: #e50914;
  border-radius: 999px;
  bottom: 0;
  box-shadow: 0 0 18px rgb(229 9 20 / .42);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 4.8rem;
}

.movh-home-header-widget-inner p {
  background: transparent !important;
  color: #aeb4bf;
  font-size: .96rem;
  line-height: 1.78;
  margin: 0 0 .65rem;
}

.movh-home-header-widget-inner .textwidget {
  background: transparent !important;
  color: #aeb4bf;
  font-size: .96rem;
  line-height: 1.78;
}

.movh-home-header-widget-body .custom-html-widget,
.movh-home-header-widget-body .textwidget > div,
.movh-home-header-widget-body .textwidget > span {
  background: transparent !important;
}

.movh-home-header-widget-inner p:last-child {
  margin-bottom: 0;
}

.movh-home-header-widget-inner a {
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.movh-home-header-widget-inner a:hover,
.movh-home-header-widget-inner a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgb(229 9 20 / .72);
  text-underline-offset: .22em;
}

.movh-home-header-widget-inner img,
.movh-home-header-widget-inner iframe {
  border-radius: 8px;
  display: block;
  height: auto;
  max-width: 100%;
}

.movh-home-header-more {
  align-items: center;
  background: rgb(37 99 235 / .18);
  border: 1px solid rgb(96 165 250 / .2);
  border-radius: 6px;
  color: #93c5fd;
  cursor: pointer;
  display: inline-flex;
  font-size: .86rem;
  font-weight: 850;
  gap: .42rem;
  line-height: 1;
  margin-top: .78rem;
  min-height: 2rem;
  padding: .42rem .65rem;
  position: relative;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
  z-index: 1;
}

.movh-home-header-more:hover,
.movh-home-header-more:focus-visible {
  background: rgb(37 99 235 / .28);
  border-color: rgb(96 165 250 / .42);
  color: #dbeafe;
}

.movh-home-header-more-icon {
  color: #60a5fa;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: .8;
}

.movh-discovery-section-head {
  align-items: center;
  display: flex;
  gap: .8rem;
  justify-content: space-between;
  margin-bottom: .85rem;
}

.movh-discovery-section-head h2 {
  color: #fff !important;
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.movh-discovery-more {
  background: rgb(255 255 255 / .07);
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 999px;
  color: #e2e8f0 !important;
  flex: 0 0 auto;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
  min-height: 2rem;
  padding: .55rem .75rem;
}

.movh-movie-rail {
  display: grid;
  gap: .85rem;
  grid-auto-columns: minmax(8.8rem, 10.5rem);
  grid-auto-flow: column;
  overflow-x: auto;
  overflow-y: hidden;
  padding: .15rem .1rem .95rem;
  scroll-snap-type: x proximity;
  scrollbar-color: rgb(229 9 20 / .7) rgb(255 255 255 / .08);
}

.movh-movie-rail > .movh-card,
.movh-movie-rail > .post-list,
.movh-rail-item {
  scroll-snap-align: start;
}

.movh-movie-rail .movh-card {
  height: 100%;
}

.movh-movie-rail--featured {
  grid-auto-columns: minmax(9.2rem, 11rem);
}

.movh-shortcut-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.movh-category-shortcut {
  background:
    linear-gradient(135deg, rgb(229 9 20 / .15), rgb(255 255 255 / .055)),
    rgb(16 23 34 / .92);
  border: 1px solid rgb(255 255 255 / .11);
  border-radius: var(--movh-radius);
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-height: 5rem;
  padding: .85rem;
}

.movh-category-shortcut:hover,
.movh-category-shortcut:focus-visible {
  border-color: rgb(229 9 20 / .45);
  color: #fff;
}

.movh-category-shortcut-name {
  color: #fff;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.25;
}

.movh-category-shortcut-count {
  color: #aeb8c8;
  font-size: .78rem;
  font-weight: 750;
}

.movh-discovery-grid {
  row-gap: 1rem !important;
}

.movh-filter-panel {
  background:
    linear-gradient(135deg, rgb(255 255 255 / .06), rgb(255 255 255 / .025)),
    rgb(12 16 23 / .92);
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: var(--movh-radius);
  box-shadow: var(--movh-shadow-soft);
  margin-bottom: 1rem;
  padding: .85rem;
}

.movh-filter-desktop,
.movh-filter-group,
.movh-mobile-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.movh-filter-desktop {
  flex-direction: column;
}

.movh-filter-group {
  align-items: center;
}

.movh-filter-label {
  color: #9ca3af;
  flex: 0 0 3.5rem;
  font-size: .78rem;
  font-weight: 900;
}

.movh-filter-chip {
  align-items: center;
  background: rgb(255 255 255 / .065);
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: 999px;
  color: #e5edf8 !important;
  display: inline-flex;
  font-size: .8rem;
  font-weight: 850;
  line-height: 1;
  min-height: 2rem;
  padding: .55rem .72rem;
}

.movh-filter-chip:hover,
.movh-filter-chip:focus-visible,
.movh-filter-chip.is-active {
  background: rgb(229 9 20 / .18);
  border-color: rgb(229 9 20 / .42);
  color: #fff !important;
}

.movh-mobile-filter {
  display: none;
}

.movh-mobile-filter summary {
  align-items: center;
  background: var(--movh-red);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: .9rem;
  font-weight: 900;
  justify-content: center;
  min-height: 2.65rem;
  padding: .7rem 1rem;
}

.movh-mobile-filter summary::-webkit-details-marker {
  display: none;
}

.movh-mobile-filter-body {
  background: #0b0f16;
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -18px 46px rgb(0 0 0 / .48);
  color: #fff;
  padding: 1rem;
}

.movh-mobile-filter-head {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: .8rem;
}

.movh-mobile-filter-head strong {
  font-size: 1.05rem;
  font-weight: 950;
}

.movh-mobile-filter-head span {
  color: #9ca3af;
  font-size: .8rem;
  font-weight: 750;
}

.movh-single-main .promo-banners {
  margin-bottom: 1rem;
}

.movh-single-main .movh-player {
  scroll-margin-top: 6rem;
}

.movh-single-main .movh-trailer-card {
  margin-top: 1rem;
}

.movh-mobile-sticky-watch {
  display: none;
}

@media (min-width: 1024px) {
  .movh-movie-rail {
    grid-auto-columns: minmax(9.4rem, 10.7rem);
  }
}

@media (max-width: 1023px) {
  .movh-shortcut-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .movh-discovery-hero,
  .movh-single-discovery-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 1rem;
  }

  .movh-discovery-hero {
    padding-top: 10rem;
  }

  .movh-discovery-hero::after,
  .movh-single-discovery-hero::after {
    background:
      linear-gradient(0deg, rgb(5 6 8 / .96) 0%, rgb(5 6 8 / .84) 54%, rgb(5 6 8 / .4) 100%);
  }

  .movh-discovery-hero-poster {
    display: none;
  }

  .movh-single-discovery-poster {
    max-width: 11rem;
  }

  .movh-single-discovery-copy,
  .movh-single-discovery-desc,
  .movh-single-discovery-title {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .movh-single-discovery-copy {
    max-width: calc(100vw - 3rem);
  }

  .movh-discovery-hero-title,
  .movh-single-discovery-title {
    font-size: 1.55rem !important;
    max-width: 100%;
  }

  .movh-discovery-hero-desc,
  .movh-single-discovery-desc {
    font-size: .9rem;
  }

  .movh-single-hero-facts {
    display: grid;
    gap: .4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: .75rem;
    max-width: calc(100vw - 3rem);
    width: 100%;
  }

  .movh-single-hero-fact {
    justify-content: space-between;
    min-height: 1.82rem;
    overflow: hidden;
    padding: .38rem .52rem;
    width: 100%;
  }

  .movh-single-hero-fact strong {
    font-size: .6rem;
  }

  .movh-single-hero-fact em {
    font-size: .72rem;
  }

  .movh-single-hero-cats {
    flex-direction: column;
    gap: .35rem;
    margin-top: .65rem;
    max-width: calc(100vw - 3rem);
    width: 100%;
  }

  .movh-single-hero-cats-label {
    line-height: 1.2;
  }

  .movh-single-hero-cats ul {
    gap: .38rem;
  }

  .movh-single-hero-cats a {
    font-size: .68rem;
    min-height: 1.5rem;
    padding: .34rem .55rem;
  }

  .movh-movie-rail {
    grid-auto-columns: minmax(7.6rem, 8.4rem);
    margin-left: -.25rem;
    margin-right: -.25rem;
    padding-left: .25rem;
    padding-right: .25rem;
  }

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

  .movh-category-shortcuts {
    margin-top: .8rem;
  }

  .movh-category-shortcuts .movh-discovery-section-head {
    margin-bottom: .65rem;
  }

  .movh-category-shortcuts .movh-discovery-section-head h2 {
    font-size: 1rem !important;
    line-height: 1.25;
  }

  .movh-category-shortcuts .movh-shortcut-grid {
    gap: .55rem;
  }

  .movh-category-shortcuts .movh-category-shortcut {
    background:
      linear-gradient(135deg, rgb(255 255 255 / .075), rgb(255 255 255 / .025)),
      rgb(16 19 26 / .96);
    border-color: rgb(255 255 255 / .1);
    box-shadow:
      0 10px 24px rgb(0 0 0 / .26),
      inset 0 1px 0 rgb(255 255 255 / .05);
    min-height: 3.9rem;
    overflow: hidden;
    padding: .62rem 1.9rem .62rem .82rem;
    position: relative;
  }

  .movh-category-shortcuts .movh-category-shortcut::before {
    background: linear-gradient(180deg, #ff3040, #e50914);
    border-radius: 999px;
    bottom: .72rem;
    box-shadow: 0 0 16px rgb(229 9 20 / .28);
    content: "";
    left: 0;
    position: absolute;
    top: .72rem;
    width: 3px;
  }

  .movh-category-shortcuts .movh-category-shortcut::after {
    color: rgb(255 255 255 / .58);
    content: "›";
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: .72rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .movh-category-shortcuts .movh-category-shortcut-name {
    display: -webkit-box;
    font-size: .88rem;
    line-height: 1.18;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .movh-category-shortcuts .movh-category-shortcut-count {
    color: #aeb8c8;
    font-size: .72rem;
    line-height: 1.1;
    margin-top: .08rem;
  }

  .movh-filter-desktop {
    display: none;
  }

  .movh-mobile-filter {
    display: block;
  }

  .archive.category .movh-filter-desktop,
  .post-type-archive-movie .movh-filter-desktop,
  .post-type-archive-serie .movh-filter-desktop {
    display: flex;
  }

  .archive.category .movh-mobile-filter,
  .post-type-archive-movie .movh-mobile-filter,
  .post-type-archive-serie .movh-mobile-filter {
    display: none;
  }

  .movh-mobile-filter[open] .movh-mobile-filter-body {
    bottom: 0;
    left: 0;
    max-height: 76vh;
    overflow-y: auto;
    position: fixed;
    right: 0;
    z-index: 70;
  }

  .movh-mobile-filter-options {
    gap: .5rem;
  }

  .movh-mobile-sticky-watch {
    align-items: center;
    background:
      linear-gradient(135deg, rgb(229 9 20 / .98), rgb(255 48 64 / .98));
    border: 1px solid rgb(255 255 255 / .16);
    border-radius: 10px;
    bottom: .75rem;
    box-shadow: 0 18px 44px rgb(0 0 0 / .52);
    color: #fff !important;
    display: flex;
    gap: .85rem;
    justify-content: space-between;
    left: .75rem;
    min-height: 3.4rem;
    padding: .65rem .8rem;
    position: fixed;
    right: .75rem;
    z-index: 65;
  }

  .movh-mobile-sticky-title {
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.2;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .movh-mobile-sticky-watch strong {
    flex: 0 0 auto;
    font-size: .9rem;
    font-weight: 950;
  }

}

/* Homepage cinematic top hero */
.movh-home-cinema-intro {
  background:
    linear-gradient(90deg, rgb(3 5 9 / .94) 0%, rgb(3 5 9 / .78) 42%, rgb(3 5 9 / .22) 100%),
    linear-gradient(0deg, rgb(3 5 9 / .96) 0%, rgb(3 5 9 / .36) 44%, rgb(3 5 9 / .66) 100%),
    var(--movh-home-hero-image, none),
    radial-gradient(circle at 72% 20%, rgb(229 9 20 / .34), transparent 34%),
    #08090d !important;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgb(229 9 20 / .24);
  box-shadow: inset 0 -1px 0 rgb(255 255 255 / .04), 0 26px 70px rgb(0 0 0 / .42);
  min-height: clamp(21rem, 36vw, 34rem);
  overflow: hidden;
  padding: 0 !important;
  position: relative;
  text-align: left !important;
}

.movh-home-cinema-intro::before {
  background:
    linear-gradient(90deg, rgb(229 9 20 / .86), transparent),
    rgb(255 255 255 / .08);
  content: "";
  height: 3px;
  left: max(1rem, calc((100% - 80rem) / 2));
  position: absolute;
  right: max(1rem, calc((100% - 80rem) / 2));
  top: 0;
  z-index: 1;
}

.movh-home-cinema-inner {
  align-items: flex-end;
  box-sizing: border-box;
  display: flex;
  margin: 0 auto;
  min-height: inherit;
  padding: clamp(3rem, 6vw, 5.4rem) clamp(1rem, 3vw, 2rem);
  position: relative;
  width: min(100%, 80rem);
  z-index: 1;
}

.movh-home-cinema-copy {
  max-width: 54rem;
}

.movh-home-cinema-content {
  color: #fff;
}

.movh-home-cinema-content .widget,
.movh-home-cinema-content :where(div, section) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.movh-home-cinema-title,
.movh-home-cinema-content :where(h1, h2, h3) {
  color: #fff !important;
  font-size: clamp(2.1rem, 4.8vw, 5rem) !important;
  font-weight: 950 !important;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 13ch;
  text-shadow: 0 14px 38px rgb(0 0 0 / .72);
}

.movh-home-cinema-content p {
  color: #dbe4ef;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 750;
  line-height: 1.75;
  margin: .8rem 0 0;
  max-width: 44rem;
  text-shadow: 0 8px 24px rgb(0 0 0 / .7);
}

.movh-home-cinema-feature {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.25rem;
}

.movh-home-cinema-feature span {
  color: #ff8a92;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.movh-home-cinema-feature a {
  color: #fff !important;
  font-size: clamp(1rem, 1.7vw, 1.32rem);
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 8px 22px rgb(0 0 0 / .7);
}

.movh-home-cinema-meta,
.movh-home-cinema-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .85rem;
}

.movh-home-cinema-meta span {
  background: rgb(255 255 255 / .1);
  border: 1px solid rgb(255 255 255 / .16);
  border-radius: 999px;
  color: #fff;
  font-size: .8rem;
  font-weight: 850;
  line-height: 1;
  padding: .5rem .68rem;
}

.movh-home-cinema-actions {
  gap: .75rem;
  margin-top: 1.1rem;
}

.movh-home-cinema-watch,
.movh-home-cinema-browse {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: .95rem;
  font-weight: 950;
  justify-content: center;
  min-height: 3rem;
  padding: .8rem 1.12rem;
}

.movh-home-cinema-watch {
  background: var(--movh-red);
  box-shadow: 0 16px 34px rgb(229 9 20 / .28);
  color: #fff !important;
}

.movh-home-cinema-watch:hover,
.movh-home-cinema-watch:focus-visible {
  background: var(--movh-red-hover);
  color: #fff !important;
}

.movh-home-cinema-browse {
  background: rgb(255 255 255 / .1);
  border: 1px solid rgb(255 255 255 / .16);
  color: #fff !important;
}

@media (max-width: 767px) {
  .movh-home-cinema-intro {
    background:
      linear-gradient(0deg, rgb(3 5 9 / .97) 0%, rgb(3 5 9 / .74) 50%, rgb(3 5 9 / .22) 100%),
      var(--movh-home-hero-image, none),
      #08090d !important;
    background-position: center top;
    background-size: cover;
    min-height: 29rem;
  }

  .movh-home-cinema-inner {
    align-items: flex-end;
    padding: 8.5rem 1rem 1.35rem;
  }

  .movh-home-cinema-title,
  .movh-home-cinema-content :where(h1, h2, h3) {
    font-size: clamp(2rem, 10vw, 3.15rem) !important;
    max-width: 12ch;
  }

  .movh-home-cinema-content p {
    font-size: .92rem;
    line-height: 1.65;
  }

  .movh-home-cinema-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .movh-home-cinema-watch,
  .movh-home-cinema-browse {
    min-height: 2.8rem;
    padding-left: .72rem;
    padding-right: .72rem;
  }
}

.movh-home-cinema-intro.movh-featured-slider {
  background:
    radial-gradient(circle at 78% 18%, rgb(229 9 20 / .22), transparent 30%),
    linear-gradient(180deg, #07080c, #030406) !important;
  min-height: clamp(29rem, 42vw, 39rem);
}

.movh-home-cinema-intro.movh-featured-slider::before {
  display: none;
}

@media (max-width: 767px) {
  .movh-home-cinema-intro.movh-featured-slider {
    background:
      radial-gradient(circle at 70% 12%, rgb(229 9 20 / .18), transparent 30%),
      linear-gradient(180deg, #07080c, #030406) !important;
    min-height: 36rem;
  }
}

/* Featured slider spacing polish */
.movh-home-cinema-intro.movh-featured-slider {
  min-height: clamp(29rem, 38vw, 35rem);
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-slide-inner {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 15rem);
  padding-bottom: clamp(6.2rem, 9vw, 7.4rem);
  padding-top: clamp(2.4rem, 4vw, 3.6rem);
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-copy {
  max-width: 49rem;
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-title {
  font-size: clamp(2.15rem, 4.2vw, 4.25rem) !important;
  line-height: 1.06;
  max-width: 18ch;
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-title a,
.movh-home-cinema-intro.movh-featured-slider .movh-featured-desc,
.movh-home-cinema-intro.movh-featured-slider .movh-featured-thumb span {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-title a {
  -webkit-line-clamp: 3;
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-desc {
  -webkit-line-clamp: 2;
  max-width: 40rem;
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-actions {
  margin-top: .95rem;
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-poster {
  max-width: 15rem;
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-controls {
  bottom: 1rem;
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-thumbs {
  bottom: .9rem;
  contain: none;
  gap: .4rem;
  grid-auto-columns: 3.2rem;
  max-width: none;
  overflow: visible;
  right: max(1rem, calc((100% - 80rem) / 2 + 1.75rem));
  width: max-content;
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-thumb {
  gap: 0;
  grid-template-columns: 1fr;
  min-height: 0;
  padding: .22rem;
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-thumb img {
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  width: 100%;
}

.movh-home-cinema-intro.movh-featured-slider .movh-featured-thumb span {
  height: 1px;
  position: absolute;
  width: 1px;
  -webkit-line-clamp: 1;
}

@media (max-width: 1023px) {
  .movh-home-cinema-intro.movh-featured-slider .movh-featured-slide-inner {
    grid-template-columns: minmax(0, 1fr) minmax(8.5rem, 12rem);
  }
}

@media (max-width: 1279px) {
  .movh-home-cinema-intro.movh-featured-slider .movh-featured-thumbs {
    display: none;
  }
}

@media (max-width: 767px) {
  .movh-home-cinema-intro.movh-featured-slider {
    min-height: 34.5rem;
  }

  .movh-home-cinema-intro.movh-featured-slider .movh-featured-slide-inner {
    grid-template-columns: 1fr;
    padding: 9.75rem 1rem 5.3rem;
  }

  .movh-home-cinema-intro.movh-featured-slider .movh-featured-title {
    font-size: clamp(1.85rem, 8.8vw, 2.85rem) !important;
    max-width: 12.5ch;
  }

  .movh-home-cinema-intro.movh-featured-slider .movh-featured-controls {
    bottom: .85rem;
  }

  .movh-home-cinema-intro.movh-featured-slider .movh-featured-actions {
    display: grid;
    gap: .55rem;
    grid-template-columns: minmax(0, 8.2rem) minmax(0, 9.4rem);
    margin-top: .75rem;
    width: fit-content;
  }

  .movh-home-cinema-intro.movh-featured-slider .movh-featured-watch,
  .movh-home-cinema-intro.movh-featured-slider .movh-featured-browse {
    border-radius: 8px;
    box-sizing: border-box;
    font-size: .86rem;
    height: 2.55rem;
    line-height: 1;
    min-height: 0;
    padding: .42rem .65rem;
    white-space: nowrap;
  }
}

/* Dark Red Cinema Depth polish */
body {
  background:
    linear-gradient(180deg, rgb(8 8 11) 0%, rgb(4 4 6) 48%, rgb(2 2 3) 100%),
    repeating-linear-gradient(90deg, rgb(255 255 255 / .018) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgb(229 9 20 / .025) 0 1px, transparent 1px 120px) !important;
}

.movh-site-header {
  background:
    linear-gradient(180deg, rgb(18 20 25 / .98), rgb(7 8 11 / .98)) !important;
  border: 1px solid rgb(229 9 20 / .18);
  border-top-color: rgb(255 255 255 / .07);
  box-shadow:
    0 18px 54px rgb(0 0 0 / .56),
    inset 0 1px 0 rgb(255 255 255 / .06),
    inset 0 -1px 0 rgb(229 9 20 / .15);
}

.movh-nav {
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgb(7 8 12 / .88), rgb(4 5 8 / .96)) !important;
  box-shadow:
    0 18px 44px rgb(0 0 0 / .46),
    inset 0 1px 0 rgb(255 255 255 / .04);
}

.movh-content-shell,
.movh-archive-hero,
.movh-filter-panel,
.movh-detail-panel,
.movh-summary-card,
.movh-trailer-card,
.movh-player-shell,
.movh-episode-panel,
.archive-desc-wrap,
.movh-sidebar .widget {
  background:
    linear-gradient(145deg, rgb(19 22 29 / .96), rgb(9 10 14 / .96)) !important;
  border-color: rgb(229 9 20 / .18) !important;
  box-shadow:
    0 24px 70px rgb(0 0 0 / .46),
    inset 0 1px 0 rgb(255 255 255 / .06),
    inset 0 -1px 0 rgb(0 0 0 / .52);
}

.movh-content-shell {
  background:
    linear-gradient(145deg, rgb(17 19 25 / .97), rgb(7 8 11 / .98)) !important;
  border-color: rgb(229 9 20 / .22) !important;
}

.movh-featured-slider {
  box-shadow:
    0 30px 90px rgb(0 0 0 / .58),
    inset 0 -1px 0 rgb(229 9 20 / .26),
    inset 0 1px 0 rgb(255 255 255 / .06);
}

.movh-featured-slide {
  background:
    linear-gradient(90deg, rgb(3 5 9 / .97) 0%, rgb(3 5 9 / .82) 43%, rgb(3 5 9 / .34) 100%),
    linear-gradient(0deg, rgb(3 5 9 / .96) 0%, rgb(3 5 9 / .38) 50%, rgb(3 5 9 / .78) 100%),
    var(--movh-slide-image, none),
    #07080c !important;
}

.movh-featured-poster,
.movh-single-discovery-poster,
.movh-discovery-hero-poster {
  box-shadow:
    0 28px 72px rgb(0 0 0 / .6),
    0 0 0 1px rgb(255 255 255 / .08),
    0 0 38px rgb(229 9 20 / .14);
}

.movh-featured-watch,
.movh-discovery-watch,
.movh-home-cinema-watch,
.movh-mobile-sticky-watch {
  box-shadow:
    0 16px 34px rgb(229 9 20 / .34),
    inset 0 1px 0 rgb(255 255 255 / .18),
    inset 0 -1px 0 rgb(80 0 0 / .5);
}

.movh-featured-browse,
.movh-discovery-secondary,
.movh-home-cinema-browse,
.movh-featured-arrow,
.movh-discovery-more,
.movh-filter-chip {
  box-shadow:
    0 10px 26px rgb(0 0 0 / .24),
    inset 0 1px 0 rgb(255 255 255 / .08);
}

.movh-featured-arrow,
.movh-featured-thumb,
.movh-filter-chip,
.movh-category-shortcut,
.movh-sidebar .widget li {
  background:
    linear-gradient(180deg, rgb(255 255 255 / .09), rgb(255 255 255 / .035)) !important;
  border-color: rgb(255 255 255 / .12) !important;
}

.movh-card,
.post-list.movh-card {
  background:
    linear-gradient(180deg, rgb(19 22 29 / .95), rgb(9 10 14 / .98)) !important;
  border: 1px solid rgb(255 255 255 / .09);
  box-shadow:
    0 16px 38px rgb(0 0 0 / .36),
    inset 0 1px 0 rgb(255 255 255 / .05);
  overflow: hidden;
  transform: translateY(0);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, filter .18s ease;
}

.movh-card:hover,
.movh-card:focus-within,
.post-list.movh-card:hover,
.post-list.movh-card:focus-within {
  border-color: rgb(229 9 20 / .42);
  box-shadow:
    0 26px 58px rgb(0 0 0 / .52),
    0 0 30px rgb(229 9 20 / .13),
    inset 0 1px 0 rgb(255 255 255 / .08);
  transform: translateY(-5px);
}

.movh-card.hover\:scale-110:hover,
.post-list.movh-card.hover\:scale-110:hover {
  transform: translateY(-5px) scale(1.025) !important;
}

.movh-card-poster {
  background: #050609;
  box-shadow: inset 0 -40px 50px rgb(0 0 0 / .42);
}

.post-list.movh-card img {
  filter: saturate(1.06) contrast(1.04);
  transition: filter .18s ease, transform .18s ease;
}

.post-list.movh-card:hover img,
.post-list.movh-card:focus-within img {
  filter: saturate(1.12) contrast(1.08) brightness(1.04);
  transform: scale(1.025);
}

.movh-card-body {
  background:
    linear-gradient(180deg, rgb(8 10 14 / .76), rgb(5 6 8 / .98));
}

.movh-sidebar .widget {
  position: relative;
}

.movh-sidebar .widget-title,
.movh-discovery-section-head h2,
.movh-section-title,
.movh-page-title {
  text-shadow: 0 8px 28px rgb(0 0 0 / .66);
}

.movh-sidebar .widget li {
  box-shadow:
    0 8px 22px rgb(0 0 0 / .22),
    inset 0 1px 0 rgb(255 255 255 / .05);
}

.movh-sidebar .widget li:hover,
.movh-filter-chip:hover,
.movh-filter-chip:focus-visible,
.movh-filter-chip.is-active,
.movh-category-shortcut:hover,
.movh-category-shortcut:focus-visible {
  background:
    linear-gradient(180deg, rgb(229 9 20 / .24), rgb(80 6 12 / .24)) !important;
  border-color: rgb(229 9 20 / .44) !important;
  box-shadow:
    0 14px 34px rgb(0 0 0 / .34),
    0 0 24px rgb(229 9 20 / .13),
    inset 0 1px 0 rgb(255 255 255 / .08);
}

.movh-movie-rail {
  scrollbar-color: rgb(229 9 20 / .82) rgb(255 255 255 / .08);
}

.movh-filter-panel {
  padding: 1rem;
}

.movh-filter-label {
  color: #c7d0dd;
}

/* Navigation UX refresh */
.movh-nav {
  border-bottom: 1px solid rgb(229 9 20 / .28) !important;
}

.movh-nav-inner {
  align-items: center;
  min-height: 0;
}

.movh-menu-wrap {
  min-width: 0;
}

.movh-menu-wrap #primary-menu {
  align-items: center;
  display: flex;
  gap: .45rem;
  margin: 0 !important;
  padding: 0 !important;
}

.movh-menu-wrap #primary-menu > * + * {
  margin-left: 0 !important;
}

.movh-menu-wrap li {
  flex: 0 0 auto;
}

.movh-menu-wrap .menu-item-has-children {
  position: relative;
}

.movh-menu-wrap .menu-item-has-children > a {
  gap: .42rem;
}

.movh-menu-wrap .menu-item-has-children > a::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: .42rem;
  margin-top: -.18rem;
  opacity: .78;
  transform: rotate(45deg);
  transition: opacity .16s ease, transform .16s ease;
  width: .42rem;
}

.movh-menu-wrap .menu-item-has-children:hover > a::after,
.movh-menu-wrap .menu-item-has-children:focus-within > a::after {
  opacity: 1;
  transform: translateY(.12rem) rotate(45deg);
}

.movh-menu-wrap a {
  align-items: center;
  border: 1px solid transparent;
  min-height: 2.35rem;
  white-space: nowrap;
}

.movh-menu-wrap .current-menu-item > a,
.movh-menu-wrap .current-menu-ancestor > a,
.movh-menu-wrap .current_page_item > a {
  background: linear-gradient(180deg, rgb(229 9 20 / .28), rgb(92 6 12 / .42)) !important;
  border-color: rgb(229 9 20 / .52);
  box-shadow:
    0 12px 26px rgb(0 0 0 / .34),
    inset 0 1px 0 rgb(255 255 255 / .12);
  color: #fff !important;
}

.movh-search-wrap {
  min-width: 0;
}

.movh-search-form {
  margin: 0;
}

.movh-search-submit {
  background: var(--movh-red);
  border-radius: 999px;
}

.movh-search-submit:hover,
.movh-search-submit:focus-visible {
  background: #ff2333;
}

@media (min-width: 768px) {
  .movh-menu-wrap .dropdown-menu {
    background:
      linear-gradient(145deg, rgb(18 21 28 / .98), rgb(8 9 13 / .98));
    border: 1px solid rgb(229 9 20 / .22);
    border-radius: 8px;
    box-shadow:
      0 18px 42px rgb(0 0 0 / .5),
      inset 0 1px 0 rgb(255 255 255 / .07);
    display: none;
    flex-direction: column;
    gap: .25rem;
    left: 0;
    list-style: none;
    margin: 0;
    max-width: calc(100vw - 2rem);
    min-width: max-content;
    padding: .4rem;
    position: absolute;
    top: calc(100% + .18rem);
    width: max-content;
    z-index: 80;
  }

  .movh-menu-wrap .dropdown-menu::before {
    content: "";
    height: .55rem;
    left: 0;
    position: absolute;
    right: 0;
    top: -.55rem;
  }

  .movh-menu-wrap .menu-item-has-children:hover > .dropdown-menu,
  .movh-menu-wrap .menu-item-has-children:focus-within > .dropdown-menu {
    display: flex;
  }

  .movh-menu-wrap .dropdown-item {
    border-radius: 8px;
    color: #dbeafe;
    display: flex;
    justify-content: flex-start;
    min-height: 2.25rem;
    padding: .62rem .78rem;
    width: auto;
  }

  .movh-menu-wrap .dropdown-item:hover,
  .movh-menu-wrap .dropdown-item:focus-visible {
    background: rgb(229 9 20 / .16);
    color: #fff;
  }
}

@media (min-width: 1024px) {
  .movh-nav-inner {
    display: grid !important;
    gap: .85rem;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 27rem);
    padding-bottom: .7rem !important;
    padding-top: .7rem !important;
  }

  .movh-menu-wrap {
    display: flex !important;
    grid-column: 1;
    justify-content: flex-start !important;
    overflow: visible;
    padding-bottom: .15rem;
    width: 100% !important;
  }

  .movh-menu-wrap #primary-menu {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    min-width: max-content;
    width: max-content !important;
  }

  .movh-menu-wrap a {
    font-size: .88rem;
    padding: .62rem .78rem;
  }

  .movh-search-wrap {
    display: flex !important;
    grid-column: 2;
    justify-content: flex-end !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .movh-search-wrap > div,
  .movh-search-form {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .movh-nav-inner {
    display: grid !important;
    gap: .7rem;
    grid-template-columns: minmax(0, 1fr);
    padding: .85rem 1rem !important;
  }

  .movh-menu-wrap {
    display: flex !important;
    justify-content: flex-start !important;
    overflow: visible;
    padding-bottom: .1rem;
    width: 100% !important;
  }

  .movh-menu-wrap #primary-menu {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    min-width: max-content;
    width: max-content !important;
  }

  .movh-menu-wrap a {
    font-size: .9rem;
    padding: .62rem .8rem;
  }

  .movh-search-wrap {
    display: flex !important;
    justify-content: center !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .movh-search-wrap > div,
  .movh-search-form {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .movh-nav-inner {
    gap: .65rem;
    padding: .7rem .85rem !important;
  }

  .movh-icon-btn {
    background:
      linear-gradient(180deg, rgb(255 255 255 / .1), rgb(255 255 255 / .035)),
      rgb(13 16 22 / .96);
    border-color: rgb(229 9 20 / .22);
    box-shadow:
      0 10px 24px rgb(0 0 0 / .3),
      inset 0 1px 0 rgb(255 255 255 / .08);
  }

  .movh-menu-wrap:not(.hidden),
  .movh-search-wrap:not(.hidden) {
    background:
      linear-gradient(145deg, rgb(18 21 28 / .98), rgb(8 9 13 / .98));
    border: 1px solid rgb(229 9 20 / .2);
    border-radius: 8px;
    box-shadow:
      0 18px 42px rgb(0 0 0 / .44),
      inset 0 1px 0 rgb(255 255 255 / .06);
    display: flex !important;
    margin-top: .45rem !important;
    max-height: 60vh;
    overflow-y: auto;
    padding: .7rem;
    width: 100% !important;
  }

  .movh-menu-wrap:not(.hidden) {
    justify-content: flex-start !important;
  }

  .movh-menu-wrap #primary-menu {
    align-items: stretch;
    flex-direction: column !important;
    gap: .35rem;
    width: 100% !important;
  }

  .movh-menu-wrap .menu-item-has-children > a::after {
    display: none;
  }

  .movh-menu-wrap .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    list-style: none;
    margin: .25rem 0 0;
    padding: 0 0 0 .5rem;
  }

  .movh-menu-wrap a {
    border-color: rgb(255 255 255 / .08);
    border-radius: 8px;
    justify-content: flex-start;
    font-size: .9rem;
    line-height: 1.15;
    min-height: 2.35rem;
    padding: .58rem .78rem;
    width: 100%;
  }

  .movh-menu-wrap .dropdown-menu a {
    font-size: .86rem;
    min-height: 2.15rem;
    padding: .5rem .7rem;
  }

  .movh-search-wrap:not(.hidden) {
    justify-content: center !important;
  }

  .movh-search-wrap > div,
  .movh-search-form {
    width: 100%;
  }
}

.movh-footer-menu-band,
.movh-footer-widget-band {
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .04);
}

@media (max-width: 767px) {
  .movh-home-cinema-intro.movh-featured-slider .movh-featured-slide {
    background:
      linear-gradient(90deg, rgb(3 5 9 / .88) 0%, rgb(3 5 9 / .52) 48%, rgb(3 5 9 / .14) 100%),
      linear-gradient(0deg, rgb(3 5 9 / .9) 0%, rgb(3 5 9 / .38) 44%, rgb(3 5 9 / .08) 100%),
      var(--movh-slide-image, none),
      #07080c !important;
    background-position: center center, center center, 58% center, center center !important;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat !important;
    background-size: cover, cover, cover, cover !important;
  }

  .movh-content-shell,
  .movh-archive-hero,
  .movh-filter-panel,
  .movh-sidebar .widget {
    box-shadow:
      0 16px 42px rgb(0 0 0 / .38),
      inset 0 1px 0 rgb(255 255 255 / .05);
  }

  .movh-card:hover,
  .movh-card:focus-within,
  .post-list.movh-card:hover,
  .post-list.movh-card:focus-within,
  .movh-card.hover\:scale-110:hover,
  .post-list.movh-card.hover\:scale-110:hover {
    transform: none !important;
  }

  .movh-category-shortcuts .movh-category-shortcut {
    background:
      linear-gradient(135deg, rgb(255 255 255 / .075), rgb(255 255 255 / .025)),
      rgb(16 19 26 / .96) !important;
    border-color: rgb(255 255 255 / .1) !important;
  }
}

/* Compact SEO Link Hub sidebar widgets */
.movh-sidebar .widget.widget_rish_widget_category {
  padding: .82rem !important;
}

.movh-sidebar .widget.widget_rish_widget_category .widget-title {
  background:
    linear-gradient(90deg, rgb(229 9 20 / .22), rgb(255 255 255 / .055) 50%, rgb(255 255 255 / .018)) !important;
  border-color: rgb(229 9 20 / .24) !important;
  border-radius: 8px;
  font-size: .98rem !important;
  line-height: 1.18;
  margin-bottom: .7rem !important;
  min-height: 2.85rem;
  padding: .62rem .72rem !important;
}

.movh-sidebar .widget.widget_rish_widget_category .widget-title::before {
  flex-basis: .28rem;
  height: 1.28rem;
}

.movh-sidebar .widget.widget_rish_widget_category .movh-seo-linkhub-list {
  display: grid;
  gap: .42rem;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.movh-sidebar .widget.widget_rish_widget_category .movh-seo-linkhub-item {
  background:
    linear-gradient(180deg, rgb(255 255 255 / .085), rgb(255 255 255 / .03)),
    rgb(15 18 25 / .96) !important;
  border: 1px solid rgb(255 255 255 / .1) !important;
  border-radius: 8px;
  box-shadow:
    0 8px 20px rgb(0 0 0 / .22),
    inset 0 1px 0 rgb(255 255 255 / .045);
  margin: 0;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.movh-sidebar .widget.widget_rish_widget_category .movh-seo-linkhub-link {
  align-items: center;
  color: #eef2f7 !important;
  display: flex;
  font-size: .82rem !important;
  font-weight: 800 !important;
  gap: .58rem;
  line-height: 1.18;
  min-height: 2.42rem;
  min-width: 0;
  padding: .48rem 1.32rem .48rem .58rem;
  position: relative;
}

.movh-sidebar .widget.widget_rish_widget_category .movh-seo-linkhub-link::before {
  background:
    linear-gradient(180deg, rgb(255 255 255 / .24), rgb(255 255 255 / .04)),
    var(--movh-red);
  border-radius: 999px;
  box-shadow:
    0 0 14px rgb(229 9 20 / .22),
    inset 0 1px 0 rgb(255 255 255 / .22);
  color: #fff;
  content: "🎬";
  display: inline-flex;
  flex: 0 0 1.18rem;
  font-size: .68rem;
  height: 1.18rem;
  justify-content: center;
  line-height: 1;
  text-shadow: 0 1px 4px rgb(0 0 0 / .42);
  width: 1.18rem;
}

.movh-sidebar .widget.widget_rish_widget_category .movh-seo-linkhub-link::after {
  border-right: 2px solid rgb(255 255 255 / .42);
  border-top: 2px solid rgb(255 255 255 / .42);
  content: "";
  height: .42rem;
  position: absolute;
  right: .62rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: .42rem;
}

.movh-sidebar .widget.widget_rish_widget_category .movh-seo-linkhub-item:hover,
.movh-sidebar .widget.widget_rish_widget_category .movh-seo-linkhub-item:focus-within {
  background:
    linear-gradient(180deg, rgb(229 9 20 / .22), rgb(80 6 12 / .22)),
    rgb(18 20 28 / .98) !important;
  border-color: rgb(229 9 20 / .46) !important;
  box-shadow:
    0 12px 28px rgb(0 0 0 / .34),
    0 0 20px rgb(229 9 20 / .12),
    inset 0 1px 0 rgb(255 255 255 / .06);
}

@media (max-width: 767px) {
  .movh-sidebar .widget.widget_rish_widget_category .movh-seo-linkhub-list {
    gap: .5rem;
  }

  .movh-sidebar .widget.widget_rish_widget_category .movh-seo-linkhub-link {
    font-size: .78rem !important;
    min-height: 2.4rem;
    padding-bottom: .48rem;
    padding-top: .48rem;
  }
}

/* Single detail spotlight: keep the movie hero above the sidebars. */
.movh-content-shell > .movh-single-discovery-hero {
  box-sizing: border-box;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .movh-content-shell.has-left-sidebar > .movh-single-discovery-hero {
    grid-column: 1 / -1 !important;
    justify-self: stretch;
    order: 0;
    width: auto;
  }
}

@media (max-width: 480px) {
  .movh-single-discovery-copy,
  .movh-single-discovery-desc,
  .movh-single-discovery-title,
  .movh-single-hero-facts,
  .movh-single-hero-cats {
    max-width: 19.5rem;
  }

  .movh-single-discovery-title {
    font-size: 1.42rem !important;
    line-height: 1.15;
  }

  .movh-single-hero-facts {
    grid-template-columns: 1fr;
  }

  .movh-single-hero-fact {
    justify-content: flex-start;
  }
}

/* Sidebar category links: remove the leading circular icon. */
.movh-sidebar .widget.widget_rish_widget_category .movh-seo-linkhub-link {
  gap: 0;
  padding-left: .78rem;
}

.movh-sidebar .widget.widget_rish_widget_category .movh-seo-linkhub-link::before {
  content: none !important;
  display: none !important;
}

/* Search results page */
.movh-search-main {
  min-width: 0;
}

.movh-search-hero {
  background:
    radial-gradient(circle at 92% 0%, rgb(229 9 20 / .18), transparent 28%),
    linear-gradient(145deg, rgb(19 22 29 / .96), rgb(9 10 14 / .98)) !important;
  border: 1px solid rgb(229 9 20 / .2);
  border-radius: 8px;
  box-shadow:
    0 24px 70px rgb(0 0 0 / .46),
    inset 0 1px 0 rgb(255 255 255 / .06),
    inset 0 -1px 0 rgb(0 0 0 / .52);
  overflow: hidden;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  position: relative;
}

.movh-search-hero::before {
  background: linear-gradient(90deg, var(--movh-red), rgb(255 75 87 / .4), transparent);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.movh-search-hero-copy {
  margin-bottom: 1rem;
  max-width: 58rem;
  min-width: 0;
}

.movh-search-kicker {
  color: #ff8a92;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  margin: 0 0 .55rem;
  text-transform: uppercase;
}

.movh-search-title {
  margin: 0;
  overflow-wrap: anywhere;
}

.movh-search-summary {
  color: #b9c0cc;
  font-size: .95rem;
  line-height: 1.65;
  margin: .65rem 0 0;
}

.movh-search-page-form {
  align-items: stretch;
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
  max-width: 54rem;
  width: 100%;
}

.movh-search-page-field {
  align-items: center;
  background: rgb(255 255 255 / .075);
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 8px;
  display: flex;
  flex: 1 1 auto;
  min-height: 3rem;
  min-width: 0;
  padding: 0 .85rem;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.movh-search-page-field:focus-within {
  background: rgb(255 255 255 / .095);
  border-color: rgb(255 75 87 / .56);
  box-shadow: 0 0 0 3px rgb(229 9 20 / .16);
}

.movh-search-page-field svg {
  color: #ff8a92;
  flex: 0 0 1.12rem;
  height: 1.12rem;
  margin-right: .62rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 1.12rem;
}

.movh-search-page-field input {
  background: transparent;
  border: 0;
  color: #f8fafc;
  flex: 1 1 auto;
  font-size: .98rem;
  font-weight: 700;
  min-width: 0;
  outline: 0;
}

.movh-search-page-field input::placeholder {
  color: #9ca3af;
  font-weight: 650;
}

.movh-search-page-submit {
  align-items: center;
  background: linear-gradient(180deg, #ff3441, var(--movh-red));
  border: 1px solid rgb(255 255 255 / .14);
  border-radius: 8px;
  box-shadow:
    0 14px 26px rgb(229 9 20 / .26),
    inset 0 1px 0 rgb(255 255 255 / .18);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .95rem;
  font-weight: 900;
  justify-content: center;
  min-height: 3rem;
  min-width: 6.8rem;
  padding: 0 1.15rem;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.movh-search-page-submit:hover,
.movh-search-page-submit:focus-visible {
  background: linear-gradient(180deg, #ff4b57, #c80612);
  border-color: rgb(255 75 87 / .58);
  box-shadow:
    0 18px 34px rgb(229 9 20 / .34),
    inset 0 1px 0 rgb(255 255 255 / .2);
  outline: 0;
  transform: translateY(-1px);
}

.movh-search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .9rem;
}

.movh-search-actions a {
  align-items: center;
  background: rgb(255 255 255 / .065);
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: 999px;
  color: #edf2f7 !important;
  display: inline-flex;
  font-size: .8rem;
  font-weight: 850;
  line-height: 1;
  min-height: 2.15rem;
  padding: .58rem .78rem;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.movh-search-actions a:hover,
.movh-search-actions a:focus-visible {
  background: rgb(229 9 20 / .18);
  border-color: rgb(229 9 20 / .42);
  color: #fff !important;
  outline: 0;
}

.movh-search-result-head {
  align-items: center;
  background:
    linear-gradient(90deg, rgb(229 9 20 / .18), rgb(255 255 255 / .04) 46%, rgb(255 255 255 / .012));
  border: 1px solid rgb(229 9 20 / .2);
  border-radius: 8px;
  display: flex;
  gap: .85rem;
  justify-content: space-between;
  margin-bottom: .85rem;
  min-height: 3.2rem;
  padding: .72rem .85rem;
}

.movh-search-result-head h2 {
  align-items: center;
  display: flex;
  font-size: 1.05rem !important;
  gap: .65rem;
  line-height: 1.2;
  margin: 0 !important;
  min-width: 0;
}

.movh-search-result-head h2::before {
  background: linear-gradient(180deg, #ff4b57, var(--movh-red));
  border-radius: 999px;
  box-shadow: 0 0 18px rgb(229 9 20 / .36);
  content: "";
  flex: 0 0 .32rem;
  height: 1.35rem;
}

.movh-search-result-head span {
  background: rgb(255 255 255 / .065);
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: 999px;
  color: #dbe3ef;
  flex: 0 0 auto;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
  padding: .48rem .62rem;
}

.movh-search-grid {
  margin-top: .1rem;
}

.movh-search-recommend {
  min-width: 0;
}

.movh-search-recommend-head {
  margin-bottom: .85rem;
}

.movh-search-recommend-head span {
  background: rgb(229 9 20 / .14);
  border-color: rgb(229 9 20 / .34);
  color: #fff;
}

.movh-search-recommend-grid {
  margin-top: 0;
}

.movh-search-empty {
  align-items: flex-start;
  background:
    radial-gradient(circle at 90% 0%, rgb(229 9 20 / .15), transparent 28%),
    linear-gradient(145deg, rgb(19 22 29 / .96), rgb(9 10 14 / .98));
  border: 1px solid rgb(229 9 20 / .2);
  border-radius: 8px;
  box-shadow:
    0 24px 70px rgb(0 0 0 / .42),
    inset 0 1px 0 rgb(255 255 255 / .06);
  display: flex;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.35rem);
}

.movh-search-empty-icon {
  align-items: center;
  background:
    linear-gradient(180deg, rgb(255 255 255 / .12), rgb(255 255 255 / .04)),
    rgb(229 9 20 / .16);
  border: 1px solid rgb(229 9 20 / .34);
  border-radius: 8px;
  color: #ff8a92;
  display: inline-flex;
  flex: 0 0 3.3rem;
  height: 3.3rem;
  justify-content: center;
  width: 3.3rem;
}

.movh-search-empty-icon svg {
  height: 1.55rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 1.55rem;
}

.movh-search-empty h2 {
  font-size: 1.2rem !important;
  line-height: 1.25;
  margin: 0 0 .45rem !important;
}

.movh-search-empty p {
  color: #b9c0cc;
  line-height: 1.7;
  margin: 0;
}

.movh-search-tips {
  color: #dbe3ef;
  display: grid;
  gap: .45rem;
  list-style: none;
  margin: .85rem 0 0;
  padding: 0;
}

.movh-search-tips li {
  align-items: center;
  display: flex;
  font-size: .9rem;
  gap: .55rem;
  line-height: 1.4;
}

.movh-search-tips li::before {
  background: var(--movh-red);
  border-radius: 999px;
  box-shadow: 0 0 12px rgb(229 9 20 / .34);
  content: "";
  flex: 0 0 .42rem;
  height: .42rem;
  width: .42rem;
}

@media (max-width: 767px) {
  .movh-search-hero {
    padding: .95rem;
  }

  .movh-search-summary {
    font-size: .9rem;
  }

  .movh-search-page-form {
    flex-direction: column;
    gap: .58rem;
  }

  .movh-search-page-field,
  .movh-search-page-submit {
    width: 100%;
  }

  .movh-search-actions {
    gap: .42rem;
  }

  .movh-search-actions a {
    font-size: .76rem;
    min-height: 2.05rem;
    padding-inline: .62rem;
  }

  .movh-search-result-head {
    align-items: flex-start;
    flex-direction: column;
    gap: .55rem;
  }

  .movh-search-empty {
    flex-direction: column;
  }
}
