:root {
  --peach-50: #fff7ed;
  --peach-100: #ffedd5;
  --peach-200: #fed7aa;
  --peach-400: #fb923c;
  --peach-500: #f97316;
  --peach-600: #ea580c;
  --coral-50: #fff1f2;
  --coral-100: #ffe4e6;
  --coral-400: #fb7185;
  --coral-500: #f43f5e;
  --coral-600: #e11d48;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(249, 115, 22, 0.16);
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(148, 62, 15, 0.14);
  --soft-shadow: 0 10px 28px rgba(148, 62, 15, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 38%, #fff7ed 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.08);
}

.site-header__inner {
  width: min(1180px, calc(100% - 32px));
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.site-logo__mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--peach-400), var(--coral-500));
  box-shadow: 0 12px 26px rgba(244, 63, 94, 0.32);
}

.site-logo__text,
.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #374151;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--peach-600);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-nav input,
.page-filter input,
.search-panel input,
.search-panel select {
  border: 1px solid var(--peach-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 14px;
}

.header-search button,
.mobile-nav button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
  cursor: pointer;
}

.header-search input:focus,
.mobile-nav input:focus,
.page-filter input:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--peach-400);
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.16);
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--peach-50);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #374151;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 18px;
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: grid;
  gap: 12px;
}

.mobile-nav form {
  display: flex;
  gap: 8px;
}

.mobile-nav input {
  width: 100%;
  padding: 10px 14px;
}

.mobile-nav a {
  display: block;
  padding: 8px 0;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: #111827;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(251, 146, 60, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.54) 42%, rgba(0, 0, 0, 0.06));
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
  color: #ffffff;
}

.hero-slide__content h1 {
  width: min(760px, 100%);
  margin: 16px 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-slide__content p {
  width: min(650px, 100%);
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-kicker span,
.detail-label,
.section-heading__eyebrow,
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  border-radius: 999px;
  padding: 6px 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
  box-shadow: 0 16px 32px rgba(244, 63, 94, 0.28);
}

.button--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.button--outline {
  color: var(--peach-600);
  border-color: var(--peach-200);
  background: #ffffff;
}

.hero-rating {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.hero-control--prev {
  left: 24px;
}

.hero-control--next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 5;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

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

.hero-dot.is-active {
  width: 36px;
  background: #ffffff;
}

.content-section {
  padding: 72px 0;
}

.content-section--light {
  background: linear-gradient(180deg, #ffffff, var(--peach-50));
}

.content-section--peach {
  background: linear-gradient(180deg, var(--peach-50), #ffffff);
}

.content-section--white {
  background: #ffffff;
}

.content-section--coral {
  background: linear-gradient(180deg, var(--coral-50), #ffffff);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  margin: 10px 0 6px;
  color: #111827;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.18;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  color: var(--peach-600);
  font-weight: 900;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

.movie-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.movie-grid--compact {
  gap: 16px;
}

.movie-list-grid,
.rank-preview,
.rank-list {
  display: grid;
  gap: 16px;
}

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

.movie-card,
.movie-list-card,
.category-overview-card,
.prose-card,
.side-card,
.player-card {
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.movie-card,
.movie-list-card,
.category-tile {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover,
.movie-list-card:hover,
.category-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: var(--shadow);
}

.movie-card__poster,
.movie-list-card__poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--peach-100), var(--coral-100));
}

.movie-card__poster {
  aspect-ratio: 16 / 10;
}

.movie-card__poster img,
.movie-list-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.movie-card:hover img,
.movie-list-card:hover img {
  transform: scale(1.06);
}

.movie-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 42px;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  opacity: 0;
  background: rgba(0, 0, 0, 0.28);
  transition: opacity 0.2s ease;
}

.movie-card:hover .movie-card__play {
  opacity: 1;
}

.movie-card__channel {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.movie-card__body {
  padding: 16px;
}

.movie-card__title,
.movie-list-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-card__title:hover,
.movie-list-card__title:hover {
  color: var(--peach-600);
}

.movie-card__body p,
.movie-list-card__body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 12px;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card__tags,
.movie-card__score,
.movie-meta-line,
.movie-stats,
.detail-facts,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.movie-card__tags span,
.movie-card__score span,
.movie-meta-line span,
.movie-stats span,
.detail-facts span,
.detail-tags span {
  border-radius: 999px;
  padding: 4px 9px;
  color: #6b4b3b;
  background: var(--peach-50);
  font-size: 12px;
  font-weight: 800;
}

.movie-card__score {
  justify-content: space-between;
  margin-top: 12px;
  color: var(--peach-600);
}

.movie-list-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 170px;
}

.movie-list-card__poster {
  min-height: 100%;
}

.movie-list-card__body {
  padding: 18px;
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--coral-500), var(--peach-500));
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(244, 63, 94, 0.28);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-tile {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(135deg, var(--peach-400), var(--coral-500));
  box-shadow: var(--soft-shadow);
}

.category-tile__name {
  font-size: 22px;
  font-weight: 900;
}

.category-tile__count,
.category-tile small {
  color: rgba(255, 255, 255, 0.82);
}

.center-actions {
  margin-top: 32px;
  text-align: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #111827, #7c2d12 52%, #e11d48);
}

.page-hero--compact {
  min-height: 300px;
  display: flex;
  align-items: center;
}

.page-hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.1;
}

.page-hero p {
  width: min(760px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.page-filter {
  margin-top: 24px;
}

.page-filter input {
  width: min(560px, 100%);
  padding: 13px 18px;
}

.channel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.channel-tabs a {
  border: 1px solid var(--peach-200);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--peach-600);
  background: #ffffff;
  font-weight: 800;
}

.channel-tabs a.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
}

.filter-empty,
.search-summary {
  margin: 0 0 20px;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: #7c2d12;
  background: var(--peach-50);
  font-weight: 800;
}

.category-overview-list {
  display: grid;
  gap: 26px;
}

.category-overview-card {
  padding: 24px;
}

.category-overview-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.category-overview-card__head span {
  color: var(--peach-600);
  font-weight: 900;
}

.category-overview-card__head h2 {
  margin: 6px 0;
  font-size: 28px;
}

.category-overview-card__head p {
  margin: 0;
  color: var(--muted);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(150px, 1fr)) auto;
  gap: 12px;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  color: #ffffff;
  background: #111827;
}

.detail-hero__backdrop,
.detail-hero__backdrop img,
.detail-hero__mask {
  position: absolute;
  inset: 0;
}

.detail-hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) saturate(1.08);
  transform: scale(1.04);
}

.detail-hero__mask {
  background:
    radial-gradient(circle at 80% 25%, rgba(249, 115, 22, 0.22), transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.34));
}

.detail-hero__inner {
  position: relative;
  z-index: 2;
  padding: 34px 0 58px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

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

.detail-hero__content {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster {
  width: 260px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.detail-hero h1 {
  margin: 16px 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
}

.detail-hero p {
  max-width: 800px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.detail-facts span,
.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.detail-tags {
  margin-top: 14px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card__head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.player-card__head span {
  color: var(--peach-600);
  font-weight: 900;
}

.player-card__head h2 {
  margin: 4px 0 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.88);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.38);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-start span {
  font-size: 32px;
  line-height: 1;
}

.player-start strong {
  font-size: 14px;
}

.player-start.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
}

.player-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 14px;
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
}

.prose-card {
  padding: 26px;
}

.prose-card h2,
.side-card h2 {
  margin: 0 0 12px;
  color: #111827;
}

.prose-card h2:not(:first-child) {
  margin-top: 28px;
}

.prose-card p {
  margin: 0;
  color: #374151;
  white-space: pre-line;
}

.prose-card blockquote {
  margin: 0;
  border-left: 4px solid var(--peach-400);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 18px;
  color: #4b5563;
  background: linear-gradient(135deg, var(--peach-50), var(--coral-50));
  white-space: pre-line;
}

.detail-sidebar {
  position: sticky;
  top: 92px;
}

.side-card {
  padding: 22px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--muted);
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  color: #111827;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, var(--peach-50), var(--coral-50));
}

.site-footer__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
}

.footer-links,
.footer-meta {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links h2,
.footer-meta h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 16px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--peach-600);
}

.footer-meta strong {
  color: var(--peach-600);
  font-size: 36px;
  line-height: 1;
}

.footer-meta span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1040px) {
  .header-search {
    display: none;
  }

  .movie-grid--four,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .movie-grid--three,
  .movie-list-grid,
  .detail-layout,
  .site-footer__inner,
  .search-panel {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 780px) {
  .site-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .site-logo__text {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-carousel {
    min-height: 620px;
  }

  .hero-slide__content h1 {
    font-size: 42px;
  }

  .hero-control {
    display: none;
  }

  .section-heading--split,
  .category-overview-card__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid--four,
  .movie-grid--three,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-list-card {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 150px;
  }

  .detail-hero__content {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    width: 190px;
  }
}

@media (max-width: 540px) {
  .container,
  .site-header__inner,
  .site-footer__inner,
  .mobile-nav {
    width: min(100% - 24px, 1180px);
  }

  .content-section {
    padding: 48px 0;
  }

  .movie-grid--four,
  .movie-grid--three,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-list-card {
    grid-template-columns: 1fr;
  }

  .movie-list-card__poster {
    aspect-ratio: 16 / 10;
  }

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

  .button {
    width: 100%;
  }

  .player-start {
    width: 96px;
    height: 96px;
  }
}
