:root {
  --bg-main: #020617;
  --bg-soft: #0f172a;
  --bg-card: #1e293b;
  --bg-card-2: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --white: #ffffff;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --cyan: #22d3ee;
  --amber: #f59e0b;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-main);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(16, 185, 129, 0.14), transparent 30rem),
    radial-gradient(circle at 82% 10%, rgba(34, 211, 238, 0.12), transparent 26rem),
    linear-gradient(180deg, #0f172a 0%, #020617 52%, #0f172a 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #031b15;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 0 32px rgba(16, 185, 129, 0.35);
  font-size: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #cbd5e1;
}

.nav-link {
  font-weight: 650;
  transition: color 0.25s ease, transform 0.25s ease;
}

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

.nav-search {
  padding: 8px 16px;
  border: 1px solid rgba(16, 185, 129, 0.36);
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--text);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.62) 46%, rgba(2, 6, 23, 0.25) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.12));
}

.hero-content {
  position: absolute;
  inset-inline: 0;
  bottom: 72px;
  z-index: 2;
}

.hero-tags,
.detail-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-tags a,
.hero-tags span,
.detail-tags a,
.detail-tags span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-style: normal;
}

.hero-tags a,
.detail-tags a {
  background: rgba(16, 185, 129, 0.82);
  border-color: transparent;
  color: #ffffff;
}

.hero-content h1 {
  max-width: 820px;
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.05em;
  color: var(--white);
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 28px;
  color: #dbeafe;
  font-size: clamp(16px, 2.2vw, 21px);
}

.hero-actions,
.section-head,
.movie-meta,
.footer-bottom {
  display: flex;
  align-items: center;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn,
.filter-panel button,
.home-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.24);
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn:hover,
.filter-panel button:hover,
.home-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(16, 185, 129, 0.34);
}

.ghost-btn {
  border: 1px solid rgba(203, 213, 225, 0.26);
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.54);
  box-shadow: none;
}

.ghost-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.52);
  color: #d1fae5;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.52);
  backdrop-filter: blur(12px);
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(2, 6, 23, 0.78);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: var(--emerald);
}

.search-strip,
.category-ribbon,
.section-block,
.filter-panel,
.page-hero,
.side-card,
.player-shell {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-strip {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 24px;
  align-items: center;
  margin-top: -54px;
  position: relative;
  z-index: 8;
  padding: 26px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.search-strip h2,
.section-head h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  color: #ffffff;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.search-strip h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.home-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.7);
}

.home-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  outline: none;
  color: #e2e8f0;
  background: rgba(2, 6, 23, 0.72);
}

.home-search input {
  border: 0;
  padding: 0 18px;
  background: transparent;
}

.home-search input::placeholder,
.filter-panel input::placeholder {
  color: #64748b;
}

.category-ribbon {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 30px;
  padding: 18px;
  border-radius: var(--radius-xl);
}

.category-ribbon a {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.82));
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.category-ribbon a:hover,
.category-card:hover,
.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.5);
}

.category-ribbon strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 18px;
}

.category-ribbon span {
  display: -webkit-box;
  color: var(--muted);
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-stack {
  padding: 54px 0 76px;
}

.section-block {
  margin-bottom: 42px;
  padding: clamp(22px, 4vw, 40px);
  border-radius: var(--radius-xl);
}

.feature-panel:nth-of-type(even) {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.78));
}

.section-head {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

.text-link {
  color: #34d399;
  font-weight: 850;
  white-space: nowrap;
}

.text-link:hover {
  color: #67e8f9;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(30, 41, 59, 0.86);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.24);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.38);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.movie-card:hover .movie-poster img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent 58%);
  opacity: 0.9;
}

.movie-region,
.movie-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.movie-region {
  top: 12px;
  left: 12px;
  padding: 4px 9px;
  background: rgba(16, 185, 129, 0.9);
}

.movie-year {
  right: 12px;
  bottom: 12px;
  padding: 4px 9px;
  background: rgba(2, 6, 23, 0.76);
}

.rank-badge {
  left: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.25);
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(16, 185, 129, 0.86);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-info {
  padding: 16px;
}

.movie-info h2 {
  display: -webkit-box;
  min-height: 52px;
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 850;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-info h2 a:hover {
  color: var(--emerald);
}

.movie-info p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-2);
  font-size: 12px;
}

.movie-meta a {
  color: #34d399;
}

.page-main {
  padding: 42px 0 76px;
}

.page-hero {
  margin-bottom: 28px;
  padding: clamp(30px, 6vw, 58px);
  border-radius: var(--radius-xl);
}

.small-hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(30, 41, 59, 0.84), rgba(15, 23, 42, 0.84));
}

.page-hero h1 {
  max-width: 860px;
  margin-bottom: 12px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
}

.page-hero p:last-child {
  max-width: 840px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.category-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius-lg);
  background: #0f172a;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.category-card:hover img {
  opacity: 0.72;
  transform: scale(1.08);
}

.category-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.15));
}

.category-card strong,
.category-card em {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 18px;
}

.category-card strong {
  margin-top: 126px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.category-card em {
  margin-top: 8px;
  color: #cbd5e1;
  font-style: normal;
  font-size: 13px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 160px 160px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  padding: 0 16px;
}

.filter-panel select option {
  color: #0f172a;
}

.full-grid {
  gap: 20px;
}

.ranking-grid .movie-card:nth-child(-n + 3) {
  border-color: rgba(245, 158, 11, 0.58);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--emerald);
}

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

.player-shell {
  overflow: hidden;
  padding: 14px;
  border-radius: var(--radius-xl);
}

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

.player-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 45%, rgba(16, 185, 129, 0.24), transparent 14rem),
    linear-gradient(0deg, rgba(2, 6, 23, 0.66), rgba(2, 6, 23, 0.18));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-cover span {
  display: grid;
  place-items: center;
  width: clamp(74px, 9vw, 104px);
  height: clamp(74px, 9vw, 104px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  color: #052e2b;
  font-size: 36px;
  box-shadow: 0 24px 70px rgba(16, 185, 129, 0.4);
}

.detail-copy {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.68);
}

.detail-copy h1 {
  margin-top: 18px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.12;
}

.lead-text {
  margin: 16px 0 26px;
  color: #cbd5e1;
  font-size: 20px;
}

.detail-copy h2 {
  margin: 28px 0 10px;
  color: #ffffff;
  font-size: 24px;
}

.detail-copy p {
  margin: 0;
  color: #cbd5e1;
  font-size: 16px;
}

.tag-cloud {
  margin-top: 26px;
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #0f172a;
}

.side-card {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.side-card h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 20px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--muted-2);
}

.side-card dd {
  margin: 0;
  color: #dbeafe;
}

.related-block {
  margin-top: 42px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), #020617);
}

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

.footer-logo {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:not(.site-logo) {
  color: var(--muted);
}

.site-footer a:not(.site-logo):hover {
  color: var(--emerald);
}

.footer-bottom {
  justify-content: center;
  min-height: 58px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--muted-2);
  font-size: 14px;
}

[data-card][hidden] {
  display: none;
}

@media (max-width: 1100px) {
  .category-ribbon,
  .category-overview {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .detail-side {
    position: static;
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(2, 6, 23, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-link:hover {
    background: rgba(16, 185, 129, 0.08);
    transform: none;
  }

  .hero-carousel {
    height: 72vh;
    min-height: 520px;
  }

  .hero-content {
    bottom: 64px;
  }

  .hero-prev,
  .hero-next {
    display: none;
  }

  .search-strip {
    grid-template-columns: 1fr;
    margin-top: -36px;
  }

  .home-search {
    border-radius: 22px;
    flex-direction: column;
  }

  .home-search input,
  .home-search button {
    border-radius: 16px;
  }

  .category-ribbon,
  .category-overview {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .site-logo {
    font-size: 20px;
  }

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

  .hero-tags span:nth-child(n + 4),
  .hero-tags a:nth-child(n + 4) {
    display: none;
  }

  .category-ribbon,
  .category-overview,
  .highlight-grid,
  .compact-grid,
  .full-grid {
    grid-template-columns: 1fr;
  }

  .movie-poster {
    aspect-ratio: 16 / 9;
  }

  .detail-copy {
    padding: 20px;
  }

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

  .detail-poster {
    aspect-ratio: 16 / 9;
  }
}
