:root {
  --night-950: #020617;
  --night-925: #07111f;
  --night-900: #0f172a;
  --night-850: #172033;
  --night-800: #1e293b;
  --night-700: #334155;
  --gold-300: #fde047;
  --gold-400: #facc15;
  --gold-500: #eab308;
  --gold-600: #ca8a04;
  --blue-400: #60a5fa;
  --red-400: #f87171;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --border: rgba(148, 163, 184, 0.18);
  --card: rgba(15, 23, 42, 0.86);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(234, 179, 8, 0.12), transparent 30rem),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--night-950), var(--night-900) 42%, var(--night-950));
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(14px);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--gold-400);
  white-space: nowrap;
}

.site-logo__mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(234, 179, 8, 0.12);
  color: var(--gold-400);
  box-shadow: 0 0 18px rgba(234, 179, 8, 0.22);
}

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

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

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

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.92);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 220px;
  padding: 9px 12px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(234, 179, 8, 0.72);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.header-search button,
.mobile-search button,
.filter-panel button {
  border: 0;
  border-radius: 12px;
  padding: 9px 14px;
  color: var(--night-950);
  background: var(--gold-500);
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.filter-panel button:hover,
.btn-primary:hover {
  background: var(--gold-600);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 12px;
}

.mobile-drawer {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.98);
}

.mobile-drawer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mobile-drawer a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.72);
  color: #dbeafe;
}

.mobile-search {
  display: flex;
  gap: 8px;
}

.mobile-search input {
  width: 100%;
  padding: 10px 12px;
}

.hero {
  position: relative;
  height: min(720px, 74vh);
  min-height: 520px;
  overflow: hidden;
  background: var(--night-950);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

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

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

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.76) 42%, rgba(2, 6, 23, 0.22) 100%),
    linear-gradient(0deg, var(--night-950), rgba(2, 6, 23, 0.08) 38%, rgba(2, 6, 23, 0.08) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold-400);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.62);
}

.hero-slide p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #d1d5db;
  font-size: clamp(17px, 2.4vw, 24px);
}

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

.hero-tags span,
.detail-tags span,
.movie-card__tags span {
  border: 1px solid rgba(234, 179, 8, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(234, 179, 8, 0.1);
  color: #fde68a;
  font-size: 12px;
}

.hero-actions,
.detail-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  border: 0;
  color: var(--night-950);
  background: var(--gold-500);
  cursor: pointer;
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
}

.btn-ghost:hover {
  border-color: rgba(234, 179, 8, 0.42);
  background: rgba(30, 41, 59, 0.9);
  transform: translateY(-1px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.55);
  color: var(--text);
  font-size: 32px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-control:hover {
  border-color: rgba(234, 179, 8, 0.5);
  background: rgba(15, 23, 42, 0.86);
}

.hero-control--prev {
  left: 24px;
}

.hero-control--next {
  right: 24px;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 28px;
  background: var(--gold-500);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -42px;
  position: relative;
  z-index: 8;
}

.stats-strip a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: var(--shadow);
}

.stats-strip strong {
  color: var(--gold-400);
  font-size: 30px;
  line-height: 1;
}

.stats-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section-block {
  padding: 66px 0 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-more {
  color: var(--gold-400);
  font-weight: 800;
  white-space: nowrap;
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 179, 8, 0.42);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 24px rgba(234, 179, 8, 0.1);
}

.movie-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--night-900);
}

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

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

.movie-card__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.7), transparent 58%);
}

.movie-card__play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--night-950);
  font-size: 15px;
  box-shadow: 0 0 18px rgba(234, 179, 8, 0.4);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: var(--night-950);
  font-weight: 900;
  box-shadow: 0 0 18px rgba(234, 179, 8, 0.4);
}

.movie-card__body {
  padding: 16px;
}

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

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

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

.movie-card p {
  min-height: 45px;
  margin: 0 0 12px;
  color: #cbd5e1;
  font-size: 14px;
}

.movie-card--compact .movie-card__poster {
  aspect-ratio: 16 / 9;
}

.movie-card--compact p {
  min-height: auto;
}

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

.category-tile {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--night-900);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.35s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.16));
}

.category-tile__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
}

.category-tile strong {
  font-size: 20px;
}

.category-tile small {
  color: var(--muted);
}

.page-hero {
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(234, 179, 8, 0.16), transparent 24rem);
}

.page-hero--small {
  padding: 76px 0 58px;
}

.page-hero h1 {
  max-width: 840px;
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

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

.filter-panel {
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
}

.filter-panel__title {
  margin-bottom: 12px;
  color: var(--gold-400);
  font-weight: 800;
}

.movie-filter-form {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(120px, 0.8fr) minmax(140px, 0.9fr) minmax(120px, 0.7fr) auto auto;
  gap: 10px;
}

.filter-panel input,
.filter-panel select {
  min-width: 0;
  padding: 11px 12px;
}

.filter-panel .js-filter-reset {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(30, 41, 59, 0.9);
}

.filter-count {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.empty-result {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.82);
  color: var(--muted);
  text-align: center;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
}

.category-overview-card__image {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 11;
}

.category-overview-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overview-card h2 {
  margin: 0 0 8px;
}

.category-overview-card p {
  margin: 0 0 12px;
  color: #cbd5e1;
}

.category-count {
  color: var(--gold-400);
  font-weight: 800;
}

.category-samples {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.category-samples a {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(30, 41, 59, 0.9);
  color: #dbeafe;
  font-size: 12px;
}

.detail-wrap {
  padding-top: 34px;
}

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

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

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

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(234, 179, 8, 0.18);
  border-radius: 26px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  background:
    radial-gradient(circle, rgba(234, 179, 8, 0.12), transparent 16rem),
    linear-gradient(0deg, rgba(2, 6, 23, 0.36), rgba(2, 6, 23, 0.12));
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-overlay__icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--night-950);
  font-size: 28px;
  box-shadow: 0 0 32px rgba(234, 179, 8, 0.42);
}

.detail-content-card,
.info-panel,
.poster-panel,
.prose-card,
.sitemap-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.detail-content-card {
  margin-top: 22px;
  padding: 26px;
}

.detail-content-card h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.detail-one-line {
  color: #e2e8f0;
  font-size: 18px;
}

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

.detail-content-card p {
  color: #cbd5e1;
}

.poster-panel {
  overflow: hidden;
}

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

.info-panel {
  margin-top: 18px;
  padding: 20px;
}

.info-panel h2 {
  margin: 0 0 16px;
}

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

.info-panel dt {
  color: var(--muted);
}

.info-panel dd {
  margin: 0;
  color: #e2e8f0;
}

.info-panel a {
  color: var(--gold-400);
}

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

.sitemap-card {
  padding: 22px;
}

.sitemap-card--wide {
  grid-column: 1 / -1;
}

.sitemap-card h2 {
  margin: 0 0 14px;
}

.sitemap-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.sitemap-card a:hover {
  color: var(--gold-400);
}

.sitemap-card span {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.sitemap-movie-list {
  columns: 3;
  column-gap: 28px;
}

.sitemap-movie-list li {
  break-inside: avoid;
}

.prose-card {
  padding: 30px;
  color: #cbd5e1;
  font-size: 17px;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.82);
}

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

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

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 16px;
  color: var(--muted-2);
  text-align: center;
  font-size: 13px;
}

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

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

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

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero-control {
    display: none;
  }

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

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

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

  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-sidebar {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 18px;
  }

  .info-panel {
    margin-top: 0;
  }

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

  .sitemap-movie-list {
    columns: 2;
  }
}

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

  .site-header__inner {
    width: min(100% - 22px, 1240px);
    min-height: 64px;
  }

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

  .hero {
    height: 660px;
    min-height: 640px;
  }

  .hero-slide__content {
    align-items: stretch;
    justify-content: flex-end;
    padding-bottom: 88px;
  }

  .hero-slide h1 {
    font-size: 42px;
  }

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

  .hero-actions,
  .detail-actions,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stats-strip a {
    padding: 16px;
  }

  .section-block {
    padding-top: 44px;
  }

  .movie-grid--cards,
  .movie-grid--ranking,
  .category-grid,
  .movie-filter-form,
  .footer-grid,
  .sitemap-layout {
    grid-template-columns: 1fr;
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

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

  .sitemap-card--wide {
    grid-column: auto;
  }

  .sitemap-movie-list {
    columns: 1;
  }

  .sitemap-card li {
    flex-direction: column;
  }
}
