:root {
  color-scheme: light;
  --page-bg: #f8fafc;
  --panel-bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --cyan: #06b6d4;
  --blue: #2563eb;
  --indigo: #4f46e5;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Microsoft YaHei",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 54%, #f8fafc 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.28);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  height: 72px;
  padding: 0 24px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  border-radius: 13px;
  background: linear-gradient(135deg, #38bdf8, #06b6d4, #2563eb);
  box-shadow: 0 12px 24px rgba(6, 182, 212, 0.34);
}

.brand__name {
  font-size: 21px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__link {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #22d3ee;
  transition: width 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #ffffff;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #ffffff;
}

.hero {
  position: relative;
  height: min(660px, 82vh);
  min-height: 520px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(
      circle at top left,
      rgba(6, 182, 212, 0.36),
      transparent 30%
    ),
    linear-gradient(135deg, #020617, #1e293b 48%, #020617);
}

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.94) 0%,
      rgba(15, 23, 42, 0.76) 42%,
      rgba(15, 23, 42, 0.28) 72%,
      rgba(2, 6, 23, 0.72) 100%
    ),
    linear-gradient(0deg, rgba(2, 6, 23, 0.98), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  height: 100%;
  padding: 0 96px;
  margin: 0 auto;
}

.hero__badge,
.page-hero span,
.section-heading span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.hero__site-title {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 800;
}

.hero h1,
.hero h2 {
  max-width: 760px;
  margin: 16px 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero__meta span,
.detail-eyebrow span,
.movie-card__meta span,
.movie-list-card__meta span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 11px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.hero__actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  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, #06b6d4, #2563eb);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.26);
}

.button--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%) scale(1.04);
}

.hero__arrow--prev {
  left: 26px;
}

.hero__arrow--next {
  right: 26px;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

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

.hero__dot.is-active {
  width: 34px;
  background: #ffffff;
}

.page-wrap {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.page-wrap--top {
  padding-top: 42px;
  padding-bottom: 72px;
}

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

.content-section--soft {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background: linear-gradient(
    135deg,
    rgba(236, 254, 255, 0.9),
    rgba(239, 246, 255, 0.96)
  );
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.12);
}

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

.section-heading h2,
.page-hero h1 {
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section-heading a {
  color: var(--cyan);
  font-weight: 900;
}

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

.movie-card,
.movie-list-card,
.ranking-card,
.prose-card,
.side-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--panel-bg);
  box-shadow: var(--soft-shadow);
}

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

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

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

.movie-card__cover img,
.movie-list-card__cover img,
.ranking-card img,
.category-tile img,
.category-panel img,
.side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .movie-card__cover img,
.category-tile:hover img,
.category-panel:hover img {
  transform: scale(1.08);
}

.movie-card__cover::after,
.movie-list-card__cover::after,
.category-tile::after,
.category-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.05));
}

.movie-card__year {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(8px);
}

.movie-card__play,
.movie-list-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.84);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

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

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

.movie-card__meta,
.movie-list-card__meta,
.detail-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.movie-card__meta span,
.movie-list-card__meta span,
.detail-eyebrow span {
  color: #0e7490;
  background: #ecfeff;
}

.movie-card h3,
.movie-list-card h3,
.ranking-card h2,
.side-card h2 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card p,
.movie-list-card p,
.category-tile p,
.category-panel p,
.ranking-card p,
.side-card p,
.prose-card p {
  color: var(--muted);
  line-height: 1.75;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: #f1f5f9;
}

.tag-row--large span {
  padding: 7px 12px;
  font-size: 13px;
}

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

.category-tile,
.category-panel {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 28px;
  background: #0f172a;
  box-shadow: var(--soft-shadow);
}

.category-tile img,
.category-panel img {
  position: absolute;
  inset: 0;
}

.category-tile span,
.category-tile p,
.category-panel div {
  position: relative;
  z-index: 2;
}

.category-tile {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  color: #ffffff;
}

.category-tile span {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 900;
}

.category-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

.rank-list {
  display: grid;
  gap: 12px;
}

.rank-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.rank-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(135deg, #f43f5e, #f59e0b);
}

.rank-row strong {
  font-size: 17px;
}

.rank-row em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

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

.movie-list-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 14px;
}

.movie-list-card__cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background: #0f172a;
}

.page-hero {
  padding: clamp(34px, 6vw, 64px);
  margin-bottom: 34px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top left,
      rgba(6, 182, 212, 0.2),
      transparent 32%
    ),
    linear-gradient(135deg, #ffffff, #eff6ff);
  box-shadow: var(--soft-shadow);
}

.page-hero p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.page-hero--category {
  background:
    radial-gradient(
      circle at top right,
      rgba(79, 70, 229, 0.2),
      transparent 36%
    ),
    linear-gradient(135deg, #ffffff, #ecfeff);
}

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

.category-panel {
  min-height: 260px;
}

.category-panel div {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  color: #ffffff;
}

.category-panel span {
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.category-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 180px 180px auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.filter-panel label {
  display: grid;
  gap: 7px;
}

.filter-panel span {
  color: #475569;
  font-size: 12px;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: #f8fafc;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.16);
}

.filter-panel button {
  height: 46px;
  padding: 0 18px;
  color: #ffffff;
  font-weight: 900;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f172a, #2563eb);
}

.filter-empty {
  padding: 28px;
  color: var(--muted);
  text-align: center;
  border-radius: 18px;
  background: #ffffff;
}

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

.ranking-card a {
  display: grid;
  grid-template-columns: 70px 190px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px;
}

.ranking-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  border-radius: 16px;
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.ranking-card img {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
}

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

.breadcrumb a {
  color: #0891b2;
}

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

.player-shell,
.detail-content,
.side-card,
.prose-card {
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.player-shell {
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 28px;
}

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

.movie-video {
  width: 100%;
  height: 100%;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  border: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.18));
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

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

.player-cover__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  padding-left: 5px;
  font-size: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.player-cover__text {
  font-size: 17px;
  font-weight: 900;
}

.player-message {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  padding: 16px 22px;
  color: #ffffff;
  font-weight: 800;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.86);
  transform: translate(-50%, -50%);
}

.detail-content {
  padding: clamp(24px, 5vw, 44px);
  border-radius: 28px;
}

.detail-content h1 {
  margin: 12px 0 16px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.detail-lead {
  color: #334155;
  font-size: 19px;
  line-height: 1.85;
}

.detail-content h2 {
  margin: 34px 0 12px;
  font-size: 25px;
  font-weight: 900;
}

.detail-content p {
  color: #475569;
  line-height: 1.92;
}

.detail-side {
  position: sticky;
  top: 96px;
  align-self: start;
}

.side-card {
  padding: 18px;
  border-radius: 28px;
}

.side-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 20px;
}

.side-card .button {
  width: 100%;
  margin-top: 16px;
}

.prose-card {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 30px;
}

.prose-card h2 {
  margin-top: 0;
  font-size: 28px;
  font-weight: 900;
}

.prose-card .button {
  margin-top: 16px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  width: min(1280px, calc(100% - 40px));
  padding: 54px 0;
  margin: 0 auto;
}

.brand--footer {
  color: #ffffff;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: #94a3b8;
  line-height: 1.8;
}

.site-footer__links h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.site-footer__links div {
  display: grid;
  gap: 10px;
}

.site-footer__links a:hover {
  color: #67e8f9;
}

.site-footer__bottom {
  padding: 18px;
  color: #64748b;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

[hidden] {
  display: none !important;
}

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

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

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

  .detail-side {
    position: static;
  }

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

@media (max-width: 820px) {
  .site-header__inner {
    height: 66px;
    padding: 0 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero {
    min-height: 580px;
  }

  .hero__content {
    padding: 0 24px;
  }

  .hero__arrow {
    display: none;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .page-wrap {
    width: min(100% - 28px, 1280px);
  }

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

  .movie-list-card,
  .ranking-card a {
    grid-template-columns: 130px 1fr;
  }

  .ranking-card__num {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .brand__name {
    font-size: 18px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 620px;
  }

  .hero__actions,
  .section-heading,
  .rank-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .section-heading a {
    width: 100%;
  }

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

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

  .rank-row {
    display: grid;
    grid-template-columns: 44px 1fr;
  }

  .rank-row em {
    grid-column: 2;
  }

  .player-cover__icon {
    width: 64px;
    height: 64px;
  }
}
