:root {
  --emerald: #059669;
  --emerald-dark: #047857;
  --teal: #0d9488;
  --cyan: #06b6d4;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f0fdfa;
  --soft-2: #ecfdf5;
  --line: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, rgba(236, 253, 245, 0.72) 48%, rgba(240, 253, 250, 0.92) 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner,
.footer-inner,
.page-section,
.detail-hero-inner,
.home-search-band,
.page-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #34d399, #0d9488);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.25);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08) rotate(4deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 21px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.mobile-link {
  padding: 10px 15px;
  border-radius: 12px;
  color: #374151;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--emerald-dark);
  background: rgba(16, 185, 129, 0.1);
}

.nav-link:hover {
  transform: translateY(-1px);
}

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

.header-search input,
.mobile-search input,
.home-search-band input,
.filter-panel input,
.filter-panel select {
  border: 1px solid #d1d5db;
  outline: none;
  border-radius: 999px;
  padding: 11px 16px;
  background: #ffffff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

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

.header-search input:focus,
.mobile-search input:focus,
.home-search-band input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.header-search button,
.mobile-search button,
.home-search-band button,
.primary-btn {
  border: 0;
  cursor: pointer;
  color: #ffffff;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  box-shadow: 0 12px 25px rgba(5, 150, 105, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.home-search-band button:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(5, 150, 105, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-link {
  display: block;
  margin-top: 8px;
}

.hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.is-active > img {
  transform: scale(1);
}

.hero-overlay,
.detail-shade,
.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.78), rgba(15, 23, 42, 0.55) 48%, rgba(15, 23, 42, 0.08));
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1180px) / 2));
  top: 50%;
  width: min(620px, calc(100% - 64px));
  transform: translateY(-50%);
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #047857;
  background: rgba(209, 250, 229, 0.95);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-content .hero-badge {
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(167, 243, 208, 0.28);
}

.hero-content h1 {
  margin: 20px 0 16px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 620px;
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag-row span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #047857;
  background: rgba(209, 250, 229, 0.95);
}

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

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-prev,
.hero-next {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 30px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

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

.hero-dot.is-active {
  width: 28px;
  background: #34d399;
}

.hero-side-card {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 96px;
  width: 270px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-side-card span {
  display: block;
  color: #a7f3d0;
  font-size: 13px;
  font-weight: 700;
}

.hero-side-card strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 24px;
}

.hero-side-card a {
  color: #ffffff;
  font-weight: 800;
}

.home-search-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 24px;
  margin-top: -46px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.home-search-band h2 {
  margin: 0 0 6px;
  font-size: 26px;
}

.home-search-band p {
  margin: 0;
  color: var(--muted);
}

.home-search-band form {
  display: flex;
  gap: 10px;
}

.home-search-band input {
  flex: 1;
  min-width: 0;
}

.page-section {
  padding: 54px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

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

.section-action {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald-dark);
  font-weight: 800;
}

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

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

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

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

.movie-card,
.list-card,
.content-card,
.aside-card,
.player-card,
.category-board-card,
.category-tile {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.movie-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover,
.category-tile:hover,
.category-board-card:hover,
.list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.13);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0f172a;
}

.movie-card-compact .poster-link {
  aspect-ratio: 16 / 11;
}

.poster-link img,
.list-poster img,
.detail-poster img,
.category-tile img,
.category-board-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img,
.list-card:hover .list-poster img,
.category-tile:hover img,
.category-board-card:hover img {
  transform: scale(1.06);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.78));
}

.rank-badge,
.play-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.play-chip {
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  color: #064e3b;
  background: #d1fae5;
}

.movie-card-body {
  padding: 18px;
}

.movie-meta,
.list-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.movie-meta span,
.list-topline span {
  display: inline-flex;
  align-items: center;
}

.movie-card h3,
.list-card h3 {
  margin: 9px 0 8px;
  font-size: 19px;
  line-height: 1.32;
}

.movie-card p,
.list-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.list-card {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 16px;
  padding: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.list-poster {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
  background: #0f172a;
}

.list-card-body {
  min-width: 0;
  padding: 2px 6px 2px 0;
}

.list-rank {
  min-width: 30px;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--emerald);
  font-size: 12px;
  font-weight: 800;
}

.category-tile-grid,
.category-board-grid {
  display: grid;
  gap: 22px;
}

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

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

.category-tile,
.category-board-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #ffffff;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile img,
.category-board-card .category-covers {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.category-tile::before,
.category-board-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.76));
}

.category-tile span,
.category-board-card strong {
  font-size: 26px;
  font-weight: 900;
}

.category-tile small,
.category-board-card small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.category-covers img {
  height: 100%;
  object-fit: cover;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

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

.small-hero {
  min-height: 320px;
  background: radial-gradient(circle at 16% 12%, rgba(52, 211, 153, 0.45), transparent 28%), linear-gradient(135deg, #0f172a, #064e3b);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.page-hero h1 {
  position: relative;
  margin: 14px 0;
  max-width: 820px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
}

.page-hero p {
  position: relative;
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.page-hero .eyebrow {
  position: relative;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 220px 260px;
  gap: 14px;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.filter-panel label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-panel input,
.filter-panel select {
  border-radius: 16px;
}

.empty-state {
  display: none;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 18px;
  color: #065f46;
  background: #d1fae5;
  font-weight: 800;
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

.detail-hero {
  min-height: 570px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.detail-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 290px 1fr;
  align-items: center;
  gap: 42px;
  min-height: 570px;
  padding: 54px 0;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 26px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.detail-poster img {
  aspect-ratio: 3 / 4;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.breadcrumb a {
  color: #d1fae5;
  font-weight: 700;
}

.breadcrumb em {
  font-style: normal;
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.08;
}

.detail-intro {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(15, 23, 42, 0.48);
  font-weight: 700;
}

.detail-tags span {
  color: #064e3b;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
}

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

.player-card {
  padding: 14px;
  background: #0f172a;
}

.movie-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #020617;
}

.video-element {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.14), rgba(2, 6, 23, 0.72));
  cursor: pointer;
}

.movie-player.is-playing .player-overlay {
  display: none;
}

.overlay-play {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #064e3b;
  background: #d1fae5;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  font-size: 28px;
}

.player-overlay strong {
  max-width: 80%;
  font-size: 22px;
}

.content-card,
.aside-card {
  margin-top: 24px;
  padding: 28px;
}

.content-card h2,
.aside-card h2 {
  margin: 12px 0 12px;
  font-size: 28px;
}

.content-card p {
  margin: 0;
  color: #374151;
  font-size: 17px;
}

.aside-card {
  position: sticky;
  top: 96px;
}

.aside-card dl {
  margin: 0;
}

.aside-card dt {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.aside-card dd {
  margin: 4px 0 0;
  color: #111827;
  font-weight: 700;
}

.aside-card a {
  color: var(--emerald-dark);
}

.prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.prev-next a {
  padding: 18px;
  border-radius: 18px;
  color: #047857;
  background: #d1fae5;
  font-weight: 800;
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  background: linear-gradient(135deg, #f9fafb, #ecfdf5);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 46px;
  padding: 46px 0;
}

.footer-brand p {
  max-width: 520px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.footer-links h3 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  margin: 7px 0;
  color: #4b5563;
}

.footer-links a:hover {
  color: var(--emerald-dark);
}

.footer-bottom {
  padding: 18px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  color: var(--muted);
  text-align: center;
}

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

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

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

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

  .nav-toggle {
    display: block;
  }

  .mobile-search input {
    width: 100%;
    flex: 1;
  }

  .hero-side-card {
    display: none;
  }

  .home-search-band,
  .footer-inner,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .home-search-band form {
    flex-direction: column;
  }

  .featured-grid,
  .catalog-grid,
  .compact-grid,
  .category-tile-grid,
  .category-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .list-grid,
  .rank-list {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .detail-hero-inner {
    grid-template-columns: 180px 1fr;
    gap: 24px;
  }

  .aside-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 66px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-slider {
    height: 560px;
  }

  .hero-content {
    left: 20px;
    width: calc(100% - 40px);
  }

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

  .hero-content p,
  .page-hero p,
  .detail-intro {
    font-size: 16px;
  }

  .hero-controls {
    bottom: 20px;
  }

  .home-search-band {
    margin-top: -28px;
    padding: 22px;
  }

  .section-heading {
    flex-direction: column;
  }

  .featured-grid,
  .catalog-grid,
  .compact-grid,
  .category-tile-grid,
  .category-board-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-hero-inner {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .detail-poster {
    width: min(220px, 70vw);
  }

  .detail-copy h1 {
    font-size: 38px;
  }

  .detail-layout {
    padding-top: 34px;
  }

  .prev-next {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
