:root {
  --site-bg: #fff8ed;
  --site-bg-soft: #fffbeb;
  --site-card: #ffffff;
  --site-card-warm: #fff7e6;
  --site-text: #3d2406;
  --site-muted: #8a5b18;
  --site-line: rgba(180, 83, 9, 0.18);
  --site-primary: #d97706;
  --site-primary-dark: #92400e;
  --site-primary-soft: #fef3c7;
  --site-accent: #f97316;
  --site-shadow: 0 22px 55px rgba(146, 64, 14, 0.14);
  --site-radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--site-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(251, 191, 36, 0.25), transparent 32rem),
    radial-gradient(circle at 85% 16%, rgba(249, 115, 22, 0.18), transparent 30rem),
    linear-gradient(180deg, #fff7ed 0%, #fffaf0 40%, #fff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 119, 6, 0.16);
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(254, 243, 199, 0.94), rgba(255, 237, 213, 0.96));
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(146, 64, 14, 0.08);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 900;
  font-size: 22px;
  background: linear-gradient(135deg, #f59e0b, #f97316 52%, #b45309);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.32);
}

.brand strong {
  display: block;
  color: var(--site-primary-dark);
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  padding: 9px 12px;
  color: #78350f;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  transform: translateY(-1px);
}

.header-search {
  position: relative;
  width: min(300px, 26vw);
}

.header-search input,
.search-panel input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(217, 119, 6, 0.24);
  border-radius: 999px;
  outline: none;
  color: var(--site-text);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.header-search input {
  height: 42px;
  padding: 0 76px 0 18px;
}

.header-search button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: #92400e;
  background: rgba(255, 255, 255, 0.72);
  font-size: 24px;
}

.main-wrap {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-carousel {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 28px auto 0;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  background: #3d2406;
  box-shadow: var(--site-shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 28px;
  padding: 58px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.hero-slide.cover-missing .hero-bg {
  display: none;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(251, 191, 36, 0.25), transparent 28rem),
    linear-gradient(90deg, rgba(69, 26, 3, 0.92), rgba(120, 53, 15, 0.70) 48%, rgba(67, 20, 7, 0.84));
}

.hero-copy,
.hero-side {
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.hero-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(253, 230, 138, 0.35);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(120, 53, 15, 0.52);
  font-weight: 800;
  font-size: 13px;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 22px 0 14px;
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.hero-copy .site-heading {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.hero-copy p {
  max-width: 700px;
  color: #ffedd5;
  font-size: 17px;
  line-height: 1.85;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 28px;
}

.hero-meta span,
.movie-meta span,
.tag-list span,
.breadcrumb a,
.breadcrumb span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-meta span {
  padding: 7px 12px;
  color: #fff7ed;
  background: rgba(255, 247, 237, 0.15);
  border: 1px solid rgba(255, 237, 213, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.34);
}

.btn-secondary {
  color: #7c2d12;
  background: #ffffff;
}

.btn-ghost {
  color: #92400e;
  border: 1px solid rgba(217, 119, 6, 0.25);
  background: #fffaf0;
}

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

.hero-side {
  align-self: center;
  display: grid;
  gap: 14px;
}

.hero-poster {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 237, 213, 0.18);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(253, 186, 116, 0.28), rgba(120, 53, 15, 0.72));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

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

.hero-poster.cover-missing img {
  display: none;
}

.hero-poster-title {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(69, 26, 3, 0.72);
  backdrop-filter: blur(12px);
}

.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-thumb {
  min-height: 84px;
  padding: 12px;
  border-radius: 18px;
  color: #fff7ed;
  background: rgba(255, 247, 237, 0.13);
  border: 1px solid rgba(255, 237, 213, 0.18);
  font-size: 13px;
  line-height: 1.4;
}

.hero-controls {
  position: absolute;
  left: 58px;
  right: 58px;
  bottom: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

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

.hero-dot {
  width: 36px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 237, 213, 0.42);
}

.hero-dot.active {
  background: #fbbf24;
}

.hero-arrows {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(69, 26, 3, 0.58);
  font-size: 20px;
}

.section {
  margin: 54px 0;
}

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

.section-kicker {
  color: var(--site-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 6px 0 0;
  color: var(--site-primary-dark);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.section-desc {
  max-width: 720px;
  margin-top: 10px;
  color: var(--site-muted);
  line-height: 1.8;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(217, 119, 6, 0.16);
  border-radius: var(--site-radius);
  background:
    radial-gradient(circle at 90% 12%, rgba(251, 191, 36, 0.26), transparent 8rem),
    linear-gradient(135deg, #ffffff, #fff7ed);
  box-shadow: 0 14px 34px rgba(146, 64, 14, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--site-shadow);
}

.category-card strong {
  display: block;
  color: var(--site-primary-dark);
  font-size: 22px;
}

.category-card p {
  margin: 10px 0 16px;
  color: var(--site-muted);
  line-height: 1.65;
}

.category-card span {
  color: var(--site-primary);
  font-weight: 900;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(146, 64, 14, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.36);
  box-shadow: var(--site-shadow);
}

.cover-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background:
    radial-gradient(circle at 25% 12%, rgba(253, 230, 138, 0.55), transparent 7rem),
    linear-gradient(135deg, #78350f, #f59e0b 48%, #ea580c);
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.movie-card:hover .cover-frame img {
  transform: scale(1.06);
}

.cover-frame.cover-missing img {
  display: none;
}

.cover-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: end;
  padding: 18px;
  color: #ffffff;
  font-weight: 950;
  line-height: 1.25;
  background: linear-gradient(180deg, rgba(69, 26, 3, 0.12), rgba(69, 26, 3, 0.74));
}

.cover-frame.cover-missing .cover-fallback,
.hero-poster.cover-missing .cover-fallback {
  display: flex;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #7c2d12;
  background: rgba(254, 243, 199, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.score-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  font-size: 12px;
  font-weight: 950;
}

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

.movie-card h3 {
  min-height: 44px;
  margin: 0 0 8px;
  color: var(--site-primary-dark);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card p {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.movie-meta span {
  padding: 4px 8px;
  color: #92400e;
  background: #fff7ed;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 72px 88px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(146, 64, 14, 0.07);
}

.rank-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  font-weight: 950;
  font-size: 20px;
}

.rank-cover {
  width: 88px;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
}

.rank-info h3 {
  margin: 0 0 8px;
  color: var(--site-primary-dark);
  font-size: 20px;
  font-weight: 950;
}

.rank-info p {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.7;
}

.rank-stats {
  min-width: 130px;
  color: var(--site-primary-dark);
  font-weight: 900;
  text-align: right;
}

.page-hero {
  margin: 28px 0 30px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 34px;
  color: #fff7ed;
  background:
    radial-gradient(circle at 75% 20%, rgba(253, 186, 116, 0.28), transparent 24rem),
    linear-gradient(135deg, #78350f, #b45309 50%, #431407);
  box-shadow: var(--site-shadow);
}

.page-hero h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 840px;
  margin: 0;
  color: #ffedd5;
  font-size: 17px;
  line-height: 1.82;
}

.filter-panel,
.search-panel {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 180px 180px 160px;
  gap: 12px;
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(146, 64, 14, 0.06);
}

.search-panel {
  grid-template-columns: minmax(180px, 1fr) 160px 160px;
}

.filter-panel input,
.filter-panel select,
.search-panel input,
.search-panel select {
  height: 46px;
  padding: 0 16px;
}

.filter-panel button,
.search-panel button {
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  font-weight: 900;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 18px;
}

.breadcrumb a,
.breadcrumb span {
  padding: 7px 12px;
  color: #92400e;
  background: rgba(255, 247, 237, 0.9);
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: #1c1207;
  box-shadow: var(--site-shadow);
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1c1207;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(67, 20, 7, 0.16), rgba(67, 20, 7, 0.72));
}

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

.play-core {
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
  font-weight: 950;
}

.play-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.34);
  font-size: 36px;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 4;
  min-height: 22px;
  color: #fde68a;
  font-size: 13px;
  font-weight: 800;
}

.detail-card,
.side-card {
  padding: 22px;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(146, 64, 14, 0.08);
}

.detail-card {
  margin-top: 22px;
}

.detail-card h1 {
  margin: 0 0 14px;
  color: var(--site-primary-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 14px;
  color: var(--site-primary-dark);
  font-size: 24px;
  font-weight: 950;
}

.detail-card p {
  margin: 0 0 16px;
  color: #6b3d0a;
  line-height: 1.86;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
}

.tag-list span {
  padding: 7px 11px;
  color: #92400e;
  background: var(--site-primary-soft);
}

.side-cover {
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 16px;
}

.side-cover .cover-frame {
  border-radius: 22px;
}

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

.related-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: #fff7ed;
}

.related-item .cover-frame {
  border-radius: 12px;
}

.related-item strong {
  display: block;
  color: var(--site-primary-dark);
  line-height: 1.35;
}

.related-item span {
  display: block;
  margin-top: 4px;
  color: var(--site-muted);
  font-size: 12px;
}

.pagination-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.pagination-links a {
  flex: 1;
  padding: 14px;
  border-radius: 18px;
  color: #92400e;
  background: #fff7ed;
  font-weight: 900;
}

.site-footer {
  margin-top: 70px;
  padding: 46px 0 28px;
  color: #ffedd5;
  background: linear-gradient(135deg, #78350f, #451a03);
}

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-inner h3,
.footer-inner strong {
  color: #ffffff;
  font-size: 18px;
}

.footer-inner p,
.footer-inner a {
  color: #fed7aa;
  line-height: 1.8;
  font-size: 14px;
}

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

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(254, 215, 170, 0.2);
  color: #fdba74;
  font-size: 13px;
}

.empty-result {
  padding: 28px;
  border-radius: 24px;
  color: var(--site-muted);
  background: #fff7ed;
  text-align: center;
}

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

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

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

@media (max-width: 860px) {
  .header-inner {
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

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

  .site-nav,
  .header-search {
    display: none;
    width: 100%;
  }

  body.nav-open .site-nav,
  body.nav-open .header-search {
    display: flex;
  }

  body.nav-open .site-nav {
    flex-direction: column;
    align-items: stretch;
  }

  body.nav-open .header-search {
    display: block;
  }

  .hero-carousel {
    min-height: 760px;
    border-radius: 26px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .hero-copy {
    min-height: 360px;
  }

  .hero-controls {
    left: 28px;
    right: 28px;
  }

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

  .filter-panel,
  .search-panel {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 54px 72px minmax(0, 1fr);
  }

  .rank-stats {
    grid-column: 3;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .main-wrap,
  .header-inner,
  .hero-carousel,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 22px, 1240px);
  }

  .brand strong {
    font-size: 18px;
  }

  .hero-carousel {
    min-height: 800px;
    margin-top: 14px;
  }

  .hero-slide {
    padding: 22px;
  }

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

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

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

  .rank-item {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .rank-cover {
    display: none;
  }

  .rank-stats {
    grid-column: 2;
  }

  .play-icon {
    width: 70px;
    height: 70px;
  }
}
