:root {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-dark: #0f172a;
  --color-dark-soft: #1e293b;
  --color-text: #334155;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --color-amber: #f59e0b;
  --color-orange: #f97316;
  --shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 48%, #111827 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.35);
}

.logo-text {
  font-size: 20px;
  background: linear-gradient(90deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 700;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fbbf24;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fbbf24, #fb923c);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding-block: 14px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}

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

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.1);
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(245, 158, 11, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.78) 48%, rgba(15, 23, 42, 0.42) 100%);
  backdrop-filter: blur(4px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 72px;
  padding-block: 82px;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.eyebrow {
  margin: 0 0 10px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tag-row span {
  color: #92400e;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

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

.primary-button,
.ghost-button,
.text-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 18px 32px rgba(245, 158, 11, 0.35);
}

.ghost-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.10);
}

.text-button,
.section-more {
  color: #b45309;
  background: #fff7ed;
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transform: translateX(-50%);
}

.hero-control {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  font-size: 28px;
}

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

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

.hero-dots button.is-active {
  background: linear-gradient(90deg, #fbbf24, #fb923c);
}

.quick-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 26px;
  margin-top: -54px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 5;
}

.quick-search-panel h2,
.section-heading h2,
.rank-panel h2,
.detail-section h2,
.detail-side-card h2,
.category-side-rank h2 {
  margin: 0;
  color: var(--color-dark);
  line-height: 1.2;
}

.quick-search-panel h2 {
  font-size: clamp(24px, 4vw, 36px);
}

.search-strip,
.filter-bar,
.advanced-filter {
  display: flex;
  gap: 12px;
}

.search-strip input,
.filter-bar input,
.advanced-filter input,
.advanced-filter select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0 14px;
  background: #fff;
  outline: none;
}

.search-strip button,
.advanced-filter button {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  color: #fff;
  background: var(--color-dark);
  font-weight: 900;
  cursor: pointer;
}

.section-block {
  padding-block: 58px;
}

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

.section-heading h2 {
  font-size: clamp(26px, 3vw, 38px);
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.15);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #334155);
}

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

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

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.72) 100%);
}

.movie-score,
.movie-year {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.movie-score {
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.movie-year {
  left: 10px;
  bottom: 10px;
  padding: 4px 9px;
  background: rgba(15, 23, 42, 0.75);
}

.movie-card-body {
  padding: 15px;
}

.movie-card h3 {
  margin: 0 0 8px;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 12px;
}

.movie-meta span,
.movie-meta a {
  padding: 2px 7px;
  border-radius: 999px;
  background: #f1f5f9;
}

.movie-desc {
  margin: 0 0 12px;
  color: #475569;
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card .tag-row span {
  min-height: 24px;
  padding: 2px 8px;
  font-size: 11px;
}

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

.category-tile {
  min-height: 156px;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}

.category-tile::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -35px;
  bottom: -35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.category-tile span {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
}

.category-tile em {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 14px;
}

.accent-amber { background: linear-gradient(135deg, #92400e, #f59e0b); }
.accent-rose { background: linear-gradient(135deg, #881337, #fb7185); }
.accent-purple { background: linear-gradient(135deg, #4c1d95, #a855f7); }
.accent-sky { background: linear-gradient(135deg, #0c4a6e, #38bdf8); }
.accent-orange { background: linear-gradient(135deg, #7c2d12, #fb923c); }
.accent-red { background: linear-gradient(135deg, #7f1d1d, #ef4444); }
.accent-cyan { background: linear-gradient(135deg, #164e63, #06b6d4); }
.accent-slate { background: linear-gradient(135deg, #020617, #475569); }
.accent-green { background: linear-gradient(135deg, #14532d, #22c55e); }
.accent-indigo { background: linear-gradient(135deg, #312e81, #6366f1); }

.latest-panel {
  background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 100%);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
}

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

.wide-card,
.compact-card {
  display: grid;
  gap: 14px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.wide-card {
  grid-template-columns: 140px minmax(0, 1fr);
  min-height: 140px;
}

.wide-card img {
  width: 140px;
  height: 100%;
  object-fit: cover;
}

.wide-card span {
  padding: 18px 18px 18px 0;
}

.wide-card strong,
.compact-card strong {
  display: block;
  color: var(--color-dark);
  line-height: 1.35;
}

.wide-card em,
.compact-card em {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-style: normal;
}

.rank-panel,
.category-side-rank,
.detail-side-card,
.detail-main-card {
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.rank-panel {
  padding: 24px;
  align-self: start;
  position: sticky;
  top: 92px;
}

.rank-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.rank-panel-head a {
  color: #b45309;
  font-weight: 900;
}

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

.compact-card {
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  padding: 10px;
}

.compact-poster {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 2 / 3;
  background: #e2e8f0;
}

.compact-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-badge {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #f59e0b;
  font-weight: 900;
  font-size: 12px;
}

.page-hero {
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.compact-hero {
  padding: 82px 0;
}

.compact-hero h1,
.category-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
}

.compact-hero p,
.category-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.category-hero {
  padding: 76px 0;
}

.category-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: start;
}

.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-mini-stats span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.category-side-rank {
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.category-side-rank h2 {
  margin-bottom: 14px;
}

.filter-bar {
  flex-direction: column;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

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

.year-filter button {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 6px 12px;
  background: #f8fafc;
  cursor: pointer;
}

.year-filter button.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.category-cover-stack img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

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

.category-overview-body p {
  color: rgba(255, 255, 255, 0.80);
}

.category-stats {
  display: flex;
  gap: 10px;
  margin: 18px 0;
}

.category-stats span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.category-overview-card .text-button {
  color: #0f172a;
  background: #fff;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.pagination a {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-card);
  font-weight: 900;
}

.pagination a.is-active {
  color: #fff;
  background: #0f172a;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.rank-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.rank-table th,
.rank-table td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.rank-table th {
  color: #0f172a;
  background: #f8fafc;
  font-weight: 900;
}

.table-rank {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: #0f172a;
  font-weight: 900;
}

.advanced-filter {
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.advanced-filter input {
  flex: 2 1 360px;
}

.advanced-filter select {
  flex: 1 1 180px;
}

.result-count {
  margin: 0 0 20px;
  color: var(--color-muted);
  font-weight: 800;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0f172a;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(8px) saturate(1.15);
  transform: scale(1.06);
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.75));
}

.detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding-block: 70px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

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

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.08;
}

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

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

.detail-meta span,
.detail-meta strong {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.detail-meta strong {
  color: #fbbf24;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: var(--shadow-soft);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 0;
  color: #fff;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.32), rgba(15, 23, 42, 0.72));
  cursor: pointer;
}

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

.play-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.35);
  font-size: 26px;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 14px;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(15, 23, 42, 0.75);
  font-size: 13px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  padding-bottom: 12px;
}

.detail-main-card,
.detail-side-card {
  padding: 28px;
}

.detail-side-card {
  align-self: start;
  position: sticky;
  top: 92px;
}

.detail-section + .detail-section {
  margin-top: 28px;
}

.detail-section h2,
.detail-side-card h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.detail-section p {
  margin: 0;
  color: #475569;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.info-list div {
  padding: 14px;
  border-radius: 14px;
  background: #f8fafc;
}

.info-list dt {
  color: #64748b;
  font-size: 13px;
}

.info-list dd {
  margin: 4px 0 0;
  color: #0f172a;
  font-weight: 800;
}

.prev-next-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.prev-next-links a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #92400e;
  background: #fff7ed;
  font-weight: 800;
}

.site-footer {
  margin-top: 50px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
  gap: 34px;
  padding-block: 48px;
}

.footer-brand p,
.site-footer p,
.site-footer a {
  color: #cbd5e1;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
}

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

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

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.is-filter-hidden,
tr.is-filter-hidden {
  display: none;
}

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

  .mobile-menu-button {
    display: block;
  }

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

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

  .split-section,
  .category-hero-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .rank-panel,
  .category-side-rank,
  .detail-side-card {
    position: static;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero {
    min-height: 720px;
  }

  .hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-poster,
  .detail-poster {
    width: min(250px, 78vw);
    margin-inline: auto;
  }

  .quick-search-panel {
    grid-template-columns: 1fr;
    margin-top: -32px;
  }

  .search-strip,
  .advanced-filter {
    flex-direction: column;
  }

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

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

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .wide-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

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

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

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

  .player-status {
    display: none;
  }
}
