:root {
  --primary-50: #fef9ee;
  --primary-100: #fdf2d7;
  --primary-300: #f7ca7a;
  --primary-600: #e17015;
  --primary-700: #bb5413;
  --primary-800: #954217;
  --accent-50: #fef6ee;
  --accent-600: #df5015;
  --secondary-50: #faf9f6;
  --secondary-100: #f5f3ec;
  --secondary-600: #a58a66;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --surface: #ffffff;
  --shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 42%, #f9fafb 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--primary-800), var(--primary-700), var(--primary-600));
  box-shadow: 0 12px 28px rgba(149, 66, 23, 0.25);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  font-size: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

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

.brand-text small {
  margin-top: 4px;
  font-size: 12px;
  color: var(--primary-100);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #fff;
  font-weight: 600;
}

.nav-links a,
.search-open,
.mobile-panel a,
.mobile-panel button {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.search-open:hover,
.mobile-panel a:hover,
.mobile-panel button:hover {
  color: var(--primary-100);
  transform: translateY(-1px);
}

.search-open,
.nav-toggle,
.search-close {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.search-open {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  font-size: 26px;
}

.mobile-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-panel a,
.mobile-panel button {
  display: block;
  width: 100%;
  padding: 14px 0;
  text-align: left;
}

.hero-carousel {
  position: relative;
  min-height: 70vh;
  height: 78vh;
  overflow: hidden;
  background: #050505;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s 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-shade,
.detail-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 92px;
  color: #fff;
}

.hero-copy {
  width: min(720px, 100%);
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fbbf24;
  font-size: 28px;
  font-weight: 800;
}

.hero-rating span {
  color: #d1d5db;
  font-size: 16px;
  font-weight: 600;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0 0 22px;
  max-width: 680px;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.tag-row,
.detail-tags,
.detail-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-tags span,
.detail-meta-chips span,
.tag-row span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 7px 12px;
  font-size: 13px;
  backdrop-filter: blur(4px);
}

.tag-row span {
  background: var(--primary-50);
  color: var(--primary-700);
  padding: 5px 9px;
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: var(--primary-600);
  box-shadow: 0 14px 30px rgba(225, 112, 21, 0.32);
}

.primary-btn:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(225, 112, 21, 0.4);
}

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

.ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.ghost-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.68);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: #fff;
}

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

.section-warm {
  background: linear-gradient(90deg, var(--primary-50), var(--accent-50));
}

.section-soft {
  background: linear-gradient(180deg, #f3f4f6, #f9fafb);
}

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

.section-head h2,
.page-hero h1,
.detail-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-head p,
.page-hero p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

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

.movie-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card-link {
  display: block;
  height: 100%;
}

.movie-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-100), var(--primary-100));
}

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

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

.movie-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12));
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-card-overlay {
  opacity: 1;
}

.play-bubble {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--primary-600);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.score-badge,
.type-badge {
  position: absolute;
  top: 10px;
  z-index: 2;
  border-radius: 9px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 800;
}

.score-badge {
  right: 10px;
  color: #fbbf24;
}

.type-badge {
  left: 10px;
}

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

.movie-card-body h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--primary-600);
}

.movie-meta-line,
.movie-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.movie-desc {
  min-height: 40px;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  margin-top: 12px;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: 22px;
  background: #111827;
  color: #fff;
  box-shadow: var(--shadow);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.58;
}

.category-card div {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 70%);
}

.category-card h3,
.category-overview-body h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.category-card p,
.category-overview-body p {
  margin: 0 0 12px;
  color: #e5e7eb;
  line-height: 1.6;
}

.category-card span,
.category-overview-body span {
  color: var(--primary-100);
  font-weight: 800;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 52px 56px 1fr 56px;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
}

.rank-row img {
  width: 56px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-num {
  color: var(--primary-600);
  font-size: 22px;
  font-weight: 900;
}

.rank-row em {
  color: #f59e0b;
  font-style: normal;
  font-weight: 900;
}

.plain-link {
  grid-column: 1 / -1;
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  color: var(--primary-700);
  font-weight: 800;
}

.page-main {
  min-height: 60vh;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background: linear-gradient(135deg, var(--primary-50), #fff, var(--accent-50));
}

.small-hero {
  background: linear-gradient(135deg, var(--primary-800), var(--primary-700), var(--accent-600));
  color: #fff;
}

.small-hero h1,
.small-hero p,
.small-hero .eyebrow {
  color: #fff;
}

.category-hero {
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--primary-700);
  font-weight: 800;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr 180px 180px auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
}

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

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--primary-300);
  box-shadow: 0 0 0 3px rgba(247, 202, 122, 0.24);
}

.filter-bar span {
  color: var(--primary-700);
  font-weight: 900;
  white-space: nowrap;
}

.empty-state {
  padding: 70px 0;
  color: var(--muted);
  text-align: center;
  font-size: 20px;
}

.category-overview-card {
  min-height: 0;
  background: #fff;
  color: var(--ink);
}

.category-overview-link {
  display: block;
  height: 100%;
}

.category-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 150px;
  background: var(--secondary-100);
}

.category-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overview-body {
  padding: 22px;
}

.category-overview-body p {
  color: var(--muted);
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 60px 76px 1fr 88px;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.ranking-item img {
  width: 76px;
  height: 106px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-main h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.ranking-main p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
}

.ranking-main small {
  color: var(--secondary-600);
  font-weight: 700;
}

.ranking-item > strong {
  color: #f59e0b;
  font-size: 18px;
  text-align: right;
}

.detail-hero {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-image: var(--detail-bg);
  background-size: cover;
  background-position: center;
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.detail-hero h1 {
  color: #fff;
  max-width: 880px;
}

.detail-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta-chips {
  margin-top: 22px;
}

.detail-content-section {
  padding-top: 44px;
}

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

.player-card,
.info-card,
.side-card {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.player-card {
  overflow: hidden;
  margin-bottom: 24px;
}

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

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
  cursor: pointer;
  font: inherit;
}

.video-overlay span {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary-600);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  font-size: 30px;
}

.video-overlay[hidden] {
  display: none;
}

.player-note {
  margin: 0;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
  background: #fff;
}

.info-card {
  margin-bottom: 24px;
  padding: 26px;
}

.info-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.info-card p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
  font-size: 16px;
}

.detail-tags span {
  background: var(--primary-50);
  color: var(--primary-700);
}

.detail-sidebar {
  position: sticky;
  top: 96px;
}

.side-card {
  padding: 20px;
  margin-bottom: 22px;
}

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

.movie-facts {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  margin: 0;
}

.movie-facts dt {
  color: var(--muted);
}

.movie-facts dd {
  margin: 0;
  font-weight: 700;
}

.movie-facts a {
  color: var(--primary-700);
}

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

.mini-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

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

.mini-card strong,
.mini-card span,
.mini-card small {
  display: block;
}

.mini-card strong {
  margin-bottom: 6px;
  line-height: 1.35;
}

.mini-card span,
.mini-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.search-panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
}

.search-dialog {
  position: relative;
  width: min(760px, calc(100% - 32px));
  max-height: min(720px, calc(100vh - 60px));
  margin: 40px auto;
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  padding: 28px;
}

.search-dialog h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.search-dialog p {
  margin: 0 0 18px;
  color: var(--muted);
}

.search-close {
  position: absolute;
  top: 14px;
  right: 18px;
  color: var(--muted);
  font-size: 30px;
}

.global-search-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  outline: none;
}

.global-search-input:focus {
  border-color: var(--primary-300);
  box-shadow: 0 0 0 3px rgba(247, 202, 122, 0.28);
}

.global-search-results {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.search-result {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: #f9fafb;
}

.search-result img {
  width: 62px;
  height: 84px;
  border-radius: 10px;
  object-fit: cover;
}

.search-result strong,
.search-result span,
.search-result small {
  display: block;
}

.search-result span,
.search-result small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.sitemap-box {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.sitemap-box h2 {
  margin: 0 0 16px;
}

.sitemap-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-box li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.sitemap-box a {
  color: var(--primary-700);
  font-weight: 800;
}

.sitemap-box span {
  color: var(--muted);
  font-size: 13px;
}

.sitemap-full {
  grid-column: 1 / -1;
}

.movie-link-list {
  columns: 2;
  column-gap: 32px;
}

.movie-link-list li {
  break-inside: avoid;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #030712);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  padding: 52px 0 36px;
}

.footer-brand p {
  max-width: 520px;
  color: #9ca3af;
  line-height: 1.7;
}

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

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #d1d5db;
}

.footer-links a:hover {
  color: var(--primary-300);
}

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

[hidden] {
  display: none !important;
}

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

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

  .detail-sidebar {
    position: static;
  }
}

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

  .nav-toggle {
    display: block;
    color: #fff;
  }

  .hero-carousel {
    height: 72vh;
  }

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

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

  .hero-arrow {
    display: none;
  }

  .movie-grid,
  .all-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .category-grid,
  .category-overview-grid,
  .rank-panel,
  .footer-grid,
  .sitemap-layout {
    grid-template-columns: 1fr;
  }

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

  .ranking-item {
    grid-template-columns: 44px 64px 1fr;
  }

  .ranking-item > strong {
    grid-column: 3;
    text-align: left;
  }

  .movie-link-list {
    columns: 1;
  }
}

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

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

  .brand-text small {
    display: none;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

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

  .section-head {
    margin-bottom: 22px;
  }

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

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

  .movie-desc,
  .tag-row {
    display: none;
  }

  .ranking-item {
    grid-template-columns: 38px 56px 1fr;
    gap: 12px;
  }

  .ranking-item img {
    width: 56px;
    height: 78px;
  }

  .page-hero,
  .detail-hero {
    padding: 56px 0;
  }

  .search-dialog {
    margin-top: 18px;
    padding: 22px;
  }
}
