:root {
  color-scheme: dark;
  --bg: #030712;
  --bg-soft: #0b1120;
  --panel: rgba(17, 24, 39, 0.72);
  --panel-solid: #111827;
  --panel-light: rgba(31, 41, 55, 0.72);
  --line: rgba(75, 85, 99, 0.38);
  --text: #f9fafb;
  --muted: #9ca3af;
  --muted-strong: #d1d5db;
  --brand: #f59e0b;
  --brand-dark: #d97706;
  --danger: #ef4444;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: radial-gradient(circle at 10% 0%, rgba(245, 158, 11, 0.12), transparent 28%), linear-gradient(180deg, #030712 0%, #111827 48%, #030712 100%);
  color: var(--text);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 24, 39, 0.94);
  border-bottom: 1px solid rgba(31, 41, 55, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.brand-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.16);
  color: var(--brand);
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.24);
}

.brand-text strong,
.footer-brand {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-text small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav,
.category-quick {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav {
  margin-left: auto;
}

.category-quick {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.nav-link,
.category-quick a,
.mobile-link {
  padding: 9px 13px;
  border-radius: 10px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
  transition: 0.24s ease;
}

.nav-link:hover,
.category-quick a:hover,
.mobile-link:hover,
.nav-link.active,
.mobile-link.active {
  background: rgba(245, 158, 11, 0.16);
  color: #fff;
}

.category-quick a {
  color: var(--muted);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(31, 41, 55, 0.95);
  color: #fff;
  font-size: 22px;
}

.mobile-nav {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 16px;
  border-top: 1px solid rgba(55, 65, 81, 0.7);
}

.mobile-nav.open {
  display: grid;
  gap: 6px;
}

.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #111827, #78350f);
}

.hero-slide img.is-missing,
.movie-poster img.is-missing,
.compact-card img.is-missing {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.18)), linear-gradient(0deg, #030712 0%, rgba(3, 7, 18, 0) 45%, rgba(3, 7, 18, 0.46) 100%);
}

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

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.9);
}

.hero h1 {
  max-width: 760px;
  margin: 16px 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.8;
}

.hero-meta,
.hero-actions,
.detail-title-row,
.filter-controls,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-meta span {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid rgba(245, 158, 11, 0.24);
  color: var(--muted-strong);
  font-size: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 13px;
  font-weight: 800;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.primary-button {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 36px rgba(245, 158, 11, 0.24);
}

.primary-button:hover,
.section-more:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.primary-button.small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.ghost-button {
  border: 1px solid rgba(245, 158, 11, 0.36);
  background: rgba(17, 24, 39, 0.48);
  color: #fff;
}

.ghost-button:hover {
  background: rgba(245, 158, 11, 0.16);
  transform: translateY(-2px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.24s ease, transform 0.24s ease;
  backdrop-filter: blur(8px);
}

.hero-control:hover {
  background: rgba(245, 158, 11, 0.88);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 24px;
  transform: translateY(-50%);
}

.hero-next {
  right: 24px;
  transform: translateY(-50%);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  transition: 0.24s ease;
  cursor: pointer;
}

.hero-dot.active {
  width: 36px;
  background: var(--brand);
}

.content-section,
.page-main,
.detail-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 0;
}

.no-top {
  padding-top: 26px;
}

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

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

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-more {
  min-height: 38px;
  background: rgba(245, 158, 11, 0.14);
  color: var(--brand);
  white-space: nowrap;
}

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

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

.ranking-grid {
  counter-reset: rank;
}

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

.movie-card-link {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel-solid);
  border: 1px solid rgba(31, 41, 55, 0.92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.72);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.32), transparent 34%), linear-gradient(145deg, #111827, #1f2937 56%, #78350f);
}

.movie-card-wide .movie-poster {
  aspect-ratio: 16 / 9;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0.82) 100%);
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.88);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: 0.28s ease;
  backdrop-filter: blur(10px);
}

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

.score-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.score-badge {
  top: 12px;
  right: 12px;
  color: #fde68a;
}

.rank-badge {
  top: 12px;
  left: 12px;
  background: rgba(245, 158, 11, 0.9);
}

.movie-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px;
  display: grid;
  gap: 7px;
}

.movie-type {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 7px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.movie-title {
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-line {
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  color: var(--muted);
  font-size: 12px;
}

.horizontal-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scroll-snap-type: x proximity;
}

.horizontal-scroll .movie-card {
  width: 210px;
  flex: 0 0 210px;
  scroll-snap-align: start;
}

.compact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.compact-list.mini {
  grid-template-columns: 1fr;
}

.compact-card a {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 13px;
  min-height: 84px;
  padding: 12px;
  border: 1px solid rgba(31, 41, 55, 0.88);
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.56);
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.compact-card a:hover {
  background: rgba(31, 41, 55, 0.72);
  border-color: rgba(245, 158, 11, 0.55);
  transform: translateY(-3px);
}

.compact-card img {
  width: 112px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  background: linear-gradient(135deg, #111827, #78350f);
}

.compact-card strong,
.compact-card em,
.compact-card small {
  display: block;
}

.compact-card strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.compact-card em {
  color: var(--muted-strong);
  font-style: normal;
  font-size: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-card small {
  margin-top: 6px;
  color: var(--muted);
}

.mini-rank {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  align-self: center;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

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

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

.category-tile {
  min-height: 140px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--radius);
  background: radial-gradient(circle at 18% 12%, rgba(245, 158, 11, 0.2), transparent 36%), rgba(17, 24, 39, 0.72);
  transition: 0.28s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.56);
  background-color: rgba(31, 41, 55, 0.86);
}

.category-tile span {
  font-size: 21px;
  font-weight: 900;
}

.category-tile em {
  margin-top: 9px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
}

.page-main {
  padding-bottom: 70px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 58px;
  border-radius: 28px;
  background: radial-gradient(circle at 88% 20%, rgba(245, 158, 11, 0.2), transparent 30%), linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(31, 41, 55, 0.8));
  border: 1px solid rgba(75, 85, 99, 0.42);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.04em;
}

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

.category-overview-grid {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(55, 65, 81, 0.72);
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.62);
}

.category-overview-head h2 {
  margin: 10px 0 10px;
  font-size: 28px;
}

.category-overview-head p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.filter-panel {
  margin: 28px 0 8px;
  padding: 20px;
  border: 1px solid rgba(55, 65, 81, 0.72);
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.72);
}

.filter-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.filter-title strong {
  font-size: 19px;
}

.filter-title span {
  color: var(--muted);
  font-size: 13px;
}

.filter-controls label {
  flex: 1;
  min-width: 190px;
  display: grid;
  gap: 8px;
}

.filter-controls label span {
  color: var(--muted);
  font-size: 13px;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(75, 85, 99, 0.75);
  border-radius: 13px;
  background: rgba(3, 7, 18, 0.55);
  color: #fff;
  padding: 0 14px;
  outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
  border-color: rgba(245, 158, 11, 0.8);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.movie-card.hidden-by-filter,
.compact-card.hidden-by-filter {
  display: none;
}

.detail-main {
  padding-bottom: 70px;
}

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

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

.breadcrumb strong {
  color: #fff;
}

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

.player-card,
.detail-info-block,
.side-card,
.text-panel {
  border: 1px solid rgba(55, 65, 81, 0.7);
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.68);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  display: block;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  align-content: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.62));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.player-button {
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.92);
  color: #fff;
  font-size: 32px;
  padding-left: 6px;
  cursor: pointer;
  box-shadow: 0 16px 45px rgba(245, 158, 11, 0.3);
}

.player-button:hover {
  background: var(--brand-dark);
  transform: scale(1.04);
}

.player-status {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.detail-info-block {
  margin-top: 22px;
  padding: 28px;
}

.detail-title-row {
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
}

.detail-title-row h1 {
  margin: 10px 0 10px;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.detail-title-row p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.8;
}

.tag-row {
  margin: 24px 0;
}

.tag-row span {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(31, 41, 55, 0.96);
  color: var(--muted-strong);
  font-size: 14px;
}

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

.stat-grid div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(31, 41, 55, 0.68);
}

.stat-grid span,
.side-card dt {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
}

.stat-grid strong {
  color: #fff;
  font-size: 20px;
}

.text-panel {
  padding: 24px;
  margin-top: 20px;
}

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

.text-panel p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.9;
  font-size: 16px;
}

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

.sticky-side {
  position: sticky;
  top: 96px;
}

.side-card {
  padding: 22px;
}

.side-card dl {
  margin: 0;
}

.side-card dd {
  margin: 0 0 16px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}

.side-card dd a {
  color: var(--brand);
}

.related-section {
  padding-left: 0;
  padding-right: 0;
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid rgba(31, 41, 55, 0.96);
  background: rgba(3, 7, 18, 0.82);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
}

.footer-brand {
  color: #fff;
  font-size: 22px;
}

.site-footer p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.7;
}

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

.footer-links a {
  padding: 8px 11px;
  border-radius: 10px;
  color: var(--muted-strong);
  background: rgba(17, 24, 39, 0.86);
}

.footer-links a:hover {
  color: var(--brand);
}

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

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

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

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

  .sticky-side {
    position: static;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .category-quick {
    display: none;
  }

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

  .hero {
    height: 560px;
  }

  .hero-content {
    padding: 0 22px;
  }

  .hero-control {
    display: none;
  }

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

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

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

  .page-hero {
    padding: 34px 24px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .brand-text small {
    display: none;
  }

  .mobile-nav {
    padding: 0 16px 14px;
  }

  .hero {
    height: 520px;
  }

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

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

  .content-section,
  .page-main,
  .detail-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-heading,
  .filter-title,
  .detail-title-row {
    display: grid;
    align-items: start;
  }

  .movie-grid,
  .compact-grid,
  .wide-grid,
  .category-tile-grid,
  .compact-list {
    grid-template-columns: 1fr;
  }

  .horizontal-scroll .movie-card {
    width: 190px;
    flex-basis: 190px;
  }

  .compact-card a {
    grid-template-columns: 96px 1fr;
  }

  .compact-card img {
    width: 96px;
    height: 64px;
  }

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

  .detail-info-block,
  .text-panel,
  .side-card {
    padding: 20px;
  }
}
