:root {
  --primary-900: #333d4f;
  --primary-800: #39475d;
  --primary-700: #445573;
  --primary-600: #506688;
  --primary-100: #ebeef3;
  --accent-500: #f6b800;
  --accent-400: #facc15;
  --neutral-950: #111318;
  --neutral-900: #171717;
  --neutral-800: #262626;
  --neutral-700: #404040;
  --neutral-600: #525252;
  --neutral-500: #737373;
  --neutral-300: #d4d4d4;
  --neutral-200: #e5e5e5;
  --neutral-100: #f5f5f5;
  --neutral-50: #fafafa;
  --white: #ffffff;
  --shadow-soft: 0 12px 36px rgba(16, 24, 40, 0.12);
  --shadow-card: 0 8px 24px rgba(16, 24, 40, 0.08);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--neutral-800);
  background: var(--neutral-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  font-weight: 800;
  color: var(--primary-900);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--primary-900);
  background: linear-gradient(135deg, var(--accent-400), #ffffff 70%);
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
}

.brand-text {
  font-size: 22px;
  letter-spacing: -0.03em;
}

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

.nav-link,
.mobile-nav-link {
  padding: 10px 14px;
  color: var(--neutral-700);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-900);
  background: var(--primary-100);
}

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

.header-search input,
.mobile-search input,
.page-search input,
.filter-panel input {
  width: 260px;
  height: 42px;
  padding: 0 14px;
  color: var(--neutral-800);
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.page-search input:focus,
.filter-panel input:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 4px rgba(80, 102, 136, 0.13);
}

.header-search button,
.mobile-search button,
.page-search button {
  height: 42px;
  padding: 0 18px;
  color: var(--white);
  cursor: pointer;
  background: var(--primary-600);
  border: 0;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.page-search button:hover,
.primary-button:hover {
  background: var(--primary-800);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--primary-900);
  background: var(--primary-100);
  border: 0;
  border-radius: 12px;
}

.mobile-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search input {
  width: 100%;
}

.mobile-nav {
  display: grid;
  gap: 6px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
}

.hero-stage {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--neutral-900);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 12, 18, 0.92), rgba(9, 12, 18, 0.58) 48%, rgba(9, 12, 18, 0.18));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: clamp(28px, 7vw, 78px);
  max-width: 620px;
  color: var(--white);
  transform: translateY(-50%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  margin: 0 0 16px;
  color: var(--primary-900);
  font-weight: 700;
  font-size: 13px;
  background: var(--accent-400);
  border-radius: 999px;
}

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

.hero-content p {
  max-width: 560px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-meta span,
.detail-meta span,
.card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--neutral-700);
  background: var(--primary-100);
  border-radius: 999px;
  font-size: 13px;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.16);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 700;
  border-radius: 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: var(--primary-600);
}

.primary-button.full {
  width: 100%;
}

.ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.ghost-button:hover {
  color: var(--primary-900);
  background: var(--white);
  transform: translateY(-1px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.42);
  border: 0;
  border-radius: 999px;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

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

.hero-dot.active {
  width: 34px;
  background: var(--white);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-search-box,
.hero-mini-list,
.hero-pills,
.filter-panel,
.article-card,
.detail-card,
.aside-card,
.poster-panel {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-search-box {
  padding: 24px;
}

.hero-search-box h2 {
  margin: 0 0 10px;
  color: var(--primary-900);
  font-size: 24px;
  line-height: 1.25;
}

.hero-search-box p {
  margin: 0 0 18px;
  color: var(--neutral-600);
  line-height: 1.7;
}

.hero-search-box form,
.page-search {
  display: flex;
  gap: 10px;
}

.hero-search-box input,
.page-search input {
  flex: 1;
  width: 100%;
}

.hero-mini-list {
  padding: 18px;
}

.hero-mini-list h2,
.footer-column h2,
.aside-card h2 {
  margin: 0 0 14px;
  color: var(--primary-900);
  font-size: 18px;
}

.hero-mini-list a,
.aside-links a {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.hero-mini-list a:hover,
.aside-links a:hover {
  background: var(--primary-100);
}

.hero-mini-list img,
.aside-links img {
  width: 70px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-mini-list span,
.aside-links span {
  font-weight: 700;
  color: var(--neutral-800);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
}

.hero-pills a,
.chip-group button {
  padding: 9px 13px;
  color: var(--primary-900);
  background: var(--primary-100);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.hero-pills a:hover,
.chip-group button:hover,
.chip-group button.active {
  color: var(--white);
  background: var(--primary-600);
}

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

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

.section-heading h2 {
  margin: 0;
  color: var(--neutral-900);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-link {
  color: var(--primary-600);
  font-weight: 800;
}

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

.movie-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--primary-900);
}

.movie-card:not(.movie-card-compact) .card-cover {
  aspect-ratio: 3 / 4;
}

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

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

.card-cover::after {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.card-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--primary-900);
  background: var(--accent-400);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .card-play {
  opacity: 1;
  transform: translateY(0);
}

.card-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  color: var(--primary-900);
  font-weight: 900;
  background: var(--accent-400);
  border-radius: 999px;
}

.card-body {
  padding: 16px;
}

.card-body h2 {
  margin: 0 0 10px;
  color: var(--neutral-900);
  font-size: 18px;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: var(--primary-600);
}

.card-body p {
  min-height: 46px;
  margin: 0 0 14px;
  color: var(--neutral-600);
  font-size: 14px;
  line-height: 1.65;
}

.card-meta {
  gap: 6px;
  margin-bottom: 12px;
}

.card-meta span {
  min-height: 24px;
  padding: 3px 8px;
  font-size: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 5px 8px;
  color: var(--primary-700);
  background: var(--primary-100);
  border-radius: 8px;
  font-size: 12px;
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 42px 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

.rank-number {
  color: var(--primary-900);
  font-size: 20px;
  font-weight: 900;
}

.rank-row img {
  width: 74px;
  height: 50px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-title {
  font-weight: 800;
  color: var(--neutral-900);
}

.rank-meta {
  color: var(--neutral-500);
  font-size: 13px;
}

.mini-strip {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.mini-card img {
  width: 96px;
  height: 62px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-card span {
  font-weight: 800;
  color: var(--neutral-900);
}

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

.category-card {
  display: block;
  min-height: 142px;
  padding: 22px;
  background: linear-gradient(135deg, var(--white), var(--primary-100));
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-900);
  font-size: 22px;
  font-weight: 900;
}

.category-card p {
  margin: 0;
  color: var(--neutral-600);
  line-height: 1.7;
}

.category-card.large {
  min-height: 168px;
}

.page-hero {
  margin-top: 0;
  color: var(--white);
  background: radial-gradient(circle at 18% 10%, rgba(250, 204, 21, 0.35), transparent 24%), linear-gradient(135deg, var(--primary-900), var(--neutral-950));
}

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

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

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

.filter-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
  padding: 20px;
}

.filter-panel.slim {
  display: block;
}

.filter-panel input {
  width: 100%;
  border-radius: 14px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 58px 156px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.ranking-index {
  color: var(--primary-900);
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.ranking-card img {
  width: 156px;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
}

.ranking-card h2 {
  margin: 0 0 8px;
  color: var(--neutral-900);
  font-size: 22px;
}

.ranking-card p {
  margin: 0 0 10px;
  color: var(--neutral-600);
  line-height: 1.7;
}

.ranking-card span:last-child {
  color: var(--neutral-500);
  font-size: 13px;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--neutral-500);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--primary-600);
}

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

.player-card {
  overflow: hidden;
  background: var(--neutral-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.28);
  border: 0;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.player-overlay:hover {
  background: rgba(0, 0, 0, 0.42);
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding-left: 6px;
  color: var(--primary-900);
  font-size: 34px;
  background: var(--accent-400);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.player-shell.playing .player-overlay {
  pointer-events: none;
  opacity: 0;
}

.player-message {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  border-radius: 999px;
  transform: translateX(-50%);
}

.detail-card,
.article-card {
  margin-top: 22px;
  padding: 26px;
}

.detail-card h1 {
  margin: 0 0 12px;
  color: var(--neutral-900);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.lead-text {
  margin: 0 0 18px;
  color: var(--neutral-600);
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  margin-bottom: 16px;
}

.detail-tags {
  margin-bottom: 26px;
}

.detail-card h2,
.article-card h2 {
  margin: 28px 0 12px;
  color: var(--primary-900);
  font-size: 24px;
}

.detail-card p,
.article-card p {
  color: var(--neutral-700);
  font-size: 16px;
  line-height: 1.9;
}

.detail-related {
  width: auto;
  padding-top: 34px;
}

.poster-panel {
  padding: 16px;
}

.poster-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: 16px;
}

.aside-card {
  margin-top: 18px;
  padding: 20px;
}

.aside-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 12px;
  margin: 0;
}

.aside-card dt {
  color: var(--neutral-500);
}

.aside-card dd {
  margin: 0;
  color: var(--neutral-900);
  font-weight: 700;
}

.site-footer {
  margin-top: 72px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--primary-900);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 34px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 32px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-column a:hover {
  color: var(--accent-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

[hidden],
.is-hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

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

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

  .detail-aside {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 18px;
  }

  .aside-card {
    margin-top: 0;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

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

  .hero-stage {
    min-height: 520px;
  }

  .hero-panel,
  .split-section,
  .footer-inner,
  .detail-aside {
    grid-template-columns: 1fr;
  }

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

  .ranking-card {
    grid-template-columns: 46px 106px 1fr;
  }

  .ranking-card img {
    width: 106px;
    height: 74px;
  }

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

  .rank-meta {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-inner {
    height: 64px;
  }

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

  .hero {
    width: min(100% - 20px, 1180px);
    margin-top: 14px;
  }

  .hero-stage {
    min-height: 560px;
    border-radius: 22px;
  }

  .hero-content {
    left: 22px;
    right: 22px;
    max-width: none;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .content-section,
  .detail-wrap,
  .footer-inner,
  .footer-bottom,
  .page-hero-inner {
    width: min(100% - 20px, 1180px);
  }

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

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

  .page-search,
  .hero-search-box form,
  .mobile-search {
    flex-direction: column;
  }

  .page-search button,
  .hero-search-box button,
  .mobile-search button {
    width: 100%;
  }

  .ranking-card {
    grid-template-columns: 42px 1fr;
  }

  .ranking-card img {
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

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