@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #070707;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #070707;
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
}

body.menu-open, body.search-open {
  overflow: hidden;
}

button, input {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.page-gutter {
  padding-inline: clamp(1rem, 4.15vw, 5rem);
}

.content-wrap {
  overflow: hidden;
  padding-bottom: 5rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -4rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: #e50914;
  color: #fff;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  transition: transform 0.2s, background-color 0.2s;
}

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

.button--primary {
  background: #e50914;
  box-shadow: 0 8px 20px rgba(229, 9, 20, 0.2);
}

.button--primary:hover {
  background: rgb(96.3445378151%, 6.9887955182%, 11.4565826331%);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  height: 5.25rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.84), transparent);
  transition: background 0.25s, box-shadow 0.25s;
}

.site-header.is-solid {
  background: rgba(12, 12, 12, 0.98);
  box-shadow: 0 1px rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: clamp(1rem, 4.15vw, 5rem);
  gap: clamp(1.25rem, 3vw, 4rem);
}

.brand {
  flex: 0 0 auto;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
}

.subscribe-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0;
  padding: 0.43rem 0.62rem;
  border-radius: 0.2rem;
  background: rgba(255, 202, 40, 0.12);
  color: #ffca28;
  font-size: 0.72rem;
  font-weight: 700;
}

.subscribe-button span {
  font-size: 0.86rem;
}

.subscribe-button em {
  font-style: normal;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 1.7vw, 2rem);
  margin-right: auto;
}

.desktop-nav__item {
  display: flex;
  align-items: center;
}

.desktop-nav__link {
  position: relative;
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  gap: 0.36rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c4c4c4;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.desktop-nav__link--toggle {
  cursor: pointer;
}

.desktop-nav__caret {
  display: block;
  width: 0.46rem;
  height: 0.46rem;
  margin-top: -0.28rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  color: #878787;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s, color 0.2s;
}

.desktop-nav__link:hover, .desktop-nav__link.is-active {
  color: #fff;
}

.desktop-nav__link.is-active::after {
  position: absolute;
  right: 0;
  bottom: -0.08rem;
  left: 0;
  height: 2px;
  background: #e50914;
  content: "";
}

.desktop-nav__item.is-open .desktop-nav__link, .desktop-nav__item.is-open .desktop-nav__caret {
  color: #fff;
}

.desktop-nav__item.is-open .desktop-nav__caret {
  margin-top: 0.2rem;
  transform: rotate(225deg);
}

.desktop-mega {
  position: fixed;
  z-index: 2;
  top: calc(5.25rem - 0.3rem);
  left: 50%;
  display: grid;
  width: min(64rem, 100vw - 4rem);
  padding: 1.5rem;
  transform: translate(-50%, -0.65rem);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #171717;
  box-shadow: 0 1.6rem 3.5rem rgba(0, 0, 0, 0.5);
  grid-template-columns: repeat(3, 1fr);
  transition: transform 0.22s ease, opacity 0.18s, visibility 0.22s;
}

.desktop-mega::before {
  position: absolute;
  top: 0;
  right: 1.5rem;
  left: 1.5rem;
  height: 2px;
  background: #e50914;
  content: "";
}

.desktop-nav__item.is-open .desktop-mega {
  transform: translate(-50%, 0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.desktop-mega__column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.58rem;
  padding: 0.2rem 1.65rem 0.35rem;
}

.desktop-mega__column + .desktop-mega__column {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-mega__column h3 {
  margin: 0 0 0.28rem;
  color: #fff;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-mega__column a {
  color: #b7b7b7;
  font-size: 0.79rem;
  transition: color 0.18s, transform 0.18s;
}

.desktop-mega__column a:hover, .desktop-mega__column a:focus {
  transform: translateX(0.2rem);
  color: #e50914;
  outline: 0;
}

.site-header:has(.desktop-nav__item.is-open) {
  background: rgba(12, 12, 12, 0.98);
  box-shadow: 0 1px rgba(255, 255, 255, 0.08);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: auto;
}

.icon-button {
  position: relative;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  place-items: center;
  background: transparent;
}

.icon-button svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.menu-toggle {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.55rem;
  border: 0;
  place-content: center;
  gap: 0.28rem;
  background: transparent;
}

.menu-toggle i {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: #fff;
  transition: transform 0.2s, opacity 0.2s;
}

.search-popover {
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 5.25rem;
  transform: translateY(-105%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #151515;
  box-shadow: 0 0.75rem 1.8rem rgba(0, 0, 0, 0.28);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s, visibility 0.32s;
}

.search-popover.is-open {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.search-popover__main {
  display: grid;
  width: min(100%, 1640px);
  height: 100%;
  align-items: center;
  grid-template-columns: minmax(15rem, 1.25fr) minmax(17rem, 1fr) auto;
  gap: clamp(0.75rem, 2vw, 2rem);
  margin: 0 auto;
  padding-inline: clamp(1rem, 4.15vw, 5rem);
}

.search-popover__field {
  position: relative;
  display: flex;
  min-width: 0;
  height: 2.75rem;
  align-items: center;
  padding: 0 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s, background 0.2s;
}

.search-popover__field:focus-within {
  border-color: rgba(229, 9, 20, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.search-popover__field svg {
  width: 1rem;
  flex: 0 0 auto;
  margin-right: 0.65rem;
  fill: none;
  stroke: #b6b6b6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.search-popover__field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 0.8rem;
}

.search-popover__field input::placeholder {
  color: #999;
}

.search-popover__loader {
  display: none;
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  margin-left: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #e50914;
  border-radius: 50%;
  animation: search-spin 0.7s linear infinite;
}

.search-popover.is-loading .search-popover__loader {
  display: block;
}

.search-popover__hot {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.45rem;
  overflow: hidden;
  white-space: nowrap;
}

.search-popover__hot > span {
  margin-right: 0.12rem;
  color: #8f8f8f;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-popover__hot a {
  overflow: hidden;
  max-width: 8rem;
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 3rem;
  color: #dedede;
  font-size: 0.67rem;
  font-weight: 700;
  text-overflow: ellipsis;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.search-popover__hot a:hover {
  border-color: #e50914;
  background: #e50914;
  color: #fff;
}

.search-popover__close {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: transparent;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  transition: background 0.2s;
}

.search-popover__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.search-results {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100svh - 5.25rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(-0.85rem);
  visibility: hidden;
  opacity: 0;
  background: rgba(18, 18, 18, 0.99);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.38);
  scrollbar-color: #4a4a4a transparent;
  scrollbar-width: thin;
  transition: transform 0.28s 0.08s ease, opacity 0.2s 0.08s, visibility 0.28s 0.08s;
}

.search-popover.is-open .search-results {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.search-results__inner {
  width: min(100%, 1640px);
  padding: 0.8rem clamp(1rem, 4.15vw, 5rem) 1rem;
  margin: 0 auto;
}

.search-results__heading {
  margin: 0 0 0.65rem;
  color: #aaa;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.search-results__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.search-result {
  display: grid;
  min-width: 0;
  grid-template-columns: 4.6rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem;
  border: 1px solid transparent;
  border-radius: 0.23rem;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.2s, background 0.2s;
}

.search-result:hover {
  border-color: rgba(229, 9, 20, 0.65);
  background: rgba(255, 255, 255, 0.09);
}

.search-result img {
  width: 4.6rem;
  height: 2.65rem;
  object-fit: cover;
}

.search-result span {
  display: grid;
  min-width: 0;
  gap: 0.18rem;
}

.search-result b {
  overflow: hidden;
  color: #f4f4f4;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result small {
  overflow: hidden;
  color: #999;
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result i {
  color: #e50914;
  font-size: 0.65rem;
  font-style: normal;
}

@keyframes search-spin {
  to {
    transform: rotate(360deg);
  }
}
.mobile-menu {
  position: fixed;
  z-index: 60;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: min(20rem, 86vw);
  overflow-y: auto;
  padding: 1.25rem;
  transform: translateX(-100%);
  flex-direction: column;
  background: #121212;
  box-shadow: 15px 0 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.28s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu__brand {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
}

.mobile-menu__top button {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.mobile-menu nav {
  display: grid;
  padding-top: 1rem;
}

.mobile-menu nav > a, .mobile-menu__group summary {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #c6c6c6;
  font-weight: 500;
}

.mobile-menu nav > a.is-active {
  color: #e50914;
}

.mobile-menu__group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__group summary {
  border-bottom: 0;
  cursor: pointer;
  list-style: none;
}

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

.mobile-menu__group summary span {
  color: #929292;
  font-size: 1rem;
  transition: transform 0.2s;
}

.mobile-menu__group[open] summary {
  color: #fff;
}

.mobile-menu__group[open] summary span {
  transform: rotate(180deg);
}

.mobile-menu__mega {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0.2rem 0 1.1rem;
}

.mobile-menu__mega section {
  display: grid;
  gap: 0.35rem;
}

.mobile-menu__mega b {
  color: #8c8c8c;
  font-size: 0.61rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mobile-menu__mega a {
  padding: 0.26rem 0;
  color: #c6c6c6;
  font-size: 0.8rem;
}

.mobile-menu__mega a:active {
  color: #e50914;
}

.mobile-menu__subscribe {
  margin-top: auto;
  padding: 0.9rem 1rem;
  border-radius: 0.2rem;
  background: rgba(255, 202, 40, 0.12);
  color: #ffca28;
  font-weight: 700;
  text-align: center;
}

.backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.25s, visibility 0.25s;
}

.backdrop.is-open {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 1200px) {
  .desktop-nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .mobile-menu {
    width: min(42rem, 86vw);
  }
  .mobile-menu__mega {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .search-popover__main {
    grid-template-columns: minmax(15rem, 1fr) minmax(15rem, 1fr) auto;
    gap: 0.85rem;
  }
  .search-popover__hot a:last-child {
    display: none;
  }
  .search-results__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .site-header, .site-header__inner {
    height: 4.35rem;
  }
  .brand {
    font-size: 1.52rem;
  }
  .subscribe-button {
    margin-left: 0;
    padding: 0.38rem 0.45rem;
  }
  .subscribe-button em {
    display: none;
  }
  .search-popover {
    height: 4.35rem;
  }
  .search-popover__main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    padding-inline: 1rem;
  }
  .search-popover__hot {
    display: none;
  }
  .search-popover__field {
    height: 2.5rem;
  }
  .search-results {
    max-height: calc(100svh - 4.35rem);
  }
  .search-results__inner {
    padding: 0.75rem 1rem 1rem;
  }
  .search-results__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .search-result {
    min-width: 0;
    grid-template-columns: 5rem minmax(0, 1fr) auto;
  }
  .search-result img {
    width: 5rem;
    height: 2.9rem;
  }
}
.app-promo {
  display: flex;
  width: min(1640px, 100%);
  margin: 0 auto 5.5rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.app-promo h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.app-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.app-promo__actions img {
  width: 8.85rem;
  border-radius: 0.25rem;
  transition: transform 0.2s;
}

.app-promo__actions a:hover img {
  transform: translateY(-2px);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #101010;
}

.site-footer__inner {
  display: grid;
  width: min(1640px, 100%);
  margin: 0 auto;
  padding-top: 4.2rem;
  padding-bottom: 3.6rem;
  grid-template-columns: minmax(19rem, 1.65fr) repeat(3, minmax(7rem, 1fr));
  gap: clamp(1.75rem, 3.5vw, 4.5rem);
}

.footer-banner {
  min-width: 0;
}

.footer-banner__viewport {
  overflow: hidden;
  border-radius: 0.32rem;
  background: #1d1d1d;
}

.footer-banner__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.footer-banner__slide {
  position: relative;
  display: block;
  min-width: 100%;
  overflow: hidden;
  aspect-ratio: 2.05/1;
  background: #222;
  isolation: isolate;
}

.footer-banner__slide::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.12) 72%), linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent);
  content: "";
}

.footer-banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.footer-banner__slide:hover img {
  transform: scale(1.045);
}

.footer-banner__slide > span {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  display: grid;
  gap: 0.12rem;
}

.footer-banner__slide small {
  color: #d4d4d4;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-banner__slide b {
  overflow: hidden;
  max-width: 70%;
  color: #fff;
  font-size: clamp(1rem, 1.65vw, 1.4rem);
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-banner__slide i {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
  color: #fff;
  font-size: 0.63rem;
  font-style: normal;
  font-weight: 700;
}

.footer-banner__slide i em {
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  place-items: center;
  background: #e50914;
  color: #fff;
  font-size: 0.45rem;
  font-style: normal;
}

.footer-banner__controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.footer-banner__controls > button {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  place-items: center;
  background: transparent;
  color: #eee;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s;
}

.footer-banner__controls > button:hover {
  border-color: #e50914;
  background: #e50914;
}

.footer-banner__dots {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.footer-banner__dots button {
  width: 0.35rem;
  height: 0.35rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #606060;
  transition: width 0.2s, border-radius 0.2s, background 0.2s;
}

.footer-banner__dots button.is-active {
  width: 1.15rem;
  border-radius: 0.4rem;
  background: #e50914;
}

.footer-links {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links h3 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 0.92rem;
}

.footer-links a {
  color: #a8a8a8;
  font-size: 0.79rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-links a:hover {
  transform: translateX(0.15rem);
  color: #e50914;
}

.site-footer__bottom {
  display: flex;
  width: min(1640px, 100%);
  margin: 0 auto;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: space-between;
  color: #868686;
  font-size: 0.72rem;
}

.site-footer__bottom a {
  color: #c6c6c6;
}

.site-footer__bottom a:hover {
  color: #e50914;
}

.footer-download {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  color: #fff;
}

.footer-download b {
  margin-right: 0.3rem;
  font-size: 0.72rem;
}

.footer-download img {
  width: 5.8rem;
  border-radius: 0.15rem;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem 1.5rem;
  }
  .footer-banner {
    grid-column: 1/-1;
    max-width: 42rem;
  }
}
@media (max-width: 767px) {
  .app-promo {
    align-items: start;
    flex-direction: column;
    margin-bottom: 3.5rem;
    gap: 1.3rem;
  }
  .app-promo h2 {
    font-size: 1.65rem;
  }
  .app-promo__actions img {
    width: 8.15rem;
  }
  .site-footer__inner {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 1.2rem;
  }
  .footer-banner {
    grid-column: 1/-1;
  }
  .footer-banner__slide {
    aspect-ratio: 1.85/1;
  }
  .footer-links:last-child {
    grid-column: 1/-1;
  }
  .site-footer__bottom {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.66rem;
  }
  .footer-download {
    flex-wrap: wrap;
  }
  .footer-download b {
    flex-basis: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-banner__track, .footer-banner__slide img {
    transition: none;
  }
}
.ad-preroll {
  width: min(54rem, 100vw - 2rem);
  max-width: none;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0.55rem;
  background: #060606;
  color: #fff;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.7);
}

.ad-preroll::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(0.3rem);
}

.ad-preroll__frame {
  position: relative;
  min-height: min(30rem, 68svh);
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

.ad-preroll__media, .ad-preroll__asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ad-preroll__asset {
  object-fit: cover;
}

.ad-preroll__scrim {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.26) 67%, rgba(0, 0, 0, 0.48)), linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 48%);
}

.ad-preroll__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(30rem, 68svh);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 4vw, 2.75rem);
}

.ad-preroll__eyebrow, .fixed-ad__copy small {
  margin: 0;
  color: #e2e2e2;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ad-preroll__copy {
  max-width: 25rem;
  margin: auto 0;
}

.ad-preroll__copy h2 {
  max-width: 20rem;
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 3.15rem);
  line-height: 1.03;
}

.ad-preroll__copy p {
  margin: 0.85rem 0 0;
  color: #ddd;
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  line-height: 1.55;
}

.ad-preroll__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.24rem;
}

.ad-preroll__cta:hover {
  color: #e50914;
}

.ad-preroll__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ad-preroll__countdown {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  color: #ddd;
  font-size: 0.72rem;
}

.ad-preroll__countdown b {
  min-width: 1.3rem;
  color: #fff;
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.ad-preroll__countdown.is-complete b {
  color: #70e09b;
}

.ad-preroll__continue {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 0.2rem;
  background: #e50914;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  transition: background 0.2s, opacity 0.2s;
}

.ad-preroll__continue:disabled {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0.78;
}

.ad-preroll__continue:not(:disabled):hover {
  background: #fa1420;
}

.fixed-ad {
  position: fixed;
  z-index: 80;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 1rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
  animation: fixed-ad-enter 0.36s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.fixed-ad[hidden] {
  display: none;
}

.fixed-ad.is-leaving {
  animation: fixed-ad-leave 0.18s ease-in both;
}

.fixed-ad__panel {
  position: relative;
  width: min(45rem, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.32rem;
  background: #171717;
  box-shadow: 0 0.85rem 2.75rem rgba(0, 0, 0, 0.55);
  pointer-events: auto;
}

.fixed-ad__link {
  display: grid;
  min-height: 4.35rem;
  grid-template-columns: 7.4rem minmax(0, 1fr);
  color: #fff;
}

.fixed-ad__visual {
  overflow: hidden;
  background: #333;
}

.fixed-ad__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fixed-ad__link:hover .fixed-ad__visual img {
  transform: scale(1.05);
}

.fixed-ad__copy {
  display: grid;
  align-content: center;
  gap: 0.22rem;
  min-width: 0;
  padding: 0.55rem 3.1rem 0.55rem 0.85rem;
}

.fixed-ad__copy small {
  color: #aaa;
  font-size: 0.51rem;
}

.fixed-ad__copy strong {
  overflow: hidden;
  color: #f8f8f8;
  font-size: 0.74rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fixed-ad__copy > span {
  color: #e50914;
  font-size: 0.66rem;
  font-weight: 900;
}

.fixed-ad__close {
  position: absolute;
  top: 50%;
  right: 0.55rem;
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 0.2s;
}

.fixed-ad__close:hover {
  background: #e50914;
}

body.is-fullscreen .fixed-ad, body:has(.stream-player:fullscreen) .fixed-ad, body:has(.watch-layout.is-theater) .fixed-ad {
  display: none;
}

.discovery-ad {
  display: block;
  width: min(1640px, 100%);
  padding-inline: clamp(1rem, 4.15vw, 5rem);
  margin-inline: auto;
}

.discovery-ad[hidden] {
  display: none;
}

.discovery-ad__link {
  position: relative;
  display: grid;
  min-height: clamp(8.2rem, 12vw, 11rem);
  overflow: hidden;
  grid-template-columns: minmax(12rem, 0.76fr) minmax(0, 1.24fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.32rem;
  background: #181818;
  color: #fff;
  isolation: isolate;
}

.discovery-ad__visual {
  position: relative;
  overflow: hidden;
  background: #303030;
}

.discovery-ad__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 42%, #181818);
  content: "";
}

.discovery-ad__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.discovery-ad__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.38rem;
  min-width: 0;
  padding: clamp(1rem, 2.4vw, 1.8rem);
}

.discovery-ad__copy small {
  margin: 0;
  color: #9f9f9f;
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.discovery-ad__copy strong {
  color: #fff;
  font-size: clamp(0.95rem, 1.7vw, 1.4rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.discovery-ad__copy > span {
  max-width: 34rem;
  color: #bfbfbf;
  font-size: clamp(0.69rem, 1vw, 0.79rem);
  line-height: 1.5;
}

.discovery-ad__copy em {
  margin-top: 0.25rem;
  color: #e50914;
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 900;
}

.discovery-ad__copy em i {
  display: inline-block;
  margin-left: 0.2rem;
  font-size: 0.85rem;
  font-style: normal;
  transition: transform 0.2s;
}

.discovery-ad-slot--top .discovery-ad {
  margin-top: clamp(1.35rem, 3vw, 2.5rem);
}

.discovery-ad-slot--mid .discovery-ad, .discovery-ad-slot--tail .discovery-ad {
  margin-block: clamp(0.25rem, 1vw, 1rem);
}

.discovery-ad-slot--top + .discovery-section {
  padding-top: clamp(2.5rem, 4.5vw, 4.25rem);
}

.discovery-section:has(+ .discovery-ad-slot) {
  padding-bottom: clamp(2.25rem, 4vw, 4rem);
}

.player-inline-ad {
  width: min(100%, 103rem);
  margin: clamp(1.5rem, 3vw, 2.75rem) auto 0;
}

.player-inline-ad .discovery-ad {
  width: 100%;
  padding: 0;
}

@media (hover: hover) {
  .discovery-ad__link:hover {
    border-color: rgba(229, 9, 20, 0.82);
  }
  .discovery-ad__link:hover .discovery-ad__visual img {
    transform: scale(1.055);
  }
  .discovery-ad__link:hover .discovery-ad__copy em i {
    transform: translate(0.16rem, -0.16rem);
  }
}
@keyframes fixed-ad-enter {
  from {
    transform: translateY(1.5rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fixed-ad-leave {
  to {
    transform: translateY(1.2rem);
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .ad-preroll {
    width: min(100vw - 1rem, 32rem);
  }
  .ad-preroll__frame, .ad-preroll__content {
    min-height: min(31rem, 100svh - 1rem);
  }
  .ad-preroll__scrim {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.18) 70%), linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent);
  }
  .ad-preroll__content {
    padding: 1rem;
  }
  .ad-preroll__copy {
    margin: auto 0 1.2rem;
  }
  .ad-preroll__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
  .ad-preroll__continue {
    width: 100%;
  }
  .fixed-ad {
    right: 0.5rem;
    bottom: max(0.5rem, env(safe-area-inset-bottom));
    left: 0.5rem;
  }
  .fixed-ad__link {
    min-height: 4rem;
    grid-template-columns: 5.6rem minmax(0, 1fr);
  }
  .fixed-ad__copy {
    padding-left: 0.65rem;
  }
  .fixed-ad__copy strong {
    font-size: 0.69rem;
  }
  .discovery-ad {
    padding-inline: 1rem;
  }
  .discovery-ad__link {
    min-height: 7rem;
    grid-template-columns: 6.75rem minmax(0, 1fr);
  }
  .discovery-ad__visual::after {
    background: linear-gradient(90deg, transparent 22%, #181818);
  }
  .discovery-ad__copy {
    gap: 0.25rem;
    padding: 0.75rem;
  }
  .discovery-ad__copy small {
    font-size: 0.49rem;
  }
  .discovery-ad__copy strong {
    font-size: 0.8rem;
  }
  .discovery-ad__copy > span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.62rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .discovery-ad__copy em {
    margin-top: 0.05rem;
    font-size: 0.6rem;
  }
  .discovery-ad-slot--top .discovery-ad {
    margin-top: 1rem;
  }
  .discovery-ad-slot--top + .discovery-section {
    padding-top: 2.25rem;
  }
  .discovery-section:has(+ .discovery-ad-slot) {
    padding-bottom: 2.35rem;
  }
  .player-inline-ad {
    margin-top: 0.75rem;
    padding: 0 1rem;
  }
  .player-inline-ad .discovery-ad {
    padding: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fixed-ad, .fixed-ad.is-leaving {
    animation: none;
  }
}
.hero {
  position: relative;
  display: grid;
  min-height: 43rem;
  isolation: isolate;
  place-items: center start;
  overflow: hidden;
  background: #111;
}

.hero__visual, .hero__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.hero__visual {
  background: 77% center/cover no-repeat;
  transition: opacity 0.35s ease;
}

.hero.is-changing .hero__visual {
  opacity: 0.5;
}

.hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.62) 31%, rgba(0, 0, 0, 0.12) 65%, rgba(0, 0, 0, 0.04)), linear-gradient(0deg, #070707 0%, transparent 22%), linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 22%);
}

.hero__content {
  width: min(100%, 43.5rem);
  padding-top: 8.5rem;
  padding-bottom: 7rem;
  animation: content-in 0.55s both;
}

.hero.is-changing .hero__content {
  animation: none;
  opacity: 0.5;
  transform: translateY(0.5rem);
}

.hero__eyebrow {
  margin: 0 0 0.65rem;
  color: #e50914;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.1rem, 6.2vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: capitalize;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.25);
}

.hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  margin-top: 1.35rem;
  color: #f3f3f3;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero__meta .stars {
  color: #ffca28;
  letter-spacing: 0.06em;
}

.hero__meta .stars i {
  color: rgba(255, 202, 40, 0.48);
  font-style: normal;
}

.hero__meta .rating {
  padding: 0.2rem 0.45rem;
  border-radius: 0.12rem;
  background: #555;
  font-size: 0.65rem;
}

.hero__summary {
  max-width: 36rem;
  margin: 1.15rem 0;
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.hero__details {
  display: grid;
  gap: 0.25rem;
  max-width: 39rem;
  margin: 0 0 1.6rem;
  font-size: 0.82rem;
  line-height: 1.4;
}

.hero__details div {
  display: flex;
  gap: 0.35rem;
}

.hero__details dt {
  color: #e50914;
  font-weight: 700;
}

.hero__details dd {
  margin: 0;
  color: #dedede;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.trailer-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trailer-button__icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  place-items: center;
  font-size: 0.64rem;
  transition: background 0.2s, color 0.2s;
}

.trailer-button:hover .trailer-button__icon {
  background: #fff;
  color: #000;
}

.hero__controls {
  position: absolute;
  right: clamp(1rem, 4.15vw, 5rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero__controls > button {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.15rem;
  place-items: center;
  background: rgba(0, 0, 0, 0.24);
  font-size: 1.75rem;
  line-height: 1;
  transition: background 0.2s;
}

.hero__controls > button:hover {
  background: #e50914;
  border-color: #e50914;
}

.hero__dots {
  display: flex;
  gap: 0.4rem;
}

.hero__dots button {
  width: 1.4rem;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.2s, background 0.2s;
}

.hero__dots button.is-active {
  width: 2.4rem;
  background: #e50914;
}

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero {
    min-height: 42rem;
  }
  .hero__content {
    width: min(75%, 38rem);
    padding-top: 8rem;
  }
  .hero__visual {
    background-position: 65% center;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 42.5rem;
    align-items: end;
  }
  .hero__visual {
    background-position: 63% center;
  }
  .hero__shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.08)), linear-gradient(0deg, #070707 2%, rgba(0, 0, 0, 0.9) 19%, rgba(0, 0, 0, 0.04) 69%);
  }
  .hero__content {
    width: 100%;
    padding-top: 6.7rem;
    padding-bottom: 6.7rem;
  }
  .hero__eyebrow {
    font-size: 0.64rem;
  }
  .hero__title {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }
  .hero__meta {
    gap: 0.55rem 0.9rem;
    margin-top: 1rem;
    font-size: 0.76rem;
  }
  .hero__summary {
    display: -webkit-box;
    overflow: hidden;
    margin: 0.9rem 0;
    font-size: 0.83rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .hero__details {
    display: none;
  }
  .hero__buttons {
    gap: 1rem;
  }
  .trailer-button {
    font-size: 0.65rem;
  }
  .trailer-button__icon {
    width: 2.3rem;
    height: 2.3rem;
  }
  .hero__controls {
    right: auto;
    bottom: 1.5rem;
    left: clamp(1rem, 4.15vw, 5rem);
  }
  .hero__controls > button {
    display: none;
  }
}
.shelf {
  width: min(1640px, 100%);
  margin: 0 auto;
  padding: clamp(2.4rem, 4vw, 4.4rem) clamp(1rem, 4.15vw, 5rem) 0;
}

.shelf--watching {
  margin-top: clamp(-2.7rem, -3vw, -4rem);
  position: relative;
  z-index: 2;
}

.shelf__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.shelf__heading h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
}

.shelf__heading a {
  color: #b8b8b8;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s;
}

.shelf__heading a:hover {
  color: #e50914;
}

.shelf__heading a span {
  margin-left: 0.35rem;
  color: #e50914;
  font-size: 1rem;
}

.rail-shell {
  position: relative;
}

.rail {
  display: grid;
  grid-auto-columns: calc((100% - 6rem) / 6);
  grid-auto-flow: column;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.25rem 0 1.25rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail > * {
  scroll-snap-align: start;
}

.rail-arrow {
  position: absolute;
  z-index: 3;
  top: calc(50% - 1rem);
  display: grid;
  width: 2.7rem;
  height: 4.5rem;
  padding: 0;
  border: 0;
  place-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.72);
  font-size: 2.4rem;
  transition: opacity 0.2s, background 0.2s;
}

.rail-shell:hover .rail-arrow, .rail-arrow:focus-visible {
  opacity: 1;
}

.rail-arrow:hover {
  background: #e50914;
}

.rail-arrow--prev {
  left: 0;
  border-radius: 0 0.2rem 0.2rem 0;
}

.rail-arrow--next {
  right: 0;
  border-radius: 0.2rem 0 0 0.2rem;
}

.watch-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.22rem;
  background: #222;
  aspect-ratio: 1.78/1;
}

.watch-card__cover {
  position: absolute;
  inset: 0;
}

.watch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.watch-card:hover img {
  transform: scale(1.06);
}

.watch-card__info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 0.55rem;
  padding: 1.4rem 0.75rem 0.55rem;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9) 48%);
}

.watch-card__remaining {
  font-size: 0.7rem;
  font-weight: 700;
}

.watch-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.7rem;
}

.watch-card__row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-card__row a {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  padding-left: 0.13rem;
  border: 0;
  border-radius: 50%;
  place-items: center;
  pointer-events: auto;
  background: #e50914;
  font-size: 0.55rem;
}

.watch-card__progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.watch-card__progress i {
  display: block;
  height: 100%;
  background: #e50914;
}

.watch-card__remove {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.82);
  font-size: 1.1rem;
  transition: opacity 0.2s;
}

.watch-card:hover .watch-card__remove {
  opacity: 1;
}

.poster-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  background: #242424;
  aspect-ratio: 0.674/1;
  transform: translateZ(0);
  transition: transform 0.25s, box-shadow 0.25s;
}

.poster-card__cover {
  position: absolute;
  inset: 0;
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-card__gradient {
  position: absolute;
  inset: 35% 0 0;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.96));
}

.poster-card__info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.2rem 0.9rem 0.9rem;
  transform: translateY(50%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s, opacity 0.25s;
}

.poster-card__genre {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
}

.poster-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.poster-card__meta {
  margin: 0.35rem 0 0.85rem;
  color: #c4c4c4;
  font-size: 0.7rem;
}

.poster-card__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
}

.poster-card__actions button {
  display: grid;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 0.16rem;
  place-items: center;
  background: #353535;
}

.poster-card__actions a {
  display: grid;
  min-height: 2rem;
  padding: 0.2rem 0.65rem;
  border-radius: 0.16rem;
  place-items: center;
  background: #e50914;
  font-size: 0.68rem;
  font-weight: 700;
}

.poster-card__crown {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.18rem;
  pointer-events: none;
  place-items: center;
  background: #e50914;
  font-size: 0.9rem;
}

@media (hover: hover) {
  .poster-card:hover {
    z-index: 1;
    transform: scale(1.06);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  }
  .poster-card:hover .poster-card__info {
    transform: none;
    opacity: 1;
  }
}
.shelf--spotlight {
  padding-top: clamp(3.5rem, 7vw, 8rem);
}

.spotlight {
  position: relative;
  display: flex;
  min-height: 25rem;
  overflow: hidden;
  align-items: center;
  padding: clamp(2rem, 6vw, 6rem);
  border-radius: 0.35rem;
  background: #1c1c1c;
}

.spotlight::after {
  position: absolute;
  top: -30%;
  right: -5%;
  bottom: -30%;
  width: 48%;
  background: linear-gradient(90deg, #1c1c1c 0%, transparent 45%), linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.08));
  content: "";
}

.spotlight__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 36rem);
}

.spotlight__kicker, .app-promo__kicker {
  display: block;
  margin-bottom: 0.8rem;
  color: #e50914;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spotlight h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.spotlight p {
  max-width: 31rem;
  margin: 1rem 0 1.5rem;
  color: #c8c8c8;
  line-height: 1.6;
}

.spotlight__poster {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
}

.spotlight__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.rail--top-ten {
  grid-auto-columns: calc((100% - 6rem) / 6);
  gap: 1.1rem;
  padding-left: 1.8rem;
}

.top-ten-card {
  position: relative;
  display: grid;
  align-items: end;
  min-width: 0;
  aspect-ratio: 0.88/1;
}

.top-ten-card__rank {
  position: absolute;
  z-index: -1;
  bottom: -0.55rem;
  left: -1.7rem;
  color: transparent;
  font-size: clamp(5.5rem, 9vw, 9.5rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.15em;
  line-height: 0.75;
  -webkit-text-stroke: 2px #5f5f5f;
}

.top-ten-card img {
  width: 72%;
  height: 100%;
  margin-left: auto;
  border-radius: 0.2rem;
  object-fit: cover;
}

.feature-stage {
  display: grid;
  width: min(1640px, 100%);
  min-height: 35rem;
  margin: clamp(4rem, 7vw, 7rem) auto 0;
  grid-template-columns: minmax(10rem, 18%) 1fr;
  gap: 1.1rem;
}

.feature-stage__thumbnails {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 0.75rem;
}

.feature-stage__thumbnails figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0.22rem;
  opacity: 0.45;
  transition: opacity 0.2s, transform 0.2s;
}

.feature-stage__thumbnails figure.is-active, .feature-stage__thumbnails figure:hover {
  opacity: 1;
  transform: translateX(0.18rem);
}

.feature-stage__thumbnails figure.is-active::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: #e50914;
  content: "";
}

.feature-stage__thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-stage__thumbnails figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.3rem 0.65rem 0.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  font-size: 0.73rem;
  font-weight: 700;
}

.feature-stage__main {
  position: relative;
  overflow: hidden;
  border-radius: 0.3rem;
  background: #202020;
}

.feature-stage__main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-stage__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18) 62%), linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 42%);
}

.feature-stage__copy {
  position: absolute;
  z-index: 1;
  bottom: clamp(2rem, 5vw, 4rem);
  left: clamp(1.5rem, 5vw, 5rem);
  width: min(73%, 34rem);
}

.feature-stage__genre {
  color: #e50914;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-stage__copy h2 {
  margin: 0.2rem 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.feature-stage__meta {
  margin: 0.8rem 0;
  color: #ffca28;
  font-size: 0.78rem;
}

.feature-stage__description {
  max-width: 30rem;
  margin: 0 0 1.4rem;
  color: #d4d4d4;
  font-size: 0.89rem;
  line-height: 1.6;
}

.movie-of-year {
  position: relative;
  min-height: 34rem;
  margin-top: clamp(4.5rem, 7vw, 7rem);
  overflow: hidden;
  background: #121212;
  isolation: isolate;
}

.movie-of-year__backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.55) 39%, rgba(0, 0, 0, 0.08) 70%), linear-gradient(0deg, #080808 0%, transparent 27%), url("../images/pages/Movieof-the-year.webp") center/cover;
}

.movie-of-year__inner {
  display: flex;
  width: min(1640px, 100%);
  min-height: 34rem;
  margin: 0 auto;
  align-items: center;
}

.movie-of-year__copy {
  max-width: 34rem;
}

.movie-of-year__copy h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.movie-of-year__meta {
  margin: 1.15rem 0;
  color: #ffca28;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
}

.movie-of-year__meta span {
  color: rgba(255, 202, 40, 0.55);
}

.movie-of-year__copy h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
}

.movie-of-year__copy > p:not(.movie-of-year__meta) {
  max-width: 27rem;
  margin: 0 0 1.6rem;
  color: #d0d0d0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.spotlight--trending {
  min-height: 32rem;
}

.spotlight--trending::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #151515 2%, rgba(21, 21, 21, 0.82) 36%, rgba(21, 21, 21, 0.08) 76%), linear-gradient(0deg, rgba(0, 0, 0, 0.44), transparent 46%);
}

.spotlight__poster--wide {
  width: 100%;
}

.spotlight__poster--wide img {
  object-position: center;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .rail {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }
  .rail--top-ten {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }
}
@media (max-width: 767px) {
  .content-wrap {
    padding-bottom: 2.75rem;
  }
  .shelf {
    padding-top: 2.5rem;
  }
  .shelf--watching {
    margin-top: -1.5rem;
  }
  .shelf__heading {
    margin-bottom: 0.8rem;
  }
  .shelf__heading h2 {
    font-size: 1.05rem;
  }
  .shelf__heading a {
    font-size: 0.68rem;
  }
  .rail {
    grid-auto-columns: calc((100% - 0.75rem) / 2);
    gap: 0.75rem;
    padding-bottom: 0.85rem;
  }
  .rail--top-ten {
    grid-auto-columns: calc((100% - 0.75rem) / 2);
    padding-left: 1.15rem;
  }
  .rail-arrow {
    display: none;
  }
  .watch-card__info {
    padding: 1.2rem 0.5rem 0.4rem;
  }
  .watch-card__remaining, .watch-card__row {
    font-size: 0.6rem;
  }
  .watch-card__remove {
    display: none;
  }
  .poster-card__info {
    transform: none;
    opacity: 1;
    padding: 1.35rem 0.65rem 0.65rem;
  }
  .poster-card__genre {
    display: none;
  }
  .poster-card__title {
    font-size: 0.72rem;
  }
  .poster-card__meta {
    display: none;
  }
  .poster-card__actions {
    display: none;
  }
  .poster-card__crown {
    top: 0.35rem;
    right: 0.35rem;
    width: 1.45rem;
    height: 1.45rem;
    font-size: 0.72rem;
  }
  .feature-stage {
    min-height: 32rem;
    margin-top: 3.5rem;
    display: block;
    padding: 0 clamp(1rem, 4.15vw, 5rem);
  }
  .feature-stage__thumbnails {
    display: none;
  }
  .feature-stage__main {
    height: 32rem;
  }
  .feature-stage__main > img {
    object-position: 62% center;
  }
  .feature-stage__shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 5%, rgba(0, 0, 0, 0.18) 78%);
  }
  .feature-stage__copy {
    right: 1.4rem;
    bottom: 1.6rem;
    left: 1.4rem;
    width: auto;
  }
  .feature-stage__genre {
    font-size: 0.6rem;
  }
  .feature-stage__copy h2 {
    font-size: 2.5rem;
  }
  .feature-stage__description {
    font-size: 0.78rem;
  }
  .movie-of-year, .movie-of-year__inner {
    min-height: 34rem;
  }
  .movie-of-year__backdrop {
    background: linear-gradient(0deg, #080808 2%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.08) 73%), url("../images/pages/Movieof-the-year.webp") 61% center/cover;
  }
  .movie-of-year__inner {
    align-items: end;
    padding-bottom: 3rem;
  }
  .movie-of-year__copy h2 {
    font-size: 3.45rem;
  }
  .movie-of-year__copy > p:not(.movie-of-year__meta) {
    font-size: 0.82rem;
  }
  .shelf--spotlight {
    padding-top: 3.5rem;
  }
  .spotlight {
    min-height: 28rem;
    align-items: end;
    padding: 1.5rem;
  }
  .spotlight::after, .spotlight--trending::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, #191919 10%, rgba(25, 25, 25, 0.75) 45%, rgba(25, 25, 25, 0.05));
  }
  .spotlight__copy {
    width: 100%;
  }
  .spotlight h2 {
    font-size: 2.35rem;
  }
  .spotlight p {
    margin: 0.75rem 0 1.2rem;
    font-size: 0.85rem;
  }
  .spotlight__poster {
    width: 100%;
    height: 100%;
  }
  .top-ten-card__rank {
    left: -1.2rem;
    bottom: -0.3rem;
    font-size: 6rem;
    -webkit-text-stroke-width: 1px;
  }
}
.trailer-modal {
  width: min(51rem, 100vw - 2rem);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.35rem;
  overflow: hidden;
  background: #101010;
  color: #fff;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.7);
}

.trailer-modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.trailer-modal__screen {
  display: grid;
  min-height: min(54vw, 28rem);
  place-content: center;
  gap: 1rem;
  background: radial-gradient(circle at 54% 45%, rgba(229, 9, 20, 0.4), transparent 29%), linear-gradient(135deg, #262626, #090909);
  text-align: center;
}

.trailer-modal__screen span {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  place-items: center;
  padding-left: 0.2rem;
}

.trailer-modal__screen p {
  margin: 0;
  font-weight: 700;
}

.trailer-modal__close {
  position: absolute;
  z-index: 1;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}

.movie-page {
  background: #080808;
}

.movie-detail-hero {
  position: relative;
  display: flex;
  min-height: 49rem;
  isolation: isolate;
  align-items: end;
  overflow: hidden;
}

.movie-detail-hero__visual, .movie-detail-hero__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.movie-detail-hero__visual {
  background: url("../images/player/player-poster.webp") center/cover no-repeat;
  transition: opacity 0.3s;
}

.movie-detail-hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.62) 37%, rgba(0, 0, 0, 0.12) 71%), linear-gradient(0deg, #080808 0%, transparent 31%), linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 20%);
}

.movie-detail-hero__content {
  width: min(1640px, 100%);
  margin: 0 auto;
  padding-top: 7rem;
  padding-bottom: 4.6rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(4rem, 9vh, 8rem);
  color: #b9b9b9;
  font-size: 0.74rem;
}

.breadcrumbs a {
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: #e50914;
}

.breadcrumbs span {
  color: #707070;
  font-size: 1rem;
}

.breadcrumbs b {
  overflow: hidden;
  max-width: 16rem;
  color: #fff;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-detail-hero__copy {
  width: min(100%, 46rem);
}

.movie-detail-hero__genres {
  margin: 0 0 0.7rem;
  color: #e50914;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.movie-detail-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.25rem, 6vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.movie-detail-hero__description {
  display: -webkit-box;
  overflow: hidden;
  max-width: 43rem;
  margin: 1.15rem 0 0.3rem;
  color: #d2d2d2;
  font-size: 0.94rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.movie-detail-hero__description.is-expanded {
  display: block;
}

.read-more {
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}

.read-more span {
  display: inline-block;
  margin-left: 0.2rem;
  color: #e50914;
  transition: transform 0.2s;
}

.read-more.is-open span {
  transform: rotate(180deg);
}

.movie-facts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  color: #e5e5e5;
  font-size: 0.79rem;
  font-weight: 500;
}

.movie-facts li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.movie-facts li > span {
  padding: 0.23rem 0.43rem;
  border-radius: 0.16rem;
  background: #505050;
  font-size: 0.62rem;
  font-weight: 700;
}

.movie-language {
  margin: 0.75rem 0 0;
  color: #c4c4c4;
  font-size: 0.78rem;
}

.movie-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.movie-actions .button {
  border: 0;
  text-transform: none;
}

.watchlist-action {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.23rem;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s, border 0.2s;
}

.watchlist-action i {
  font-style: normal;
}

.watchlist-action:hover, .watchlist-action.is-saved {
  border-color: #e50914;
  background: #e50914;
}

.icon-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-actions button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.23rem;
  place-items: center;
  background: rgba(255, 255, 255, 0.09);
  font-size: 1.2rem;
  transition: border 0.2s, background 0.2s, color 0.2s;
}

.icon-actions button:hover, .icon-actions button.is-liked {
  border-color: #e50914;
  background: #e50914;
  color: #fff;
}

.movie-detail-content {
  width: min(1640px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4.15vw, 5rem) clamp(4rem, 8vw, 7rem);
}

.detail-shelf, .people-section, .reviews-section {
  padding-top: clamp(3.5rem, 6.5vw, 6rem);
}

.detail-shelf__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.detail-shelf__heading h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
}

.detail-shelf__heading a, .detail-shelf__heading > button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #c6c6c6;
  font-size: 0.76rem;
  font-weight: 700;
}

.detail-shelf__heading a:hover, .detail-shelf__heading > button:hover {
  color: #e50914;
}

.detail-shelf__heading span {
  margin-left: 0.3rem;
  color: #e50914;
  font-size: 1rem;
}

.detail-rail-wrap {
  position: relative;
}

.detail-rail {
  display: grid;
  grid-auto-columns: calc((100% - 6rem) / 6);
  grid-auto-flow: column;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.2rem 0 1.2rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.detail-rail::-webkit-scrollbar {
  display: none;
}

.detail-rail > * {
  scroll-snap-align: start;
}

.detail-rail-arrow {
  position: absolute;
  z-index: 2;
  top: calc(50% - 1.9rem);
  display: grid;
  width: 2.6rem;
  height: 4rem;
  padding: 0;
  border: 0;
  place-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.78);
  font-size: 2.3rem;
  transition: opacity 0.2s, background 0.2s;
}

.detail-rail-wrap:hover .detail-rail-arrow, .detail-rail-arrow:focus-visible {
  opacity: 1;
}

.detail-rail-arrow:hover {
  background: #e50914;
}

.detail-rail-arrow--prev {
  left: 0;
}

.detail-rail-arrow--next {
  right: 0;
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  background: #1d1d1d;
  aspect-ratio: 0.674/1;
  transform: translateZ(0);
  transition: transform 0.25s, box-shadow 0.25s;
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-poster::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
  content: "";
}

.detail-poster__label {
  position: absolute;
  z-index: 1;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.detail-poster__label small {
  display: block;
  margin-bottom: 0.2rem;
  color: #d5d5d5;
  font-size: 0.64rem;
  font-weight: 500;
}

@media (hover: hover) {
  .detail-poster:hover {
    z-index: 1;
    transform: scale(1.06);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.55);
  }
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(0.7rem, 1.5vw, 1.3rem);
}

.person {
  min-width: 0;
}

.person__image {
  overflow: hidden;
  border-radius: 0.25rem;
  aspect-ratio: 0.81/1;
  background: #202020;
}

.person__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s;
}

.person:hover img {
  transform: scale(1.05);
}

.person h3 {
  overflow: hidden;
  margin: 0.65rem 0 0.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.person p {
  margin: 0;
  color: #989898;
  font-size: 0.7rem;
}

.detail-rail--video {
  grid-auto-columns: calc((100% - 4rem) / 4);
}

.related-video {
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  background: #252525;
  aspect-ratio: 1.78/1;
}

.related-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.related-video:hover img {
  transform: scale(1.05);
}

.related-video::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 54%);
  content: "";
}

.related-video__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  border-radius: 50%;
  place-items: center;
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.7rem;
}

.related-video__title {
  position: absolute;
  z-index: 1;
  right: 0.75rem;
  bottom: 0.6rem;
  left: 0.75rem;
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reviews-section {
  max-width: 57rem;
}

.review-list {
  display: grid;
  gap: 1.3rem;
}

.review {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review__avatar {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  background: linear-gradient(135deg, #8c4b3b, #efb27a);
  font-size: 0.82rem;
  font-weight: 900;
}

.review__avatar--alt {
  background: linear-gradient(135deg, #755ec8, #c89df2);
}

.review__avatar--light {
  background: linear-gradient(135deg, #3a8b7e, #b2d6b1);
}

.review h3 {
  margin: 0.1rem 0 0.2rem;
  font-size: 0.86rem;
}

.review p {
  margin: 0;
  color: #c3c3c3;
  font-size: 0.8rem;
  line-height: 1.55;
}

.review .review__stars {
  margin-bottom: 0.4rem;
  color: #ffca28;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.review__stars i {
  color: rgba(255, 202, 40, 0.45);
  font-style: normal;
}

.review time {
  display: block;
  margin-top: 0.5rem;
  color: #828282;
  font-size: 0.68rem;
}

.detail-dialog {
  width: min(28rem, 100vw - 2rem);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.35rem;
  overflow: hidden;
  background: #191919;
  color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.7);
}

.detail-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
}

.detail-dialog__close {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
}

.detail-dialog__body {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.detail-dialog__body h2 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
}

.detail-dialog__watch {
  display: grid;
  min-height: 21rem;
  place-content: center;
  gap: 0.75rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent), url("../images/media/gameofhero.webp") center/cover;
  text-align: center;
}

.detail-dialog__watch span {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: auto;
  border: 2px solid #fff;
  border-radius: 50%;
  place-items: center;
  padding-left: 0.2rem;
}

.detail-dialog__watch p, .detail-dialog__watch h2 {
  margin: 0;
}

.detail-dialog__watch p {
  color: #ddd;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.detail-dialog__watch h2 {
  font-size: 1.7rem;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.share-options button {
  min-height: 4.6rem;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.25rem;
  background: #252525;
  color: #fff;
  font-size: 1.25rem;
  transition: background 0.2s;
}

.share-options button:hover {
  background: #e50914;
}

.share-options small {
  color: #ddd;
  font-size: 0.59rem;
}

.copy-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: #b8b8b8;
  font-size: 0.75rem;
}

.copy-field span {
  grid-column: 1/-1;
}

.copy-field input {
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.2rem;
  outline: none;
  background: #101010;
  color: #ddd;
}

.copy-field button, .dialog-primary {
  padding: 0.65rem 0.8rem;
  border: 0;
  border-radius: 0.2rem;
  background: #e50914;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
}

.check-row {
  display: flex;
  gap: 0.75rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ddd;
  font-size: 0.84rem;
}

.check-row input {
  accent-color: #e50914;
}

.detail-dialog label:not(.check-row):not(.copy-field) {
  display: grid;
  gap: 0.45rem;
  color: #ddd;
  font-size: 0.78rem;
}

.detail-dialog select, .detail-dialog textarea {
  width: 100%;
  resize: vertical;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.2rem;
  outline: 0;
  background: #111;
  color: #fff;
}

.quality-list {
  display: grid;
}

.quality-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #e50914;
  font-size: 1.2rem;
  text-align: left;
}

.quality-list span {
  display: grid;
  gap: 0.2rem;
  color: #fff;
  font-size: 0.82rem;
}

.quality-list small {
  color: #a3a3a3;
  font-size: 0.68rem;
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .movie-detail-hero {
    min-height: 47rem;
  }
  .detail-rail {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }
  .detail-rail--video {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }
  .people-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 767px) {
  .movie-detail-hero {
    min-height: 43rem;
    align-items: end;
  }
  .movie-detail-hero__visual {
    background-position: 61% center;
  }
  .movie-detail-hero__shade {
    background: linear-gradient(0deg, #080808 2%, rgba(0, 0, 0, 0.88) 31%, rgba(0, 0, 0, 0.04) 82%), linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent);
  }
  .movie-detail-hero__content {
    padding-top: 5.6rem;
    padding-bottom: 3rem;
  }
  .breadcrumbs {
    margin-bottom: auto;
  }
  .movie-detail-hero__copy {
    margin-top: 9rem;
  }
  .movie-detail-hero__genres {
    font-size: 0.62rem;
  }
  .movie-detail-hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }
  .movie-detail-hero__description {
    font-size: 0.8rem;
    line-height: 1.55;
  }
  .movie-facts {
    gap: 0.4rem 0.75rem;
    font-size: 0.67rem;
  }
  .movie-language {
    font-size: 0.7rem;
  }
  .movie-actions {
    gap: 0.55rem;
    margin-top: 1.4rem;
  }
  .movie-actions .button, .watchlist-action {
    min-height: 2.85rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.7rem;
  }
  .watchlist-action i {
    display: none;
  }
  .icon-actions {
    gap: 0.4rem;
  }
  .icon-actions button {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1rem;
  }
  .movie-detail-content {
    padding-bottom: 3.5rem;
  }
  .detail-shelf, .people-section, .reviews-section {
    padding-top: 3rem;
  }
  .detail-shelf__heading {
    margin-bottom: 0.9rem;
  }
  .detail-shelf__heading h2 {
    font-size: 1.08rem;
  }
  .detail-shelf__heading a, .detail-shelf__heading > button {
    font-size: 0.67rem;
  }
  .detail-rail {
    grid-auto-columns: calc((100% - 0.75rem) / 2);
    gap: 0.75rem;
    padding-bottom: 0.7rem;
  }
  .detail-rail--video {
    grid-auto-columns: 75%;
  }
  .detail-rail-arrow {
    display: none;
  }
  .detail-poster__label {
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    font-size: 0.68rem;
  }
  .detail-poster__label small {
    display: none;
  }
  .people-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 0.65rem;
  }
  .person h3 {
    font-size: 0.72rem;
  }
  .person p {
    font-size: 0.62rem;
  }
  .review {
    gap: 0.75rem;
  }
  .review__avatar {
    width: 2.4rem;
    height: 2.4rem;
  }
  .review p {
    font-size: 0.74rem;
  }
  .detail-dialog__body {
    padding: 1.5rem;
  }
}
.player-page {
  overflow: hidden;
  min-width: 0;
  background: #000;
}

.player-page__main {
  display: grid;
  width: 100%;
  min-height: 100svh;
  place-items: center;
  background: #000;
}

.stream-player {
  position: relative;
  display: grid;
  width: min(100vw, 1920px);
  max-height: 100svh;
  aspect-ratio: 16/9;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.stream-player__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.stream-player__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 26%, transparent 63%, rgba(0, 0, 0, 0.78));
  opacity: 0;
  transition: opacity 0.25s;
}

.stream-player.is-controls-visible .stream-player__shade, .stream-player.is-paused .stream-player__shade {
  opacity: 1;
}

.stream-player__big-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 5rem;
  height: 5rem;
  transform: translate(-50%, -50%) scale(0.9);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  place-items: center;
  padding-left: 0.3rem;
  opacity: 0;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 1.3rem;
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
}

.stream-player.is-paused .stream-player__big-play, .stream-player.is-controls-visible:hover .stream-player__big-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.stream-player__big-play:hover {
  background: #e50914;
  border-color: #e50914;
}

.stream-player__title {
  position: absolute;
  z-index: 2;
  top: 1.8rem;
  left: 5rem;
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.stream-player.is-controls-visible .stream-player__title {
  opacity: 1;
}

.stream-player__title span {
  color: #d0d0d0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stream-player__title b {
  font-size: 0.92rem;
}

.stream-player__controls {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 clamp(1rem, 2.5vw, 2.5rem) clamp(1rem, 2vw, 1.75rem);
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
}

.stream-player.is-controls-visible .stream-player__controls, .stream-player.is-paused .stream-player__controls {
  transform: none;
  opacity: 1;
}

.player-range {
  --range-value: 0%;
  accent-color: #e50914;
  cursor: pointer;
}

.player-range--progress {
  display: block;
  width: 100%;
  height: 4px;
  margin: 0 0 0.85rem;
  appearance: none;
  border-radius: 3px;
  outline: none;
  background: linear-gradient(90deg, #e50914 var(--range-value), rgba(255, 255, 255, 0.35) var(--range-value));
}

.player-range--progress::-webkit-slider-thumb {
  width: 0.7rem;
  height: 0.7rem;
  appearance: none;
  border-radius: 50%;
  background: #e50914;
}

.player-range--volume {
  width: clamp(3rem, 7vw, 5.5rem);
  height: 3px;
  appearance: none;
  border-radius: 3px;
  outline: none;
  background: linear-gradient(90deg, #fff var(--range-value), rgba(255, 255, 255, 0.35) var(--range-value));
}

.player-range--volume::-webkit-slider-thumb {
  width: 0.6rem;
  height: 0.6rem;
  appearance: none;
  border-radius: 50%;
  background: #fff;
}

.player-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.player-control-row__group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.player-icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  place-items: center;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

.player-icon:hover {
  color: #e50914;
}

.player-icon--skip {
  position: relative;
  font-size: 1.25rem;
}

.player-icon--skip small {
  position: absolute;
  top: 0.55rem;
  font-size: 0.42rem;
  font-weight: 700;
}

.player-icon--text {
  width: auto;
  min-width: 2rem;
  font-size: 0.71rem;
  font-weight: 700;
}

.player-time {
  padding-left: 0.25rem;
  color: #e8e8e8;
  font-size: 0.73rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.player-speed {
  position: relative;
}

.speed-menu {
  position: absolute;
  right: 0;
  bottom: 2.6rem;
  display: grid;
  width: 5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.2rem;
  background: rgba(15, 15, 15, 0.97);
  box-shadow: 0 0.7rem 1.5rem rgba(0, 0, 0, 0.3);
}

.speed-menu[hidden] {
  display: none !important;
}

.speed-menu button {
  padding: 0.55rem 0.6rem;
  border: 0;
  background: transparent;
  color: #ddd;
  font-size: 0.71rem;
  text-align: left;
}

.speed-menu button:hover, .speed-menu button.is-active {
  background: #e50914;
  color: #fff;
}

@media (max-aspect-ratio: 16/9) {
  .stream-player {
    width: 100vw;
    height: auto;
    max-height: none;
  }
}
@media (max-width: 767px) {
  .stream-player__title {
    top: 0.9rem;
    left: 1rem;
  }
  .stream-player__title b {
    font-size: 0.72rem;
  }
  .stream-player__title span {
    font-size: 0.52rem;
  }
  .stream-player__big-play {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 0.85rem;
  }
  .stream-player__controls {
    padding: 0 0.65rem 0.55rem;
  }
  .player-range--progress {
    height: 3px;
    margin-bottom: 0.45rem;
  }
  .player-control-row__group {
    gap: 0.15rem;
  }
  .player-icon {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 0.85rem;
  }
  .player-icon--skip {
    display: none;
  }
  .player-range--volume {
    display: none;
  }
  .player-time {
    padding-left: 0;
    font-size: 0.57rem;
  }
  .player-icon--text {
    min-width: 1.65rem;
    font-size: 0.57rem;
  }
  .speed-menu {
    bottom: 2rem;
  }
}
.player-page {
  overflow-y: auto;
  background: #0b0b0b;
}

.player-page .site-header {
  background: rgba(12, 12, 12, 0.98);
  box-shadow: 0 1px rgba(255, 255, 255, 0.08);
}

.player-page__main {
  display: block;
  min-height: 100svh;
  padding: calc(5.25rem + clamp(1rem, 2.6vw, 2.5rem)) clamp(1rem, 2.6vw, 2.5rem) clamp(1rem, 2.6vw, 2.5rem);
  background: #0b0b0b;
}

.player-breadcrumbs {
  display: flex;
  width: min(100%, 103rem);
  align-items: center;
  gap: 0.55rem;
  margin: 0 auto clamp(0.8rem, 1.7vw, 1.35rem);
  color: #b9b9b9;
  font-size: 0.74rem;
}

.player-breadcrumbs a {
  transition: color 0.2s;
}

.player-breadcrumbs a:hover {
  color: #e50914;
}

.player-breadcrumbs span {
  color: #707070;
  font-size: 1rem;
}

.player-breadcrumbs b {
  overflow: hidden;
  max-width: 16rem;
  color: #fff;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-layout {
  display: grid;
  width: min(100%, 103rem);
  margin: 0 auto;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) clamp(19rem, 25vw, 24rem);
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
  transition: width 0.3s;
}

.watch-layout__primary {
  min-width: 0;
}

.stream-player {
  width: 100%;
  max-height: none;
  border-radius: 0.35rem;
  box-shadow: 0 1.3rem 3rem rgba(0, 0, 0, 0.28);
}

.stream-player:fullscreen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  border-radius: 0;
}

.stream-player:fullscreen .stream-player__video {
  object-fit: contain;
}

.watch-layout.is-theater {
  width: min(100%, 118rem);
  grid-template-columns: minmax(0, 1fr);
}

.watch-layout.is-theater .up-next {
  display: none;
}

.watch-meta {
  padding: 1.25rem 0.1rem 0;
}

.watch-meta__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.watch-meta h1 {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.3;
}

.watch-meta__actions {
  display: flex;
  gap: 0.55rem;
}

.watch-meta__actions button {
  display: inline-flex;
  min-height: 2.15rem;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3rem;
  background: #1d1d1d;
  color: #eee;
  font-size: 0.72rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.watch-meta__actions button:hover, .watch-meta__actions button.is-active {
  background: #e50914;
  border-color: #e50914;
}

.watch-meta__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.55rem 0 0;
  color: #9d9d9d;
  font-size: 0.72rem;
}

.watch-meta__stats i {
  color: #6c6c6c;
  font-style: normal;
}

.watch-meta__description {
  max-width: 47rem;
  margin: 0.9rem 0 0;
  color: #c5c5c5;
  font-size: 0.82rem;
  line-height: 1.6;
}

.up-next {
  min-width: 0;
  padding: 0.15rem;
}

.up-next__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.85rem;
}

.up-next__heading h2 {
  margin: 0;
  font-size: 1rem;
}

.autoplay-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #bbb;
  font-size: 0.67rem;
  font-weight: 700;
}

.autoplay-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.autoplay-toggle span {
  position: relative;
  width: 2rem;
  height: 1.1rem;
  border-radius: 2rem;
  background: #4d4d4d;
  transition: background 0.2s;
}

.autoplay-toggle span::after {
  position: absolute;
  top: 0.17rem;
  left: 0.17rem;
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 50%;
  background: #fff;
  content: "";
  transition: transform 0.2s;
}

.autoplay-toggle input:checked + span {
  background: #e50914;
}

.autoplay-toggle input:checked + span::after {
  transform: translateX(0.9rem);
}

.up-next__scroll {
  max-height: calc(100svh - 5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.35rem;
  scrollbar-color: #4d4d4d transparent;
  scrollbar-width: thin;
}

.up-next__list {
  display: grid;
  gap: 0.8rem;
}

.next-video {
  display: grid;
  grid-template-columns: 8.7rem minmax(0, 1fr);
  gap: 0.7rem;
  color: #fff;
  text-align: left;
}

.next-video__thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 0.23rem;
  background: #232323;
  aspect-ratio: 1.78/1;
}

.next-video__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}

.next-video:hover img {
  transform: scale(1.05);
}

.next-video__duration {
  position: absolute;
  right: 0.32rem;
  bottom: 0.32rem;
  padding: 0.1rem 0.25rem;
  border-radius: 0.1rem;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 700;
}

.next-video__content {
  min-width: 0;
  padding-top: 0.08rem;
}

.next-video h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #f1f1f1;
  font-size: 0.75rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.next-video p {
  overflow: hidden;
  margin: 0.35rem 0 0;
  color: #9c9c9c;
  font-size: 0.64rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.up-next__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.4rem;
  color: #999;
  font-size: 0.65rem;
}

.up-next__loading span {
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: #e50914;
  border-radius: 50%;
  animation: next-spinner 0.8s linear infinite;
}

@keyframes next-spinner {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .watch-layout {
    grid-template-columns: minmax(0, 1fr) 18.5rem;
    gap: 1.2rem;
  }
  .next-video {
    grid-template-columns: 7.2rem minmax(0, 1fr);
    gap: 0.55rem;
  }
}
@media (max-width: 767px) {
  .player-page__main {
    padding: 4.7rem 0 0;
  }
  .player-breadcrumbs {
    margin: 0;
    padding: 0 1rem;
    font-size: 0.68rem;
  }
  .player-breadcrumbs b {
    max-width: 9rem;
  }
  .watch-layout {
    display: block;
    width: 100%;
  }
  .stream-player {
    border-radius: 0;
  }
  .watch-meta {
    padding: 1rem;
  }
  .watch-meta__heading {
    align-items: start;
    flex-direction: column;
    gap: 0.7rem;
  }
  .watch-meta h1 {
    font-size: 1.05rem;
  }
  .watch-meta__stats {
    font-size: 0.66rem;
  }
  .watch-meta__description {
    font-size: 0.76rem;
  }
  .up-next {
    padding: 1.2rem 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .up-next__scroll {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
  .next-video {
    grid-template-columns: 9.2rem minmax(0, 1fr);
    gap: 0.7rem;
  }
  .next-video h3 {
    font-size: 0.74rem;
  }
}
.discovery-page {
  background: #0a0a0a;
}

.discovery-page__main {
  min-width: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.discovery-hero {
  position: relative;
  display: flex;
  min-height: clamp(29rem, 58vw, 42rem);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.discovery-hero__visual, .discovery-hero__shade {
  position: absolute;
  inset: 0;
}

.discovery-hero__visual {
  z-index: -2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.01);
}

.discovery-hero--categories .discovery-hero__visual {
  background-image: url("../images/media/the-first-of-us.webp");
  background-position: center 32%;
}

.discovery-hero--genres .discovery-hero__visual {
  background-image: url("../images/media/venom.webp");
  background-position: center 30%;
}

.discovery-hero--actors .discovery-hero__visual {
  background-image: url("../images/media/gameofhero.webp");
  background-position: center 20%;
}

.discovery-hero__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.2) 67%), linear-gradient(0deg, #0a0a0a, rgba(0, 0, 0, 0.02) 54%);
}

.discovery-hero__content {
  width: min(1640px, 100%);
  padding-top: calc(5.25rem + 2rem);
  padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
  margin: 0 auto;
}

.discovery-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(3.5rem, 9vh, 7rem);
  color: #bebebe;
  font-size: 0.72rem;
}

.discovery-breadcrumbs a {
  transition: color 0.2s;
}

.discovery-breadcrumbs a:hover {
  color: #e50914;
}

.discovery-breadcrumbs span {
  color: #777;
  font-size: 1rem;
}

.discovery-breadcrumbs b {
  color: #fff;
  font-weight: 500;
}

.discovery-hero__eyebrow {
  margin: 0 0 0.75rem;
  color: #d5d5d5;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.discovery-hero h1 {
  max-width: 38rem;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.discovery-hero h1 i {
  color: #e50914;
  font-style: normal;
}

.discovery-hero__content > p:last-child {
  max-width: 30rem;
  margin: 1.2rem 0 0;
  color: #d0d0d0;
  font-size: clamp(0.8rem, 1.45vw, 0.96rem);
  line-height: 1.6;
}

.discovery-section {
  width: min(1640px, 100%);
  padding-top: clamp(3.5rem, 6vw, 6rem);
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
  margin: 0 auto;
}

.discovery-section--dark {
  width: 100%;
  background: #111;
}

.discovery-section--dark > * {
  width: min(1640px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.discovery-section__heading {
  margin-bottom: 1.5rem;
}

.discovery-section__heading > p {
  margin: 0 0 0.4rem;
  color: #e50914;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discovery-section__heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  letter-spacing: -0.04em;
}

.discovery-section__heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(10rem, 13vw);
  gap: 0.8rem;
}

.category-tile {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  background: #222;
  isolation: isolate;
}

.category-tile--wide {
  grid-row: span 2;
  grid-column: span 2;
}

.category-tile::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent 65%);
  content: "";
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-tile:hover img {
  transform: scale(1.05);
}

.category-tile span {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  display: grid;
  gap: 0.14rem;
}

.category-tile small {
  color: #d5d5d5;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-tile b {
  color: #fff;
  font-size: clamp(0.9rem, 1.4vw, 1.25rem);
}

.category-tile i {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.18rem;
  color: #fff;
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s;
}

.category-tile:hover i {
  opacity: 1;
}

.category-tile i em {
  color: #e50914;
  font-size: 0.9rem;
  font-style: normal;
}

.collection-list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.collection-list a {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) minmax(12rem, 0.7fr) auto;
  min-height: 5.6rem;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  transition: background 0.2s, padding 0.2s;
}

.collection-list a:hover {
  padding-inline: 0.75rem;
  background: rgba(255, 255, 255, 0.045);
}

.collection-list span {
  color: #e50914;
  font-size: 0.68rem;
  font-weight: 900;
}

.collection-list b {
  font-size: clamp(0.92rem, 1.45vw, 1.2rem);
}

.collection-list small {
  color: #aaa;
  font-size: 0.75rem;
}

.collection-list i {
  color: #aaa;
  font-size: 1.2rem;
  font-style: normal;
}

.genre-pills {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.9rem;
  scrollbar-width: none;
}

.genre-pills::-webkit-scrollbar {
  display: none;
}

.genre-pills a {
  flex: 0 0 auto;
  padding: 0.52rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 3rem;
  color: #d0d0d0;
  font-size: 0.7rem;
  font-weight: 700;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.genre-pills a:hover {
  border-color: #e50914;
  background: #e50914;
  color: #fff;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.genre-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  background: #222;
  aspect-ratio: 1.08/1;
  isolation: isolate;
}

.genre-tile::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.04) 68%);
  content: "";
}

.genre-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.genre-tile:hover img {
  transform: scale(1.06);
}

.genre-tile span {
  position: absolute;
  z-index: 2;
  right: 0.9rem;
  bottom: 0.75rem;
  left: 0.9rem;
  display: grid;
  gap: 0.14rem;
}

.genre-tile b {
  color: #fff;
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
}

.genre-tile small {
  color: #d7d7d7;
  font-size: 0.62rem;
}

.actor-filter {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
  scrollbar-width: none;
}

.actor-filter::-webkit-scrollbar {
  display: none;
}

.actor-filter button {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  place-items: center;
  background: transparent;
  color: #c9c9c9;
  font-size: 0.66rem;
  font-weight: 700;
  transition: border-color 0.2s, background 0.2s;
}

.actor-filter button:hover, .actor-filter button.is-active {
  border-color: #e50914;
  background: #e50914;
  color: #fff;
}

.actors-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}

.actor-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  background: #202020;
  aspect-ratio: 0.72/1;
  isolation: isolate;
}

.actor-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent 53%);
  content: "";
}

.actor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.actor-card:hover img {
  transform: scale(1.045);
}

.actor-card span {
  position: absolute;
  z-index: 2;
  right: 0.7rem;
  bottom: 0.65rem;
  left: 0.7rem;
  display: grid;
  gap: 0.18rem;
}

.actor-card b {
  overflow: hidden;
  color: #fff;
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.actor-card small {
  color: #c9c9c9;
  font-size: 0.59rem;
}

.actor-card[hidden] {
  display: none;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(10rem, 19vw);
  }
  .genre-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .actors-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .discovery-hero {
    min-height: 33rem;
  }
  .discovery-hero--categories .discovery-hero__visual {
    background-position: 62% center;
  }
  .discovery-hero--genres .discovery-hero__visual {
    background-position: 60% center;
  }
  .discovery-hero__shade {
    background: linear-gradient(0deg, #0a0a0a, rgba(0, 0, 0, 0.08) 60%), linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent);
  }
  .discovery-hero__content {
    padding-top: 5.6rem;
    padding-bottom: 3rem;
  }
  .discovery-breadcrumbs {
    margin-bottom: auto;
  }
  .discovery-hero h1 {
    max-width: 20rem;
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }
  .discovery-hero__content > p:last-child {
    max-width: 20rem;
    font-size: 0.78rem;
  }
  .discovery-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .discovery-section__heading--split {
    align-items: start;
    flex-direction: column;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(9rem, 34vw);
    gap: 0.55rem;
  }
  .category-tile--wide {
    grid-column: span 2;
    grid-row: auto;
    min-height: 13rem;
  }
  .category-tile span {
    right: 0.7rem;
    bottom: 0.65rem;
    left: 0.7rem;
  }
  .category-tile i {
    opacity: 1;
  }
  .collection-list a {
    grid-template-columns: 1.6rem minmax(0, 1fr) auto;
    min-height: 4.6rem;
    gap: 0.65rem;
  }
  .collection-list small {
    display: none;
  }
  .genre-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .genre-tile {
    aspect-ratio: 1/1;
  }
  .actors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .actor-filter {
    max-width: 100%;
  }
  .actor-card span {
    right: 0.55rem;
    bottom: 0.5rem;
    left: 0.55rem;
  }
  .actor-card b {
    font-size: 0.65rem;
  }
  .actor-card small {
    font-size: 0.54rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .category-tile img, .genre-tile img, .actor-card img {
    transition: none;
  }
}
.discovery-detail-page {
  background: #090909;
}

.discovery-detail {
  min-width: 0;
  overflow: hidden;
  background: #090909;
}

.discovery-detail-hero {
  position: relative;
  display: flex;
  min-height: clamp(32rem, 48vw, 43rem);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.discovery-detail-hero__visual, .discovery-detail-hero__shade {
  position: absolute;
  inset: 0;
}

.discovery-detail-hero__visual {
  z-index: -2;
  background: #222 center/cover no-repeat;
  transform: scale(1.015);
}

.discovery-detail-hero__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.47) 45%, rgba(0, 0, 0, 0.11) 78%), linear-gradient(0deg, #090909, transparent 42%), linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 27%);
}

.discovery-detail-hero__content {
  width: min(1640px, 100%);
  margin: 0 auto;
  padding-top: calc(5.25rem + 1.8rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.discovery-detail-hero__copy {
  width: min(100%, 43rem);
}

.discovery-detail-hero .discovery-breadcrumbs {
  margin-bottom: clamp(3rem, 7vh, 6.5rem);
}

.discovery-detail-hero__eyebrow {
  margin: 0 0 0.7rem;
  color: #e50914;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.discovery-detail-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6.3vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.discovery-detail-hero__intro {
  max-width: 39rem;
  margin: 1.1rem 0 0;
  color: #d4d4d4;
  font-size: clamp(0.82rem, 1.35vw, 0.96rem);
  line-height: 1.65;
}

.discovery-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.15rem;
  margin: 1.15rem 0 0;
  padding: 0;
  color: #e2e2e2;
  font-size: 0.72rem;
  font-weight: 700;
  list-style: none;
}

.discovery-detail-hero__meta li + li {
  position: relative;
}

.discovery-detail-hero__meta li + li::before {
  position: absolute;
  top: 50%;
  left: -0.64rem;
  width: 3px;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #e50914;
  content: "";
}

.discovery-detail-hero__action {
  min-height: 3rem;
  margin-top: 1.8rem;
  padding-inline: 1rem;
  font-size: 0.78rem;
  text-transform: none;
}

.discovery-detail-hero__action span {
  color: #fff;
  font-size: 1.05rem;
}

.discovery-detail-hero__portrait {
  position: absolute;
  right: max(clamp(1rem, 4.15vw, 5rem), (100vw - 1640px) / 2 + clamp(1rem, 4.15vw, 5rem));
  bottom: 0;
  width: min(29vw, 27rem);
  height: min(38vw, 35rem);
  margin: 0;
  mask-image: linear-gradient(0deg, transparent 0, #000 12%);
  pointer-events: none;
}

.discovery-detail-hero__portrait::before {
  position: absolute;
  z-index: -1;
  inset: 10% -22% 0;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(circle at 50% 28%, rgba(229, 9, 20, 0.42), rgba(229, 9, 20, 0) 65%);
  content: "";
}

.discovery-detail-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.04);
}

.discovery-detail.is-actor-detail .discovery-detail-hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.5) 49%, rgba(0, 0, 0, 0.16) 80%), linear-gradient(0deg, #090909, transparent 40%), linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 27%);
}

.discovery-detail__content {
  width: min(1640px, 100%);
  margin: 0 auto;
  padding-top: clamp(3.5rem, 6vw, 6rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.discovery-detail-shelf__heading {
  margin-bottom: 1.35rem;
}

.discovery-detail-shelf__heading p, .discovery-detail-note > div > p {
  margin: 0 0 0.42rem;
  color: #e50914;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discovery-detail-shelf__heading h2, .discovery-detail-note h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  letter-spacing: -0.045em;
}

.discovery-title-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.25vw, 1rem);
}

.discovery-title-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  background: #1d1d1d;
  aspect-ratio: 0.674/1;
  isolation: isolate;
}

.discovery-title-card::after {
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.91));
  content: "";
}

.discovery-title-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease;
}

.discovery-title-card span {
  position: absolute;
  z-index: 2;
  right: 0.7rem;
  bottom: 0.65rem;
  left: 0.7rem;
  display: grid;
  gap: 0.16rem;
}

.discovery-title-card b {
  overflow: hidden;
  color: #fff;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discovery-title-card small {
  overflow: hidden;
  color: #d4d4d4;
  font-size: 0.61rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (hover: hover) {
  .discovery-title-card:hover {
    z-index: 1;
    transform: translateY(-0.25rem);
    box-shadow: 0 1rem 1.7rem rgba(0, 0, 0, 0.42);
  }
  .discovery-title-card:hover img {
    transform: scale(1.055);
  }
}
.discovery-detail-ad {
  margin-top: clamp(2.25rem, 4.5vw, 4.5rem);
}

.discovery-detail-ad .discovery-ad {
  width: 100%;
  padding: 0;
}

.discovery-detail-note {
  display: grid;
  grid-template-columns: minmax(14rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 8vw, 9rem);
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(2.25rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.discovery-detail-note__body > p {
  max-width: 38rem;
  margin: 0.05rem 0 1.5rem;
  color: #c8c8c8;
  font-size: 0.88rem;
  line-height: 1.7;
}

.discovery-detail-note dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
}

.discovery-detail-note dl > div {
  min-width: 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.discovery-detail-note dt {
  margin-bottom: 0.3rem;
  color: #909090;
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discovery-detail-note dd {
  overflow: hidden;
  margin: 0;
  color: #f2f2f2;
  font-size: 0.73rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .discovery-detail-hero__portrait {
    right: clamp(1rem, 4.15vw, 5rem);
    width: min(34vw, 20rem);
    height: min(48vw, 29rem);
  }
  .discovery-title-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .discovery-detail-hero {
    min-height: 35rem;
  }
  .discovery-detail-hero__content {
    padding-top: 5.6rem;
    padding-bottom: 3.25rem;
  }
  .discovery-detail-hero .discovery-breadcrumbs {
    margin-bottom: auto;
  }
  .discovery-detail-hero__copy {
    margin-top: 8.5rem;
  }
  .discovery-detail-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.6rem, 12vw, 3.7rem);
  }
  .discovery-detail-hero__intro {
    max-width: 20rem;
    font-size: 0.78rem;
    line-height: 1.55;
  }
  .discovery-detail-hero__meta {
    gap: 0.4rem 0.95rem;
    font-size: 0.64rem;
  }
  .discovery-detail-hero__action {
    min-height: 2.85rem;
    margin-top: 1.35rem;
    font-size: 0.7rem;
  }
  .discovery-detail-hero__portrait {
    right: -2.1rem;
    width: min(57vw, 17rem);
    height: min(76vw, 23rem);
    opacity: 0.7;
  }
  .discovery-detail.is-actor-detail .discovery-detail-hero__shade {
    background: linear-gradient(0deg, #090909 2%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.05) 83%), linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent);
  }
  .discovery-detail__content {
    padding-top: 3.25rem;
    padding-bottom: 4rem;
  }
  .discovery-title-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  .discovery-title-card span {
    right: 0.55rem;
    bottom: 0.5rem;
    left: 0.55rem;
  }
  .discovery-title-card b {
    font-size: 0.7rem;
  }
  .discovery-title-card small {
    font-size: 0.56rem;
  }
  .discovery-detail-ad {
    margin-top: 2.5rem;
  }
  .discovery-detail-note {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 3.75rem;
    padding-top: 2.2rem;
  }
  .discovery-detail-note__body > p {
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    line-height: 1.65;
  }
  .discovery-detail-note dl {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .discovery-detail-note dl > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.5rem;
  }
  .discovery-detail-note dt {
    margin: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .discovery-title-card, .discovery-title-card img {
    transition: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  * {
    -webkit-tap-highlight-color: rgba(229, 9, 20, 0.26);
  }
  a, button, input, label {
    touch-action: manipulation;
  }
  .rail, .detail-rail {
    padding-inline: 0.1rem;
    scroll-padding-inline: 0.1rem;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }
  .rail-arrow, .detail-rail-arrow {
    display: none;
  }
  .watch-card:hover img {
    transform: none;
  }
  .watch-card:hover .watch-card__remove {
    opacity: 0;
  }
  .watch-card__remove {
    display: none;
  }
  .poster-card__cover::after, .watch-card__cover::after {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    place-items: center;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    content: "▶";
    font-size: 0.67rem;
    pointer-events: none;
  }
  .poster-card__cover:active::after, .watch-card__cover:active::after {
    background: #e50914;
    border-color: #e50914;
    transform: translate(-50%, -50%) scale(0.93);
  }
  .poster-card__gradient {
    inset: 26% 0 0;
  }
  .up-next__scroll {
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
  .next-video {
    min-height: 4.9rem;
  }
  .next-video:active {
    opacity: 0.72;
  }
  .autoplay-toggle {
    min-height: 2.75rem;
  }
  .speed-menu button, .quality-list button, .check-row {
    min-height: 2.75rem;
  }
}
@media (hover: none) and (pointer: coarse) and (min-width: 768px) {
  .poster-card__info {
    transform: none;
    padding: 1.15rem 0.85rem 0.8rem;
    opacity: 1;
  }
  .poster-card__genre {
    display: none;
  }
  .poster-card__title {
    font-size: 0.82rem;
  }
  .poster-card__meta {
    margin: 0.25rem 0 0;
    font-size: 0.64rem;
  }
  .poster-card__actions {
    display: none;
  }
  .poster-card__cover::after {
    width: 2.7rem;
    height: 2.7rem;
  }
  .watch-card__row a {
    width: 2rem;
    height: 2rem;
    font-size: 0.65rem;
  }
  .people-grid {
    touch-action: pan-y;
  }
  .up-next__scroll {
    padding-bottom: 1rem;
  }
}
@media (hover: none) and (pointer: coarse) and (max-width: 767px) {
  .site-header__actions {
    gap: 0.32rem;
  }
  .icon-button, .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
  }
  .search-popover__field input {
    min-height: 2.25rem;
    font-size: 0.82rem;
  }
  .search-popover__close {
    width: 2.75rem;
    height: 2.75rem;
  }
  .mobile-menu__top button {
    width: 2.75rem;
    height: 2.75rem;
  }
  .mobile-menu nav a {
    display: flex;
    min-height: 3rem;
    align-items: center;
  }
  .button {
    min-height: 2.9rem;
  }
  .hero__buttons .button {
    min-width: 7.8rem;
  }
  .trailer-button {
    min-height: 2.75rem;
  }
  .trailer-button__icon {
    width: 2.55rem;
    height: 2.55rem;
  }
  .poster-card__cover::after, .watch-card__cover::after {
    width: 2rem;
    height: 2rem;
    font-size: 0.56rem;
  }
  .watch-card__row a {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.6rem;
  }
  .movie-actions .button, .watchlist-action {
    min-height: 3rem;
  }
  .icon-actions button {
    width: 2.65rem;
    height: 2.65rem;
  }
  .detail-poster, .person, .related-video {
    touch-action: manipulation;
  }
  .detail-poster:active, .related-video:active {
    opacity: 0.76;
  }
  .player-icon {
    width: 2.15rem;
    height: 2.15rem;
  }
  .player-control-row__group {
    gap: 0.18rem;
  }
  .player-range--progress {
    min-height: 1.25rem;
  }
}
