:root {
  color-scheme: light;
  --amber-950: #2f1704;
  --amber-900: #4b2606;
  --amber-800: #7c3f08;
  --amber-700: #a35a12;
  --amber-600: #c87917;
  --amber-500: #e59b24;
  --amber-400: #f2bd3d;
  --amber-300: #f9d66a;
  --amber-200: #fde9a3;
  --amber-100: #fff4cf;
  --slate-950: #05070d;
  --slate-900: #111827;
  --slate-800: #1f2937;
  --slate-700: #374151;
  --slate-600: #4b5563;
  --slate-500: #6b7280;
  --slate-200: #e5e7eb;
  --slate-100: #f3f4f6;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(78, 42, 8, 0.18);
  --shadow-strong: 0 30px 80px rgba(16, 12, 8, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-900);
  background: linear-gradient(135deg, #f8fafc 0%, #fff7df 42%, #f2f4f8 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(62, 31, 6, 0.96), rgba(151, 92, 12, 0.96), rgba(72, 36, 5, 0.96));
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(60, 32, 5, 0.25);
}

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

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--amber-950);
  background: linear-gradient(135deg, var(--amber-200), var(--amber-500));
  box-shadow: 0 0 24px rgba(249, 214, 106, 0.55);
}

.brand-name {
  font-size: 22px;
  background: linear-gradient(90deg, #fff7ca, #ffd36a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  color: var(--amber-100);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--amber-950);
  background: var(--amber-200);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--amber-100);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 720px;
  background: radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.55), transparent 30%), linear-gradient(145deg, var(--slate-950), var(--amber-950));
}

.hero-slider {
  position: relative;
  min-height: 640px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.46fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 120px;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  opacity: 0.18;
  filter: blur(6px) saturate(1.25);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.95), rgba(62, 31, 6, 0.78), rgba(5, 7, 13, 0.48));
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 2;
}

.hero-eyebrow,
.section-eyebrow {
  margin: 0 0 12px;
  color: var(--amber-500);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2,
.page-hero h1,
.detail-headline h1 {
  margin: 0;
  line-height: 1.08;
  font-weight: 900;
}

.hero-content h1 {
  max-width: 820px;
  font-size: clamp(40px, 6vw, 72px);
  background: linear-gradient(90deg, #fff7c2, #f4b83d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content h2 {
  margin-top: 18px;
  font-size: clamp(28px, 4vw, 46px);
  color: #fff6d3;
}

.hero-content p,
.page-hero p,
.detail-headline p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #fce9b1;
  font-size: 18px;
  line-height: 1.85;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
}

.hero-tags span {
  color: #fff1b9;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 13px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: var(--amber-950);
  background: linear-gradient(135deg, var(--amber-200), var(--amber-500));
  padding: 0 24px;
  box-shadow: 0 16px 38px rgba(229, 155, 36, 0.36);
}

.ghost-btn {
  color: #fff3bc;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 22px;
}

.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover {
  transform: translateY(-2px);
}

.hero-poster {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-poster img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff5d1;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero-tools {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr auto;
  gap: 20px;
  align-items: center;
}

.hero-search {
  display: flex;
  min-height: 52px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  padding: 0 16px;
}

.hero-search input::placeholder {
  color: #f6df9c;
}

.hero-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--amber-950);
  background: var(--amber-300);
  font-weight: 900;
}

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

.hero-categories a {
  color: #fff2bd;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-switches {
  display: flex;
  gap: 10px;
}

.hero-switches button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--amber-950);
  background: var(--amber-200);
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

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

.amber-section {
  width: 100%;
  padding: 76px max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(90deg, rgba(252, 211, 77, 0.24), rgba(255, 247, 209, 0.72), rgba(252, 211, 77, 0.24));
}

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

.section-heading h2,
.filter-panel h2,
.article-card h2,
.side-card h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 900;
}

.section-heading p:not(.section-eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.section-link {
  flex-shrink: 0;
  color: var(--amber-950);
  background: var(--amber-200);
  padding: 0 18px;
}

.inline-search {
  grid-column: 1 / -1;
  min-height: 52px;
  border: 1px solid rgba(124, 63, 8, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  outline: 0;
  padding: 0 18px;
  box-shadow: var(--shadow-soft);
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(124, 63, 8, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(78, 42, 8, 0.24);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-900), var(--slate-900));
}

.poster-link img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.card-overlay span {
  border-radius: 999px;
  background: var(--amber-500);
  padding: 8px 16px;
  font-weight: 900;
}

.movie-card:hover .card-overlay {
  opacity: 1;
}

.card-body {
  padding: 16px;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--amber-700);
  font-size: 12px;
  font-weight: 800;
}

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

.card-body h3 a:hover,
.rank-info h3 a:hover,
.category-samples a:hover {
  color: var(--amber-700);
}

.card-desc {
  min-height: 44px;
  margin: 10px 0 0;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  color: var(--amber-800);
  background: var(--amber-100);
  padding: 5px 9px;
  font-size: 12px;
}

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

.category-card,
.category-detail-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 63, 8, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover,
.category-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(78, 42, 8, 0.22);
}

.category-card span,
.category-detail-title {
  color: var(--amber-900);
  font-size: 22px;
  font-weight: 900;
}

.category-card p,
.category-detail-card p {
  margin: 12px 0 0;
  color: var(--slate-600);
  line-height: 1.65;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.category-samples a {
  color: var(--slate-800);
  font-weight: 700;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

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

.rank-row {
  display: grid;
  grid-template-columns: auto 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(124, 63, 8, 0.08);
  box-shadow: 0 12px 30px rgba(78, 42, 8, 0.12);
}

.compact-rank .rank-row {
  grid-template-columns: auto 74px minmax(0, 1fr);
}

.rank-index {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--amber-950);
  background: var(--amber-300);
  font-weight: 900;
}

.rank-cover {
  border-radius: 12px;
  overflow: hidden;
  background: var(--amber-900);
}

.rank-cover img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.rank-info p,
.rank-info span {
  margin: 0;
  color: var(--slate-500);
  font-size: 13px;
}

.rank-info h3 {
  margin: 5px 0;
  font-size: 18px;
  line-height: 1.35;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 12% 10%, rgba(242, 189, 61, 0.42), transparent 28%), linear-gradient(135deg, var(--slate-950), var(--amber-900));
}

.page-hero {
  padding: 82px max(16px, calc((100% - 1180px) / 2));
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(124, 63, 8, 0.08);
}

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

.filter-controls label {
  display: grid;
  gap: 7px;
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 800;
}

.filter-controls input,
.filter-controls select {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(124, 63, 8, 0.14);
  border-radius: 12px;
  outline: 0;
  background: var(--white);
  color: var(--slate-900);
  padding: 0 12px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 72px max(16px, calc((100% - 1180px) / 2));
}

.detail-poster {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: var(--amber-900);
}

.detail-poster img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-headline h1 {
  font-size: clamp(34px, 5vw, 62px);
  color: #fff2bd;
}

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

.detail-main,
.detail-side,
.side-related {
  display: grid;
  gap: 22px;
}

.player-card,
.article-card,
.side-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(124, 63, 8, 0.08);
}

.player-card {
  overflow: hidden;
  background: var(--slate-950);
}

.player-wrap {
  position: relative;
  background: #000000;
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-wrap.is-playing .player-layer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--amber-950);
  background: linear-gradient(135deg, var(--amber-200), var(--amber-500));
  font-size: 34px;
  box-shadow: 0 0 35px rgba(242, 189, 61, 0.48);
}

.player-label {
  font-size: 18px;
  font-weight: 900;
}

.article-card,
.side-card {
  padding: 24px;
}

.article-card p {
  margin: 14px 0 0;
  color: var(--slate-700);
  line-height: 1.9;
  font-size: 17px;
}

.side-card h2 {
  font-size: 24px;
}

.side-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

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

.side-card dt {
  color: var(--amber-700);
  font-weight: 900;
}

.side-card dd {
  margin: 0;
  color: var(--slate-700);
}

.side-related .rank-row {
  grid-template-columns: 76px minmax(0, 1fr);
}

.side-related .rank-row .rank-index {
  display: none;
}

.side-related .rank-cover {
  grid-column: 1;
}

.detail-neighbor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-neighbor a {
  border-radius: 14px;
  background: var(--amber-100);
  color: var(--amber-900);
  padding: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.site-footer {
  color: var(--amber-100);
  background: linear-gradient(180deg, var(--slate-950), var(--amber-950));
  padding: 52px 0 20px;
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #f0d98d;
  line-height: 1.75;
}

.footer-links h2 {
  margin: 0 0 16px;
  color: var(--amber-300);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-grid a {
  color: #f5e4ad;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 9px 13px;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #d8bd72;
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

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

  .filter-panel,
  .detail-layout,
  .two-column-section {
    grid-template-columns: 1fr;
  }

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

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

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 840px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding-top: 48px;
    gap: 28px;
  }

  .hero-poster {
    max-width: 260px;
  }

  .hero-tools {
    grid-template-columns: 1fr;
    bottom: 20px;
  }

  .hero-switches {
    justify-content: flex-start;
  }

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

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

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

  .detail-poster {
    max-width: 260px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }
}

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

  .hero {
    min-height: 900px;
  }

  .hero-content p,
  .page-hero p,
  .detail-headline p {
    font-size: 16px;
  }

  .content-section,
  .amber-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-heading,
  .hero-actions,
  .detail-neighbor {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .movie-grid,
  .mini-grid,
  .category-grid,
  .category-detail-grid,
  .filter-controls,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .rank-row,
  .compact-rank .rank-row {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .rank-index {
    grid-column: 1 / -1;
  }
}
