
:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-strong: rgba(15, 23, 42, 0.95);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --line: rgba(148, 163, 184, 0.18);
  --cyan: #06b6d4;
  --cyan-soft: #67e8f9;
  --shadow: 0 25px 70px rgba(2, 6, 23, 0.45);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(6, 182, 212, 0.16), transparent 34rem),
    radial-gradient(circle at 80% 8%, rgba(99, 102, 241, 0.18), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  z-index: -1;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.08));
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.35);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan), #155e75);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 36px rgba(6, 182, 212, 0.36);
}

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

.brand-text strong {
  font-size: 20px;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

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

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

.nav-link:hover,
.nav-link.is-active {
  background: rgba(6, 182, 212, 0.16);
  color: var(--cyan-soft);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(15, 23, 42, 0.6);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-nav .nav-link {
  display: block;
}

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

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, #020617 5%, rgba(2, 6, 23, 0.72) 48%, rgba(2, 6, 23, 0.12) 100%),
    linear-gradient(to right, rgba(2, 6, 23, 0.86), transparent 70%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100% - 1240px) / 2));
  right: max(24px, calc((100% - 1240px) / 2));
  bottom: 80px;
  max-width: 780px;
}

.hero-label,
.section-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.65);
}

.hero p {
  max-width: 680px;
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.7;
}

.hero-tags,
.detail-meta,
.tag-row,
.detail-tags,
.page-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-tags span,
.detail-meta span,
.detail-meta a,
.detail-tags span,
.tag-row span,
.page-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid var(--line);
  color: #cbd5e1;
  font-size: 13px;
}

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

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

.primary-button,
.search-control-row button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  box-shadow: 0 18px 40px rgba(6, 182, 212, 0.22);
  cursor: pointer;
}

.ghost-button {
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.68);
  color: #e2e8f0;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(16px);
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #64748b;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-search-panel,
.content-section,
.filter-panel,
.global-search-box,
.static-info-panel {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.quick-search-panel {
  position: relative;
  z-index: 4;
  margin-top: -36px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-search-form label,
.global-search-box label,
.filter-field label {
  display: block;
  margin: 0 0 8px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
}

.search-control-row {
  display: flex;
  gap: 10px;
}

.search-control-row input,
.filter-field input,
.filter-field select,
.global-search-box input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
  color: #f8fafc;
  background: rgba(2, 6, 23, 0.72);
}

.search-control-row input:focus,
.filter-field input:focus,
.filter-field select:focus {
  border-color: rgba(103, 232, 249, 0.62);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

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

.quick-links a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.86);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

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

.highlight-section {
  margin-top: 64px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.68));
}

.soft-highlight {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(15, 23, 42, 0.88));
}

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

.section-heading h2 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-more {
  color: var(--cyan-soft);
  font-weight: 850;
  white-space: nowrap;
}

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

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(103, 232, 249, 0.4);
  box-shadow: 0 24px 64px rgba(6, 182, 212, 0.12);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
}

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

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.82), transparent 55%);
  opacity: 0.85;
}

.play-chip,
.rank-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.94);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.rank-badge {
  top: 12px;
  bottom: auto;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(103, 232, 249, 0.32);
  color: var(--cyan-soft);
}

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

.movie-card-compact .movie-card-body {
  padding: 13px;
}

.movie-meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}

.movie-card h3 {
  min-height: 2.6em;
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.movie-card-compact h3 {
  font-size: 16px;
}

.movie-card h3 a:hover {
  color: var(--cyan-soft);
}

.movie-card p {
  min-height: 3.4em;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.movie-card-compact p {
  font-size: 13px;
}

.tag-row {
  gap: 6px;
}

.tag-row span {
  min-height: 24px;
  padding: 4px 8px;
  font-size: 12px;
}

.page-main {
  padding: 118px 0 72px;
}

.page-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.2), transparent 28rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.72));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.8;
}

.page-stats {
  margin-top: 24px;
}

.filter-panel,
.global-search-box,
.static-info-panel {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.76);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px auto;
  gap: 14px;
  align-items: end;
}

.filter-result {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan-soft);
  font-weight: 850;
}

.flush-section {
  padding-top: 28px;
}

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

.category-overview-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--bg-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 232, 249, 0.36);
}

.category-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-right: 12px;
  border-radius: 18px;
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan-soft);
  font-weight: 900;
}

.category-count {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.75);
  font-size: 13px;
}

.category-overview-card h2 {
  margin: 18px 0 8px;
  font-size: 26px;
}

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

.category-overview-card ul,
.sitemap-year-block ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.category-overview-card li,
.sitemap-year-block li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.category-overview-card li a,
.sitemap-year-block li a {
  color: #e2e8f0;
  font-weight: 750;
}

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

.rank-list-full {
  grid-template-columns: 1fr;
}

.rank-item {
  display: grid;
  grid-template-columns: 48px 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.75);
}

.rank-item:hover {
  border-color: rgba(103, 232, 249, 0.36);
}

.rank-number {
  color: var(--cyan-soft);
  font-size: 18px;
  font-weight: 950;
}

.rank-item img {
  width: 58px;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
}

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

.rank-info strong,
.rank-info small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.rank-score {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan-soft);
  font-weight: 850;
}

.video-main {
  padding: 108px 0 72px;
}

.video-layout {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--muted-strong);
  font-weight: 750;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 18rem),
    rgba(2, 6, 23, 0.46);
  cursor: pointer;
}

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

.play-circle {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.9);
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.42);
  font-size: 28px;
}

.player-overlay strong {
  font-size: 22px;
}

.player-overlay small,
.player-status {
  color: var(--muted-strong);
}

.player-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  margin: 0;
  font-size: 13px;
  text-align: center;
}

.detail-content,
.sidebar-card,
.static-info-panel {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.76);
}

.detail-content h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.04em;
}

.detail-meta a {
  color: var(--cyan-soft);
}

.detail-tags {
  margin-top: 16px;
}

.detail-content section {
  margin-top: 28px;
}

.detail-content h2,
.sidebar-card h2,
.static-info-panel h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-content p,
.static-info-panel p {
  color: var(--muted-strong);
  line-height: 1.9;
}

.lead-text {
  font-size: 18px;
  color: #e2e8f0 !important;
}

.sticky-card {
  position: sticky;
  top: 98px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-row span {
  color: var(--muted);
}

.info-row strong {
  text-align: right;
}

.full-button {
  width: 100%;
  margin-top: 14px;
}

.related-section {
  padding-top: 54px;
}

.global-search-box {
  max-width: 920px;
}

.search-hint {
  margin: 12px 0 0;
  color: var(--muted);
}

.sitemap-grid {
  width: min(1240px, calc(100% - 32px));
  margin: 28px auto 0;
  columns: 2;
  column-gap: 22px;
}

.sitemap-year-block {
  break-inside: avoid;
  margin: 0 0 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
}

.sitemap-year-block h2 {
  margin: 0;
  font-size: 24px;
}

.sitemap-year-block h2 small {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin: 72px auto 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.78);
}

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

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-links a {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.78);
  color: #cbd5e1;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

[data-movie-card][hidden] {
  display: none;
}

.empty-result {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  border-radius: 22px;
  text-align: center;
  color: var(--muted);
}

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

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

  .sticky-card {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

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

  .brand-text small {
    display: none;
  }

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

  .movie-grid-three,
  .movie-grid-four,
  .movie-grid-five,
  .movie-grid-six,
  .category-overview-grid,
  .rank-list-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero {
    padding: 36px 24px;
  }

  .sitemap-grid {
    columns: 1;
  }
}

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

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 72px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-tags span:nth-child(n + 4) {
    display: none;
  }

  .search-control-row {
    flex-direction: column;
  }

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

  .highlight-section {
    padding: 22px;
  }

  .movie-grid-three,
  .movie-grid-four,
  .movie-grid-five,
  .movie-grid-six,
  .category-overview-grid,
  .rank-list-preview {
    grid-template-columns: 1fr;
  }

  .movie-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .movie-card .poster-link {
    aspect-ratio: auto;
    min-height: 182px;
  }

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

  .movie-card p {
    min-height: 0;
  }

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

  .rank-score {
    grid-column: 3;
    width: fit-content;
  }

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