:root {
  --ocean-50: #f0f9ff;
  --ocean-100: #e0f2fe;
  --ocean-500: #0ea5e9;
  --ocean-600: #0284c7;
  --ocean-700: #0369a1;
  --island-50: #f0fdf4;
  --island-500: #22c55e;
  --island-600: #16a34a;
  --sand-50: #fefce8;
  --sand-500: #eab308;
  --sand-700: #a16207;
  --rose-500: #f43f5e;
  --red-600: #dc2626;
  --night-700: #312e81;
  --slate-900: #0f172a;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --shadow-soft: 0 2px 18px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 18px 45px rgba(15, 23, 42, 0.16);
  --radius-xl: 24px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--gray-900);
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #eef8ff 100%);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ocean-600), var(--island-600));
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.25);
}

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

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

.nav-link,
.mobile-link {
  color: var(--gray-600);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 15px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--ocean-700);
  background: var(--ocean-50);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 14px;
  color: var(--gray-900);
  background: var(--gray-100);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gray-200);
}

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

.mobile-link {
  padding: 12px 16px;
}

.feature-hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  color: #ffffff;
  background: #020617;
}

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

.feature-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.02);
}

.feature-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.feature-slide img,
.detail-backdrop {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-shade,
.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.68) 42%, rgba(15, 23, 42, 0.12) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.72) 0%, transparent 48%);
}

.feature-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 86px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--ocean-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-content .section-kicker {
  color: #7dd3fc;
}

.feature-content h1,
.sub-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.feature-content h2 {
  margin: 18px 0 0;
  max-width: 780px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.12;
}

.feature-content p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

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

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

.feature-meta span {
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.feature-actions,
.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.ghost-button,
.hero-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ocean-600), var(--island-600));
  box-shadow: 0 18px 38px rgba(2, 132, 199, 0.32);
}

.ghost-button,
.hero-links a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.primary-button:hover,
.ghost-button:hover,
.hero-links a:hover {
  transform: translateY(-2px);
}

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

.feature-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.feature-dot.is-active {
  background: #ffffff;
}

.quick-categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: -42px;
  position: relative;
  z-index: 8;
}

.category-chip {
  min-height: 110px;
  padding: 18px;
  border-radius: var(--radius-lg);
  color: var(--gray-900);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-chip:hover,
.movie-card:hover,
.category-overview-card:hover,
.top-rank-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-chip span {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.category-chip em {
  display: block;
  margin-top: 6px;
  color: var(--gray-500);
  font-size: 13px;
  font-style: normal;
}

.ocean { background: linear-gradient(135deg, var(--ocean-50), #ffffff); }
.island { background: linear-gradient(135deg, var(--island-50), #ffffff); }
.sand { background: linear-gradient(135deg, var(--sand-50), #ffffff); }
.night { background: linear-gradient(135deg, #eef2ff, #ffffff); }
.ember { background: linear-gradient(135deg, #fff7ed, #ffffff); }
.rose { background: linear-gradient(135deg, #fff1f2, #ffffff); }
.violet { background: linear-gradient(135deg, #f5f3ff, #ffffff); }
.cyan { background: linear-gradient(135deg, #ecfeff, #ffffff); }
.red { background: linear-gradient(135deg, #fef2f2, #ffffff); }
.slate { background: linear-gradient(135deg, #f8fafc, #ffffff); }
.olive { background: linear-gradient(135deg, #f7fee7, #ffffff); }
.indigo { background: linear-gradient(135deg, #eef2ff, #ffffff); }

.section-block,
.layout-two-columns {
  padding: 76px 0 0;
}

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

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading p:last-child {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--gray-600);
}

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

.filter-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.search-field {
  display: grid;
  gap: 8px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 800;
}

.search-field input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  outline: none;
  background: #ffffff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-field input:focus {
  border-color: rgba(14, 165, 233, 0.65);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  color: var(--gray-600);
  background: var(--gray-100);
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ocean-600), var(--island-600));
}

.empty-state {
  display: none;
  padding: 20px;
  margin: 0 0 20px;
  color: var(--gray-600);
  text-align: center;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.empty-state.is-visible {
  display: block;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card.is-hidden,
.archive-link.is-hidden {
  display: none;
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gray-100);
}

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

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

.poster-badge,
.top-rank-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  color: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.card-body {
  padding: 18px;
}

.card-meta {
  margin: 0 0 6px;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 700;
}

.card-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.card-title a:hover {
  color: var(--ocean-700);
}

.card-desc {
  min-height: 44px;
  margin: 10px 0 0;
  color: var(--gray-600);
  font-size: 14px;
}

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span,
.detail-tags span {
  padding: 6px 9px;
  color: var(--ocean-700);
  background: var(--ocean-50);
}

.compact-card .card-body {
  padding: 14px;
}

.compact-card .card-title {
  font-size: 16px;
}

.compact-card .card-desc {
  min-height: 42px;
  font-size: 13px;
}

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: var(--shadow-hover);
}

.rank-panel .section-kicker,
.rank-panel h2 {
  color: #ffffff;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 36px 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(3px);
}

.rank-num {
  color: #7dd3fc;
  font-weight: 900;
}

.rank-item img {
  width: 54px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.rank-copy em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-style: normal;
}

.sub-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #0369a1 56%, #16a34a);
}

.sub-hero-inner {
  padding: 92px 0 78px;
}

.sub-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.sub-hero .section-kicker {
  color: #bae6fd;
}

.category-overview-grid,
.top-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.category-overview-card,
.top-rank-card,
.text-panel {
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-card a {
  display: block;
  min-height: 230px;
  padding: 24px;
}

.category-overview-card h2,
.archive-section h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.category-overview-card p:not(.section-kicker) {
  color: var(--gray-600);
}

.mini-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-title-row span {
  padding: 7px 10px;
  color: var(--gray-700);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.top-rank-card {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}

.top-rank-card a {
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 210px;
  color: #ffffff;
}

.top-rank-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-rank-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.top-rank-card h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

.top-rank-card p {
  color: rgba(255, 255, 255, 0.76);
}

.detail-hero {
  min-height: 620px;
  background: #020617;
}

.detail-backdrop,
.detail-overlay {
  position: absolute;
  inset: 0;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 36px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.detail-main-grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
}

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

.detail-copy .section-kicker {
  color: #7dd3fc;
}

.detail-one-line {
  max-width: 860px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.detail-meta-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.detail-meta-list li {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.detail-meta-list span,
.detail-meta-list strong {
  display: block;
}

.detail-meta-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.detail-meta-list strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 15px;
}

.player-section {
  margin-top: 0;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #020617;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover,
.player-cover img {
  width: 100%;
  height: 100%;
}

.movie-video {
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.32);
  cursor: pointer;
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.52;
}

.play-orb {
  position: relative;
  z-index: 2;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  color: var(--ocean-700);
  background: #ffffff;
  font-size: 30px;
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.34);
  transition: transform 0.2s ease;
}

.player-cover:hover .play-orb {
  transform: scale(1.08);
}

.player-cover strong {
  position: relative;
  z-index: 2;
  font-size: 20px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 28px;
}

.text-panel {
  padding: 26px;
}

.text-panel h2 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.text-panel p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
}

.archive-wrap {
  display: grid;
  gap: 22px;
}

.archive-section {
  padding: 22px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

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

.archive-section-head a {
  color: var(--ocean-700);
  font-weight: 800;
}

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

.archive-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 13px;
  background: var(--gray-50);
  transition: color 0.2s ease, background 0.2s ease;
}

.archive-link:hover {
  color: var(--ocean-700);
  background: var(--ocean-50);
}

.archive-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive-link em {
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.site-footer {
  margin-top: 82px;
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--slate-900);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  color: #ffffff;
  font-size: 20px;
}

.footer-grid p {
  max-width: 620px;
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a:hover {
  color: #ffffff;
}

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

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

  .rank-panel {
    position: static;
  }

  .large-grid,
  .compact-grid,
  .category-overview-grid,
  .top-rank-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .feature-hero,
  .feature-content {
    min-height: 640px;
  }

  .feature-content {
    padding-top: 86px;
  }

  .quick-categories,
  .large-grid,
  .compact-grid,
  .category-overview-grid,
  .top-rank-grid,
  .detail-content-grid,
  .detail-meta-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-main-grid {
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: start;
  }

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

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

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

  .feature-hero,
  .feature-content {
    min-height: 620px;
  }

  .feature-content h1 {
    font-size: 38px;
  }

  .feature-content p,
  .sub-hero p,
  .detail-one-line {
    font-size: 16px;
  }

  .quick-categories,
  .large-grid,
  .compact-grid,
  .category-overview-grid,
  .top-rank-grid,
  .detail-content-grid,
  .detail-meta-list,
  .archive-links {
    grid-template-columns: 1fr;
  }

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

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

  .top-rank-card a {
    grid-template-columns: 120px 1fr;
  }

  .footer-grid {
    flex-direction: column;
  }
}
