:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --sky: #38bdf8;
  --blue: #2563eb;
  --yellow: #facc15;
  --red: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(14, 165, 233, 0.18), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(37, 99, 235, 0.16), transparent 30%),
    linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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: 90;
  background: rgba(2, 6, 23, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.24);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon,
.footer-brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: white;
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.22);
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 19px;
  letter-spacing: 0.02em;
}

.brand-text em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #cbd5e1;
  font-weight: 600;
}

.desktop-nav a,
.mobile-panel a {
  transition: color 0.22s ease, transform 0.22s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-panel a:hover,
.mobile-panel a.active {
  color: white;
}

.desktop-nav a.active {
  color: var(--sky);
}

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

.mobile-panel {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.96);
}

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

.mobile-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.mobile-cats a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

.hero {
  position: relative;
  height: min(80vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.2s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.93) 0%, rgba(2, 6, 23, 0.62) 46%, rgba(2, 6, 23, 0.86) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.16) 52%, rgba(2, 6, 23, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 42px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-content h1 {
  width: min(740px, 100%);
  margin: 18px 0 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  width: min(650px, 100%);
  margin: 0 0 28px;
  color: #cbd5e1;
  font-size: clamp(16px, 2vw, 21px);
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 13px;
  backdrop-filter: blur(8px);
}

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

.primary-btn,
.ghost-btn,
.home-search-form button,
.anchor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn,
.home-search-form button {
  border: none;
  color: white;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 18px 42px rgba(14, 165, 233, 0.28);
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.home-search-form button:hover,
.anchor-btn:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.44);
  color: white;
  font-size: 36px;
  line-height: 1;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 26px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 42px;
  background: white;
}

.quick-search {
  position: relative;
  z-index: 4;
  margin-top: -52px;
}

.search-shell,
.filter-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.search-shell h2 {
  margin: 4px 0 0;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.2;
}

.home-search-form,
.filter-panel {
  display: flex;
  gap: 12px;
}

.home-search-form input,
.filter-panel input,
.filter-panel select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: rgba(2, 6, 23, 0.72);
  color: white;
}

.home-search-form input {
  width: min(380px, 48vw);
  padding: 0 16px;
}

.filter-panel {
  grid-template-columns: none;
  margin-bottom: 30px;
  box-shadow: none;
}

.filter-panel input {
  flex: 1 1 300px;
  padding: 0 16px;
}

.filter-panel select {
  width: 160px;
  padding: 0 12px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: rgba(15, 23, 42, 0.34);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section-head.with-link a {
  color: var(--sky);
  font-weight: 800;
}

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

.category-tile,
.category-card a {
  position: relative;
  display: block;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.category-tile img,
.category-card-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.category-tile:hover img,
.category-card a:hover img {
  transform: scale(1.08);
  opacity: 0.78;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.15));
}

.category-tile span,
.category-tile p {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
}

.category-tile span {
  bottom: 54px;
  font-size: 22px;
  font-weight: 900;
}

.category-tile p {
  bottom: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.category-card-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 190px;
  overflow: hidden;
}

.category-card-body {
  padding: 22px;
}

.category-card-body h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-card-body p {
  min-height: 52px;
  margin: 0 0 18px;
  color: var(--muted);
}

.category-card-body span {
  color: var(--sky);
  font-weight: 800;
}

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.movie-card-link:hover {
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow: 0 24px 70px rgba(14, 165, 233, 0.12);
  transform: translateY(-4px) scale(1.01);
}

.movie-cover {
  position: relative;
  height: 265px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.movie-card-small .movie-cover {
  height: 190px;
}

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

.movie-card-link:hover .movie-cover img {
  transform: scale(1.08);
}

.movie-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.04) 60%);
}

.play-mark {
  position: absolute;
  inset: 0;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #020617;
  font-size: 25px;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card-link:hover .play-mark {
  opacity: 1;
  transform: scale(1);
}

.movie-year,
.rank-number {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 9px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.74);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.rank-number {
  left: 12px;
  right: auto;
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.movie-info {
  padding: 16px;
}

.movie-info h3 {
  display: -webkit-box;
  height: 52px;
  margin: 0 0 9px;
  overflow: hidden;
  color: white;
  font-size: 17px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card-link:hover h3 {
  color: var(--sky);
}

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

.movie-meta,
.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted-2);
  font-size: 12px;
}

.movie-tags {
  margin-top: 10px;
}

.movie-tags span {
  padding: 3px 7px;
  border-radius: 99px;
  background: rgba(148, 163, 184, 0.1);
}

.movie-card-horizontal .movie-card-link {
  display: grid;
  grid-template-columns: 150px 1fr;
}

.movie-card-horizontal .movie-cover {
  height: 140px;
}

.movie-card-horizontal .movie-info h3 {
  height: auto;
  min-height: 0;
}

.page-main,
.detail-main {
  min-height: 72vh;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 58px;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.16), transparent 34%),
    linear-gradient(180deg, #0f172a, #020617);
  border-bottom: 1px solid var(--line);
}

.compact-hero {
  padding-bottom: 72px;
}

.page-hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.crumbs a:hover {
  color: var(--sky);
}

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

.top-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.top-rank-card a {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0f172a;
}

.top-rank-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.62;
}

.top-rank-card div {
  position: absolute;
  inset: auto 20px 20px;
}

.top-rank-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  font-weight: 900;
}

.top-rank-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.top-rank-card p {
  margin: 0;
  color: #cbd5e1;
}

.detail-hero {
  min-height: 540px;
  padding: 72px 0;
  background: #020617;
}

.detail-bg,
.detail-bg-mask {
  position: absolute;
  inset: 0;
}

.detail-bg {
  opacity: 0.48;
  filter: blur(3px) saturate(1.04);
  transform: scale(1.02);
}

.detail-bg-mask {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.92)),
    linear-gradient(0deg, #020617, transparent 55%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 38px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.detail-intro h1 {
  margin: 18px 0 18px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-intro p {
  max-width: 760px;
  margin: 0 0 24px;
  color: #cbd5e1;
  font-size: 19px;
}

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

.detail-content,
.detail-side {
  min-width: 0;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #000;
  box-shadow: var(--shadow);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
}

.player-start span {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #020617;
  font-size: 34px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  transition: transform 0.2s ease;
}

.player-start:hover span {
  transform: scale(1.06);
}

.player-start.hidden {
  display: none;
}

.player-layer {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.player-wrap:hover .player-layer,
.player-wrap.playing .player-layer {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.player-layer button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 8px 14px;
  background: rgba(15, 23, 42, 0.72);
  color: white;
  backdrop-filter: blur(8px);
}

.player-message {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.72);
}

.player-message.show {
  display: grid;
}

.detail-card,
.detail-side {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.detail-card h2,
.detail-side h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

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

.movie-dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
}

.movie-dl div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
}

.movie-dl dt {
  color: var(--muted-2);
  font-size: 13px;
}

.movie-dl dd {
  margin: 4px 0 0;
  color: white;
  font-weight: 800;
}

.detail-side {
  position: sticky;
  top: 94px;
  margin-top: 0;
}

.side-list {
  display: grid;
  gap: 14px;
}

.side-list .movie-card-horizontal .movie-card-link {
  grid-template-columns: 118px 1fr;
}

.side-list .movie-card-horizontal .movie-cover {
  height: 104px;
}

.side-list .movie-info {
  padding: 10px 12px;
}

.side-list .movie-info p,
.side-list .movie-tags {
  display: none;
}

.hidden-card {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #020617;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  padding: 54px 0 34px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 900;
}

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

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--sky);
}

.footer-bottom {
  padding: 18px 0 28px;
  color: var(--muted-2);
  text-align: center;
  border-top: 1px solid var(--line);
}

@media (max-width: 1040px) {
  .movie-grid,
  .category-grid,
  .category-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .detail-side {
    position: static;
  }
}

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

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .hero {
    height: 680px;
    min-height: 680px;
  }

  .hero-arrow {
    display: none;
  }

  .quick-search {
    margin-top: 0;
  }

  .search-shell,
  .home-search-form,
  .filter-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-search-form input,
  .filter-panel input,
  .filter-panel select {
    width: 100%;
  }

  .section {
    padding: 50px 0;
  }

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

  .movie-grid,
  .category-grid,
  .category-list-grid,
  .top-rank-grid,
  .ranking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .movie-cover {
    height: 220px;
  }

  .movie-card-horizontal .movie-card-link {
    grid-template-columns: 120px 1fr;
  }

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

  .detail-poster {
    width: min(260px, 78vw);
  }

  .detail-poster img {
    height: 360px;
  }

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

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

  .hero-content h1,
  .page-hero h1,
  .detail-intro h1 {
    letter-spacing: -0.035em;
  }

  .movie-grid,
  .category-grid,
  .category-list-grid,
  .top-rank-grid,
  .ranking-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal .movie-card-link,
  .side-list .movie-card-horizontal .movie-card-link {
    grid-template-columns: 128px 1fr;
  }

  .movie-cover {
    height: 255px;
  }

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