* {
  box-sizing: border-box;
}

:root {
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: #111827;
  --line: #1e293b;
  --line-soft: rgba(148, 163, 184, 0.18);
  --text: #e5e7eb;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --white: #ffffff;
  --accent: #f8fafc;
  --accent-dark: #020617;
  --glow: rgba(56, 189, 248, 0.28);
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: radial-gradient(circle at 20% 0%, rgba(30, 41, 59, 0.75), transparent 35%), var(--bg);
  color: var(--soft);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(30, 41, 59, 0.9);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #94a3b8);
  color: #020617;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(148, 163, 184, 0.18);
}

.brand-name {
  font-size: 22px;
}

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

.nav-link {
  color: #cbd5e1;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-search {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #cbd5e1;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-search:hover {
  color: var(--white);
  background: rgba(148, 163, 184, 0.12);
}

.nav-search span {
  width: 16px;
  height: 16px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.nav-search span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -7px;
  bottom: -4px;
  background: currentColor;
  border-radius: 8px;
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--white);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 6px;
}

.mobile-nav {
  display: none;
  width: 100%;
  padding: 12px 20px 18px;
  border-top: 1px solid rgba(30, 41, 59, 0.9);
  background: rgba(15, 23, 42, 0.98);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: #cbd5e1;
}

.mobile-nav-link.active {
  color: var(--white);
}

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

.mobile-category-links a {
  padding: 8px 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.82);
  font-size: 13px;
}

.site-main {
  padding-top: 66px;
}

.page-main {
  min-height: 70vh;
}

.hero {
  height: 72vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 26%, rgba(56, 189, 248, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.74) 42%, rgba(2, 6, 23, 0.32) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.74) 24%, transparent 65%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 78px;
  width: min(680px, calc(100% - 48px));
}

.hero-kicker,
.page-hero span,
.section-head span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.58);
}

.hero-content p {
  max-width: 640px;
  margin: 0 0 20px;
  color: #cbd5e1;
  font-size: 18px;
}

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

.hero-tags span,
.detail-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #dbeafe;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary-button,
.ghost-button,
.home-search button,
.filter-reset {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button,
.home-search button,
.filter-reset {
  border: 1px solid transparent;
  color: #020617;
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
}

.ghost-button {
  border: 1px solid rgba(226, 232, 240, 0.22);
  color: var(--white);
  background: rgba(15, 23, 42, 0.42);
}

.primary-button:hover,
.ghost-button:hover,
.home-search button:hover,
.filter-reset:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(2, 6, 23, 0.52);
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hero-arrow.prev {
  left: 22px;
}

.hero-arrow.next {
  right: 22px;
}

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

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

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

.section-shell,
.footer-inner,
.page-hero,
.breadcrumbs,
.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-shell {
  padding: 58px 0;
}

.quick-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 22px;
  margin-top: -44px;
  position: relative;
  z-index: 10;
}

.quick-search,
.quick-links,
.rank-panel,
.detail-card,
.aside-card,
.filter-panel,
.category-card a,
.category-tile,
.page-hero {
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.74));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-search,
.quick-links,
.rank-panel,
.detail-card,
.aside-card,
.filter-panel,
.page-hero {
  border-radius: var(--radius-lg);
}

.quick-search {
  padding: 30px;
}

.quick-search h2,
.section-head h2,
.page-hero h1,
.detail-card h1,
.aside-card h2 {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.quick-search h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.quick-search p {
  max-width: 720px;
  margin: 10px 0 22px;
  color: var(--muted);
}

.home-search {
  display: flex;
  gap: 12px;
}

.home-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  outline: none;
  color: var(--white);
  background: rgba(2, 6, 23, 0.65);
  padding: 0 14px;
}

.home-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(147, 197, 253, 0.78);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 22px;
}

.quick-links a {
  min-height: 84px;
  display: flex;
  align-items: flex-end;
  border-radius: 18px;
  padding: 16px;
  color: var(--white);
  font-weight: 800;
  background:
    radial-gradient(circle at 20% 10%, rgba(59, 130, 246, 0.22), transparent 44%),
    rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

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

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.section-head a {
  color: #cbd5e1;
  font-weight: 800;
}

.compact-head h2 {
  font-size: 28px;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.23);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 232, 240, 0.36);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
}

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

.movie-card:hover .card-cover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2, 6, 23, 0.84));
}

.card-play {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #020617;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.rank-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  min-width: 38px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: #020617;
  background: #ffffff;
  font-style: normal;
  font-weight: 900;
}

.card-body {
  padding: 18px;
}

.card-meta {
  margin-bottom: 8px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
}

.card-body h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: #bfdbfe;
}

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

.card-tags span {
  min-height: 24px;
  padding: 3px 8px;
  color: #cbd5e1;
  font-size: 11px;
}

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

.rank-panel {
  padding: 24px;
  position: sticky;
  top: 90px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 14px;
  padding: 10px;
  background: rgba(2, 6, 23, 0.44);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: rgba(30, 41, 59, 0.72);
  transform: translateX(3px);
}

.rank-number {
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
}

.rank-item img {
  width: 64px;
  height: 88px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong,
.rank-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-copy strong {
  color: var(--white);
}

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

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

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

.category-tile,
.category-card a {
  display: block;
  min-height: 160px;
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-card a:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 232, 240, 0.34);
}

.category-tile strong,
.category-card h2 {
  display: block;
  margin: 0 0 10px;
  color: var(--white);
  font-size: 22px;
}

.category-tile span,
.category-card p {
  margin: 0;
  color: var(--muted);
}

.category-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs strong {
  color: var(--white);
}

.page-hero {
  min-height: 260px;
  display: flex;
  align-items: end;
  margin-top: 28px;
  padding: 36px;
  overflow: hidden;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -170px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  filter: blur(12px);
}

.page-hero > div {
  position: relative;
  max-width: 780px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 64px);
}

.page-hero p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.slim-hero {
  min-height: 240px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.65fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  margin-bottom: 28px;
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-reset {
  border: 0;
}

.empty-state {
  margin: 24px 0;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.66);
  text-align: center;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.45fr);
  gap: 28px;
  padding: 28px 0 64px;
  align-items: start;
}

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

.player-shell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000000;
  box-shadow: var(--shadow);
}

.player-area {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #020617;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: blur(1px) brightness(0.62);
}

.player-start {
  position: relative;
  z-index: 3;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #020617;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}

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

.player-start span {
  margin-left: 5px;
  font-size: 34px;
}

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

.detail-card h1 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

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

.detail-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(2, 6, 23, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.14);
  font-size: 13px;
}

.detail-card h2 {
  margin: 28px 0 10px;
  color: var(--white);
  font-size: 22px;
}

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

.detail-aside {
  position: sticky;
  top: 90px;
}

.aside-card h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.aside-related {
  display: grid;
  gap: 16px;
}

.aside-related .movie-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
}

.aside-related .card-cover {
  aspect-ratio: 2 / 3;
  height: 100%;
}

.aside-related .card-body {
  padding: 14px;
}

.aside-related .card-body h3 {
  font-size: 15px;
}

.aside-related .card-body p,
.aside-related .card-tags {
  display: none;
}

.site-footer {
  border-top: 1px solid rgba(30, 41, 59, 0.9);
  background: rgba(2, 6, 23, 0.86);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 30px;
  padding: 42px 0;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  padding: 8px 10px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
  border-color: rgba(226, 232, 240, 0.32);
}

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

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

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

  .rank-panel,
  .detail-aside {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .brand-name {
    font-size: 19px;
  }

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

  .hero-content {
    bottom: 72px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .quick-entry,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .movie-grid,
  .compact-grid,
  .ranking-grid,
  .search-grid,
  .category-movie-grid,
  .category-grid,
  .category-page-grid,
  .wide-rank-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .page-hero {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .section-shell,
  .footer-inner,
  .page-hero,
  .breadcrumbs,
  .detail-layout {
    width: min(100% - 24px, 1180px);
  }

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

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

  .hero-actions {
    gap: 8px;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .quick-search,
  .quick-links,
  .rank-panel,
  .detail-card,
  .aside-card,
  .filter-panel {
    padding: 18px;
  }

  .movie-grid,
  .compact-grid,
  .ranking-grid,
  .search-grid,
  .category-movie-grid,
  .category-grid,
  .category-page-grid {
    grid-template-columns: 1fr;
  }

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

  .aside-related .movie-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}
