:root {
  --night-950: #050507;
  --night-925: #090b10;
  --night-900: #0e1118;
  --night-850: #121620;
  --night-800: #171c27;
  --night-700: #242b38;
  --key-gold-600: #d89b2b;
  --key-gold-500: #f5c451;
  --key-gold-400: #ffd978;
  --text-main: #f7f4ec;
  --text-soft: #b9bdc8;
  --text-muted: #858b99;
  --line: rgba(245, 196, 81, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(245, 196, 81, 0.16), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(111, 83, 34, 0.18), transparent 24rem),
    var(--night-950);
  color: var(--text-main);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: -1;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(1200px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.site-logo__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--night-950);
  background: linear-gradient(135deg, var(--key-gold-400), var(--key-gold-600));
  box-shadow: 0 10px 28px rgba(245, 196, 81, 0.22);
}

.site-logo__text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: transparent;
  background: linear-gradient(90deg, var(--key-gold-400), var(--key-gold-600));
  -webkit-background-clip: text;
  background-clip: text;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--text-soft);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--key-gold-400);
  background: rgba(245, 196, 81, 0.09);
}

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

.header-search input,
.mobile-panel input,
.hero-search input,
.filter-panel input {
  width: 230px;
  border: 1px solid rgba(245, 196, 81, 0.18);
  border-radius: 14px;
  padding: 11px 14px;
  color: var(--text-main);
  background: rgba(14, 17, 24, 0.78);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-panel input:focus,
.hero-search input:focus,
.filter-panel input:focus {
  border-color: rgba(245, 196, 81, 0.65);
  box-shadow: 0 0 0 4px rgba(245, 196, 81, 0.10);
}

.header-search button,
.mobile-panel button,
.hero-search button {
  border: 0;
  border-radius: 14px;
  padding: 11px 16px;
  color: var(--night-950);
  font-weight: 800;
  background: linear-gradient(135deg, var(--key-gold-400), var(--key-gold-600));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text-main);
  background: rgba(245, 196, 81, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--key-gold-400);
}

.mobile-panel {
  display: none;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14, 17, 24, 0.96);
}

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

.mobile-panel a {
  color: var(--text-soft);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

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

.hero-slide__backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(16px) saturate(1.14);
  transform: scale(1.08);
  opacity: 0.32;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.96), rgba(5, 5, 7, 0.72) 48%, rgba(5, 5, 7, 0.42)),
    linear-gradient(0deg, var(--night-950), transparent 30%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: 80px 0 150px;
}

.hero-kicker,
.page-hero span,
.section-heading span,
.category-tile span,
.ranking-panel__head span {
  color: var(--key-gold-400);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 680px;
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-tags,
.detail-tags,
.movie-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 24px 0;
}

.hero-tags span,
.detail-tags span,
.movie-card__tags span {
  border: 1px solid rgba(245, 196, 81, 0.22);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--key-gold-400);
  background: rgba(245, 196, 81, 0.08);
  font-size: 12px;
}

.hero-actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--night-950);
  background: linear-gradient(135deg, var(--key-gold-400), var(--key-gold-600));
  box-shadow: 0 16px 40px rgba(245, 196, 81, 0.22);
}

.btn-ghost {
  border: 1px solid rgba(245, 196, 81, 0.28);
  color: var(--key-gold-400);
  background: rgba(245, 196, 81, 0.07);
}

.hero-slide__poster {
  position: absolute;
  z-index: 3;
  right: calc((100vw - min(1200px, calc(100vw - 32px))) / 2);
  top: 50%;
  width: min(360px, 28vw);
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(245, 196, 81, 0.25);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(-50%) rotate(2deg);
}

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

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-controls button {
  border: 1px solid rgba(245, 196, 81, 0.28);
  color: var(--key-gold-400);
  background: rgba(5, 5, 7, 0.72);
  border-radius: 999px;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  font-size: 26px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 26px;
  height: 8px;
  padding: 0;
  opacity: 0.55;
}

.hero-dot.is-active {
  width: 54px;
  opacity: 1;
  background: var(--key-gold-500);
}

.hero-search {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  width: min(720px, calc(100% - 32px));
  transform: translateX(-50%);
  padding: 10px;
  border: 1px solid rgba(245, 196, 81, 0.2);
  border-radius: 22px;
  background: rgba(5, 5, 7, 0.74);
  backdrop-filter: blur(14px);
}

.hero-search input {
  flex: 1;
  width: auto;
}

.content-section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 0;
}

.content-section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

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

.section-heading h2,
.page-hero h1,
.detail-info h1 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
  margin-top: 8px;
  max-width: 700px;
  color: var(--text-soft);
  line-height: 1.8;
}

.section-heading a {
  color: var(--key-gold-400);
  font-weight: 800;
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 81, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(23, 28, 39, 0.95), rgba(10, 12, 18, 0.95));
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 196, 81, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.movie-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #10131a;
}

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

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

.movie-card__poster::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(0deg, rgba(5, 5, 7, 0.86), transparent);
}

.movie-card__play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night-950);
  background: var(--key-gold-500);
  box-shadow: 0 12px 26px rgba(245, 196, 81, 0.24);
}

.card-rank {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--night-950);
  background: var(--key-gold-500);
  font-size: 14px;
}

.movie-card__body {
  padding: 16px;
}

.movie-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
}

.movie-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}

.movie-card h3 a:hover {
  color: var(--key-gold-400);
}

.movie-card p {
  min-height: 44px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card__tags {
  margin-top: 14px;
}

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

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

.category-tile {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 81, 0.14);
  border-radius: 26px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.13), transparent 42%),
    rgba(14, 17, 24, 0.92);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 196, 81, 0.44);
}

.category-tile__covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.category-tile__covers img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  object-fit: cover;
}

.category-tile__covers img:nth-child(2) {
  transform: translateY(18px);
}

.category-tile h2 {
  margin: 8px 0;
  font-size: 26px;
  font-weight: 900;
}

.category-tile p {
  color: var(--text-soft);
  line-height: 1.7;
}

.ranking-panel,
.side-card,
.player-card,
.detail-article,
.filter-panel {
  border: 1px solid rgba(245, 196, 81, 0.14);
  border-radius: 24px;
  background: rgba(14, 17, 24, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.ranking-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.ranking-panel__head h2 {
  margin: 4px 0 18px;
  font-size: 30px;
  font-weight: 900;
}

.ranking-list {
  display: grid;
  gap: 10px;
}

.rank-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.rank-row:hover {
  background: rgba(245, 196, 81, 0.08);
}

.rank-row span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--night-950);
  background: var(--key-gold-500);
  font-weight: 900;
}

.rank-row strong,
.rank-row em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 32px;
}

.page-hero > div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 81, 0.16);
  border-radius: 32px;
  padding: clamp(32px, 6vw, 68px);
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.18), transparent 46%),
    radial-gradient(circle at 80% 10%, rgba(245, 196, 81, 0.17), transparent 22rem),
    rgba(14, 17, 24, 0.86);
}

.filter-panel {
  margin-bottom: 24px;
  padding: 16px;
}

.filter-panel__search input {
  width: 100%;
  margin-bottom: 14px;
}

.filter-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 1px solid rgba(245, 196, 81, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--night-950);
  background: var(--key-gold-500);
}

.empty-state {
  display: none;
  margin-top: 18px;
  border: 1px solid rgba(245, 196, 81, 0.14);
  border-radius: 20px;
  padding: 26px;
  text-align: center;
  color: var(--text-soft);
  background: rgba(14, 17, 24, 0.72);
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 196, 81, 0.14);
}

.detail-hero__backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(18px) saturate(1.15);
  transform: scale(1.08);
  opacity: 0.28;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 7, 0.96), rgba(5, 5, 7, 0.72)), linear-gradient(0deg, var(--night-950), transparent 45%);
}

.detail-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.detail-poster {
  border: 1px solid rgba(245, 196, 81, 0.24);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--key-gold-400);
}

.detail-one-line {
  max-width: 820px;
  margin: 16px 0 20px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
}

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

.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.06);
}

.detail-info .btn {
  margin-top: 24px;
}

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

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

.player-card {
  padding: 14px;
}

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

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

.play-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--text-main);
  background: radial-gradient(circle, rgba(245, 196, 81, 0.20), rgba(5, 5, 7, 0.72));
  transition: opacity 0.25s ease;
}

.play-cover span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night-950);
  background: var(--key-gold-500);
  box-shadow: 0 20px 42px rgba(245, 196, 81, 0.28);
  font-size: 28px;
}

.play-cover strong {
  align-self: start;
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--night-950);
  background: rgba(245, 196, 81, 0.92);
}

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

.detail-article {
  padding: 26px;
}

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

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

.detail-article p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.9;
}

.detail-tags--plain {
  margin-top: 8px;
}

.detail-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.side-card {
  padding: 22px;
}

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

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

.side-card dd {
  margin: 0;
  color: var(--text-soft);
}

.side-links {
  display: grid;
  gap: 10px;
}

.side-links a {
  display: grid;
  gap: 3px;
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.side-links a:hover {
  color: var(--key-gold-400);
  background: rgba(245, 196, 81, 0.08);
}

.side-links span {
  color: var(--text-muted);
  font-size: 12px;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.82);
}

.site-footer__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--text-soft);
}

.site-footer strong {
  color: var(--key-gold-400);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover {
  color: var(--key-gold-400);
}

@media (max-width: 1120px) {
  .site-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-slide__poster {
    opacity: 0.35;
    right: 24px;
    width: 300px;
  }

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

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

  .content-section--split,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    height: 64px;
  }

  .site-logo__text {
    font-size: 17px;
  }

  .hero,
  .hero-slide__content {
    min-height: 760px;
  }

  .hero-slide__content {
    padding: 56px 0 170px;
  }

  .hero-slide__poster {
    display: none;
  }

  .hero-search {
    display: grid;
  }

  .hero-search input,
  .hero-search button {
    width: 100%;
  }

  .hero-controls {
    bottom: 118px;
  }

  .section-heading,
  .site-footer__inner {
    display: grid;
  }

  .movie-grid,
  .movie-grid--home,
  .movie-grid--compact,
  .category-grid,
  .category-grid--large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .movie-card__body {
    padding: 12px;
  }

  .movie-card h3 {
    font-size: 16px;
  }

  .movie-card p {
    font-size: 13px;
  }

  .detail-hero__inner {
    grid-template-columns: 1fr;
    padding: 36px 0;
  }

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

  .side-card dl {
    grid-template-columns: 58px minmax(0, 1fr);
  }
}

@media (max-width: 440px) {
  .movie-grid,
  .movie-grid--home,
  .movie-grid--compact,
  .category-grid,
  .category-grid--large {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }
}
