:root {
  --color-primary: #4a7c54;
  --color-primary-dark: #3d6744;
  --color-primary-soft: #f4f7f5;
  --color-accent: #e88f1a;
  --color-accent-soft: #fef7ed;
  --color-ink: #111827;
  --color-muted: #6b7280;
  --color-line: #e5e7eb;
  --color-panel: #ffffff;
  --color-deep: #111827;
  --shadow-card: 0 10px 30px rgba(17, 24, 39, 0.08);
  --shadow-hover: 0 22px 48px rgba(17, 24, 39, 0.16);
  --radius-card: 18px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: #fafaf9;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.72);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 12px 24px rgba(74, 124, 84, 0.24);
}

.brand-text {
  font-size: 22px;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--color-primary-soft);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-primary-dark);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 16px;
  border-top: 1px solid var(--color-line);
  background: #ffffff;
}

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

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: #4b5563;
  font-weight: 650;
}

.mobile-nav-link.is-active,
.mobile-nav-link:hover {
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
}

.hero {
  position: relative;
  min-height: 66vh;
  background: var(--color-deep);
  overflow: hidden;
}

.hero-stage {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at 20% 35%, rgba(74, 124, 84, 0.45), transparent 32%),
    radial-gradient(circle at 75% 30%, rgba(232, 143, 26, 0.22), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 66vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 76px;
  color: #ffffff;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #e5e7eb;
  font-size: clamp(16px, 2.2vw, 21px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  color: #d1d5db;
  font-size: 14px;
}

.hero-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 16px 26px rgba(74, 124, 84, 0.24);
}

.btn.primary:hover {
  background: var(--color-primary-dark);
}

.btn.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.btn.full {
  width: 100%;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-control.prev {
  left: 22px;
}

.hero-control.next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.search-band {
  background: #ffffff;
  border-bottom: 1px solid var(--color-line);
}

.search-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.search-band strong {
  display: block;
  font-size: 18px;
}

.search-band span {
  color: var(--color-muted);
  font-size: 14px;
}

.home-search {
  display: flex;
  width: min(480px, 100%);
  padding: 6px;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: #f9fafb;
}

.home-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px 12px;
}

.home-search button {
  border: 0;
  border-radius: 12px;
  padding: 9px 18px;
  color: #ffffff;
  background: var(--color-primary);
  cursor: pointer;
}

.content-section {
  padding: 64px 0;
}

.soft-bg {
  background: #ffffff;
}

.gradient-panel {
  background: linear-gradient(135deg, var(--color-primary-soft), var(--color-accent-soft));
}

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

.section-heading > div {
  position: relative;
  padding-left: 18px;
}

.heading-bar {
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 34px;
  border-radius: 99px;
  background: var(--color-primary);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
}

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

.section-more {
  color: var(--color-primary-dark);
  font-weight: 750;
}

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

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

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

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

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

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #d9e8dd, #f8e2c3);
}

.movie-card.compact .poster {
  aspect-ratio: 16 / 10;
}

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

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

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: opacity 0.25s ease;
}

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

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 52px;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-title:hover {
  color: var(--color-primary-dark);
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  margin: 8px 0 12px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #6b7280;
  font-size: 13px;
}

.tag-row {
  overflow: hidden;
  margin-top: 10px;
  color: var(--color-primary-dark);
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-pills a,
.category-nav-strip a,
.side-category-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: #374151;
  background: #ffffff;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.category-pills a:hover,
.category-nav-strip a:hover,
.category-nav-strip a.is-current,
.side-category-links a:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 30px;
  align-items: start;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 54px 96px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
}

.rank-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: var(--color-primary);
  font-weight: 850;
}

.rank-poster {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #d9e8dd, #f8e2c3);
}

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

.rank-info a {
  font-size: 17px;
  font-weight: 800;
}

.rank-info a:hover {
  color: var(--color-primary-dark);
}

.rank-info p {
  display: -webkit-box;
  overflow: hidden;
  margin: 4px 0;
  color: var(--color-muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.rank-info div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
}

.spotlight-card {
  min-height: 360px;
  padding: 28px;
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(74, 124, 84, 0.95), rgba(61, 103, 68, 0.95)),
    radial-gradient(circle at 80% 15%, rgba(232, 143, 26, 0.65), transparent 28%);
  box-shadow: var(--shadow-hover);
}

.spotlight-card span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 700;
}

.spotlight-card h2 {
  margin: 22px 0 12px;
  font-size: 32px;
  line-height: 1.2;
}

.spotlight-card p {
  color: #ecfdf5;
  margin-bottom: 28px;
}

.page-hero {
  padding: 82px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(61, 103, 68, 0.92)),
    radial-gradient(circle at 20% 30%, rgba(232, 143, 26, 0.3), transparent 30%);
}

.page-hero.slim {
  padding: 66px 0;
}

.page-hero span {
  display: inline-flex;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f9fafb;
  font-size: 14px;
  font-weight: 750;
}

.page-hero h1 {
  margin: 18px 0 12px;
  max-width: 780px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: #e5e7eb;
  font-size: 18px;
}

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

.category-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-card-main {
  display: block;
  min-height: 180px;
  padding: 26px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(74, 124, 84, 0.94), rgba(17, 24, 39, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(232, 143, 26, 0.34), transparent 30%);
}

.category-card-main span {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 750;
}

.category-card-main h2 {
  margin: 18px 0 0;
  font-size: 25px;
  line-height: 1.35;
}

.category-preview {
  display: grid;
  gap: 10px;
  padding: 18px 22px 22px;
}

.category-preview a {
  color: #374151;
  font-weight: 650;
}

.category-preview a:hover {
  color: var(--color-primary-dark);
}

.category-nav-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0 0;
}

.filter-panel {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.filter-control {
  display: grid;
  gap: 7px;
  min-width: 150px;
}

.filter-control.grow {
  flex: 1 1 280px;
}

.filter-control label {
  color: #374151;
  font-size: 13px;
  font-weight: 800;
}

.filter-control input,
.filter-control select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  outline: 0;
  background: #f9fafb;
  padding: 0 12px;
  color: var(--color-ink);
}

.filter-control input:focus,
.filter-control select:focus {
  border-color: var(--color-primary);
  background: #ffffff;
}

.filter-empty,
.search-status {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-weight: 650;
}

.detail-shell {
  padding: 34px 0 70px;
  background: #f9fafb;
}

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

.detail-main {
  min-width: 0;
}

.player-card,
.detail-info-card,
.side-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 120px;
  height: 120px;
  border: 0;
  border-radius: 999px;
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.player-start:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.player-start span {
  font-size: 30px;
  line-height: 1;
}

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

.player-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  min-height: 0;
  color: #f9fafb;
  font-size: 13px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.detail-info-card {
  margin-top: 24px;
  padding: 28px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--color-muted);
  font-size: 14px;
}

.crumbs a:hover {
  color: var(--color-primary-dark);
}

.detail-info-card h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

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

.detail-meta span,
.tag-cloud span {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 750;
}

.one-line {
  margin: 0 0 18px;
  color: #374151;
  font-size: 18px;
  font-weight: 700;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.detail-info-card h2 {
  margin: 24px 0 10px;
  font-size: 22px;
}

.detail-info-card p {
  color: #374151;
}

.related-section {
  padding-bottom: 0;
}

.detail-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 94px;
}

.side-card {
  padding: 20px;
}

.poster-side-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #d9e8dd, #f8e2c3);
}

.side-card h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.side-rank-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.side-rank-list a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: center;
  color: #374151;
  font-weight: 700;
}

.side-rank-list span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  background: var(--color-primary);
  font-size: 12px;
  font-weight: 850;
}

.side-rank-list a:hover {
  color: var(--color-primary-dark);
}

.side-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 46px 0;
}

.site-footer h2,
.site-footer h3 {
  color: #ffffff;
  margin: 0 0 14px;
}

.site-footer p {
  color: #9ca3af;
  margin: 0;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a {
  color: #d1d5db;
  font-size: 14px;
}

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

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  text-align: center;
  font-size: 14px;
}

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

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

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

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

  .menu-toggle {
    display: flex;
  }

  .brand-text {
    font-size: 19px;
  }

  .hero,
  .hero-content {
    min-height: 72vh;
  }

  .hero-control {
    display: none;
  }

  .search-band-inner,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .home-search {
    width: 100%;
  }

  .grid.three,
  .grid.four,
  .grid.six,
  .category-grid,
  .two-column,
  .footer-grid,
  .detail-sidebar {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 44px 80px 1fr;
  }
}

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

  .header-inner {
    height: 66px;
  }

  .hero-content {
    padding-bottom: 58px;
  }

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

  .content-section {
    padding: 46px 0;
  }

  .filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-control {
    width: 100%;
  }

  .rank-item {
    grid-template-columns: 40px 1fr;
  }

  .rank-poster {
    display: none;
  }

  .player-start {
    width: 92px;
    height: 92px;
  }

  .detail-info-card {
    padding: 22px;
  }
}
