:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-850: #182235;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-100: #f1f5f9;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--gray-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  color: var(--white);
  box-shadow: 0 16px 48px rgba(2, 6, 23, 0.35);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.42);
  font-size: 18px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-subtitle {
  color: #cbd5e1;
  font-size: 12px;
}

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

.nav-link,
.mobile-link {
  border-radius: 12px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link {
  padding: 10px 18px;
  color: #e2e8f0;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--white);
  background: var(--orange-500);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

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

.mobile-link {
  display: block;
  padding: 12px 16px;
  color: #e2e8f0;
}

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800) 48%, #7c2d12);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.22;
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  left: 6%;
  top: 12%;
  background: var(--orange-500);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  right: 6%;
  bottom: 6%;
  background: #38bdf8;
}

.hero-slide {
  display: none;
  min-height: 680px;
  position: relative;
}

.hero-slide.is-active {
  display: block;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.24;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.72), rgba(124, 45, 18, 0.58));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
  padding: 92px 0;
}

.hero-text {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(251, 146, 60, 0.38);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-text h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero-text p,
.page-hero p {
  margin: 22px 0 0;
  max-width: 720px;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-tags,
.detail-tags {
  margin-top: 24px;
}

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

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
  padding: 0 26px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.32);
}

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

.ghost-button {
  padding: 0 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.text-button {
  min-height: auto;
  color: var(--orange-600);
  font-weight: 900;
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

.hero-poster::before {
  content: "";
  display: block;
  padding-top: 138%;
}

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(249, 115, 22, 0.92);
  box-shadow: 0 18px 44px rgba(249, 115, 22, 0.42);
  font-size: 28px;
}

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

.hero-dot {
  width: 38px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--orange-500);
}

.quick-stats {
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  color: var(--slate-900);
  font-size: 22px;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--gray-500);
}

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

.alt-bg {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(135deg, #fff7ed, var(--gray-50));
}

.dark-section {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left-heading {
  margin-left: 0;
  text-align: left;
}

.section-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-600);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 900;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--gray-500);
  font-size: 18px;
  line-height: 1.75;
}

.light-heading h2,
.light-heading p {
  color: var(--white);
}

.light-heading p {
  color: #cbd5e1;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.dark-section .movie-card {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 68px rgba(15, 23, 42, 0.2);
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

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

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

.year-pill {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange-500);
  font-size: 12px;
  font-weight: 800;
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%) scale(0.86);
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(249, 115, 22, 0.92);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.26);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.movie-card:hover .poster-wrap::after,
.movie-card:hover .play-hover {
  opacity: 1;
}

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

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

.movie-card-body h3 {
  min-height: 48px;
  margin: 0 0 10px;
  color: var(--slate-900);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dark-section .movie-card-body h3 {
  color: var(--white);
}

.movie-card-body h3 a:hover {
  color: var(--orange-600);
}

.movie-card-body p {
  min-height: 44px;
  margin: 0 0 14px;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dark-section .movie-card-body p {
  color: #cbd5e1;
}

.card-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-meta {
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--gray-500);
  font-size: 12px;
}

.tag-row span,
.card-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
}

.tag-row span:nth-child(2n) {
  color: #9a3412;
  background: #ffedd5;
}

.dark-section .tag-row span,
.dark-section .card-meta span {
  color: #fed7aa;
  background: rgba(255, 255, 255, 0.12);
}

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

.category-tile,
.category-card-large {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile {
  padding: 26px;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, var(--white), #fff7ed);
  border: 1px solid rgba(249, 115, 22, 0.12);
}

.category-tile:hover,
.category-card-large:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.16);
}

.category-tile strong {
  margin-bottom: 10px;
  color: var(--slate-900);
  font-size: 22px;
  font-weight: 900;
}

.category-tile span,
.category-card-large p {
  color: var(--gray-500);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 52px;
  align-items: start;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 44px 72px 1fr 38px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.13);
}

.rank-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  font-weight: 900;
}

.rank-row img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--gray-100);
}

.rank-info {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.rank-info strong {
  color: var(--slate-900);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-info small {
  color: var(--gray-500);
}

.rank-play {
  color: var(--orange-600);
  font-weight: 900;
}

.cta-section,
.page-hero {
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800), #7c2d12);
}

.cta-section {
  padding: 92px 16px;
}

.cta-section h2,
.cta-section p {
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
}

.cta-section p {
  max-width: 640px;
  margin-bottom: 28px;
  color: #cbd5e1;
  font-size: 18px;
}

.small-hero {
  padding: 90px 16px;
}

.small-hero p {
  margin-left: auto;
  margin-right: auto;
}

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

.filter-card {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.filter-card label {
  display: grid;
  gap: 8px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 800;
}

.filter-card input,
.filter-card select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
  background: var(--gray-50);
}

.filter-card input:focus,
.filter-card select:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.filter-card button {
  height: 48px;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  color: var(--white);
  background: var(--slate-800);
  font-weight: 900;
  cursor: pointer;
}

.empty-result {
  display: none;
  margin: 18px 0 0;
  padding: 16px;
  border-radius: 14px;
  color: var(--gray-500);
  background: var(--white);
}

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

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

.category-card-large {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  padding: 18px;
  overflow: hidden;
}

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

.category-preview img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  background: var(--gray-100);
}

.category-card-large h2 {
  margin: 8px 0 10px;
  font-size: 26px;
  font-weight: 900;
}

.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 52px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 -160px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.16), transparent 64%);
  pointer-events: none;
}

.detail-cover {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--gray-100);
  box-shadow: var(--shadow);
}

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

.detail-info {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--gray-500);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--orange-600);
}

.detail-info h1 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.detail-info p {
  margin: 20px 0 0;
  color: var(--gray-500);
  font-size: 19px;
  line-height: 1.8;
}

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

.info-grid li {
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.info-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--gray-500);
  font-size: 13px;
}

.info-grid strong {
  color: var(--slate-900);
}

.detail-info .primary-button {
  margin-top: 30px;
}

.player-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 84px;
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  box-shadow: var(--shadow);
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  aspect-ratio: 16 / 9;
}

.movie-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.28), rgba(2, 6, 23, 0.48));
  cursor: pointer;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.96);
  box-shadow: 0 18px 48px rgba(249, 115, 22, 0.36);
  font-size: 34px;
}

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

.story-section {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.story-section article {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.story-section h2 {
  margin: 0 0 14px;
  color: var(--slate-900);
  font-size: 28px;
  font-weight: 900;
}

.story-section p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.9;
}

.rank-page-split {
  grid-template-columns: 1.3fr 0.7fr;
}

.wide-rank-list {
  max-height: none;
}

.rank-side {
  position: sticky;
  top: 102px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.rank-side h2 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 900;
}

.rank-side p {
  color: var(--gray-500);
  line-height: 1.8;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, var(--slate-950), var(--slate-900));
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

.footer-shell h2,
.footer-shell h3 {
  color: var(--white);
  margin: 0 0 14px;
}

.footer-shell h2 {
  font-size: 28px;
  font-weight: 900;
}

.footer-shell h3 {
  font-size: 18px;
  font-weight: 900;
}

.footer-shell p,
.footer-shell span,
.footer-shell a {
  display: block;
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0 0 8px;
}

.footer-shell a:hover {
  color: var(--orange-400);
}

.footer-bottom {
  padding: 18px 16px;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
}

@media (max-width: 1120px) {
  .all-grid,
  .compact-grid,
  .latest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-content {
    grid-template-columns: 1fr 300px;
  }

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

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

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

  .hero-content,
  .detail-hero,
  .split-section,
  .rank-page-split,
  .footer-shell,
  .category-card-large {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 34px;
    padding: 64px 0 92px;
  }

  .hero-poster {
    width: min(320px, 78vw);
    margin: 0 auto;
  }

  .quick-stats,
  .category-grid,
  .category-list-large,
  .all-grid,
  .compact-grid,
  .latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rank-side {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand-subtitle {
    display: none;
  }

  .hero-carousel,
  .hero-slide,
  .hero-content {
    min-height: auto;
  }

  .hero-text h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .quick-stats,
  .category-grid,
  .category-list-large,
  .all-grid,
  .compact-grid,
  .latest-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 58px 0;
  }

  .player-section {
    padding: 18px;
    border-radius: 22px;
  }

  .rank-row {
    grid-template-columns: 36px 58px 1fr;
  }

  .rank-play {
    display: none;
  }
}
