:root {
  --mist-50: #f8f9fa;
  --mist-100: #f1f3f5;
  --mist-200: #e9ecef;
  --mist-300: #dee2e6;
  --mist-500: #adb5bd;
  --mist-600: #868e96;
  --mist-700: #495057;
  --mist-800: #343a40;
  --mist-900: #212529;
  --mineral-50: #f0f9ff;
  --mineral-100: #e0f2fe;
  --mineral-300: #7dd3fc;
  --mineral-500: #0ea5e9;
  --mineral-600: #0284c7;
  --mineral-700: #0369a1;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 28px 70px rgba(15, 23, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--mist-900);
  background: var(--mist-50);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, var(--mist-800), var(--mist-700));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mineral-600);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(2, 132, 199, 0.18);
}

.brand-text {
  font-size: 20px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--mist-100);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link-active {
  color: var(--white);
  background: var(--mineral-600);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 180px;
  padding: 8px;
  background: var(--white);
  color: var(--mist-800);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--mist-700);
  font-size: 14px;
}

.dropdown-panel a:hover {
  color: var(--mineral-700);
  background: var(--mineral-50);
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero-carousel {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: var(--mist-900);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.06));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.hero-content h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--mist-100);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.82);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

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

.hero-meta span,
.detail-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--mist-100);
  font-size: 13px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

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

.btn-primary:hover {
  background: var(--mineral-700);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

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

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

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

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

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

.home-search {
  background: var(--white);
  border-bottom: 1px solid var(--mist-200);
}

.home-search-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.home-search h2,
.home-search p {
  margin: 0;
}

.home-search h2 {
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 26px;
}

.home-search p {
  margin-top: 6px;
  color: var(--mist-600);
  line-height: 1.7;
}

.section-block,
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section-light {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  background: var(--mist-100);
}

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

.section-head h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(26px, 4vw, 36px);
}

.section-head p {
  margin: 0;
  color: var(--mist-600);
  line-height: 1.7;
}

.section-more {
  color: var(--mineral-700);
  font-weight: 800;
  white-space: nowrap;
}

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  height: 260px;
  overflow: hidden;
  background: var(--mist-200);
}

.movie-card-small .poster-wrap {
  height: 150px;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.92);
  color: var(--white);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.corner-label,
.year-label {
  position: absolute;
  top: 10px;
  z-index: 3;
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.corner-label {
  left: 10px;
  background: rgba(2, 132, 199, 0.92);
}

.year-label {
  right: 10px;
  background: rgba(0, 0, 0, 0.66);
}

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

.movie-card-body strong {
  display: -webkit-box;
  margin-bottom: 8px;
  min-height: 46px;
  color: var(--mist-900);
  font-size: 17px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.movie-card-link:hover strong {
  color: var(--mineral-600);
}

.movie-card-body em {
  display: -webkit-box;
  min-height: 42px;
  color: var(--mist-600);
  font-size: 14px;
  line-height: 1.5;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-body span {
  display: block;
  margin-top: 10px;
  color: var(--mist-500);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rail-wrap {
  position: relative;
}

.movie-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 20px;
  overflow-x: auto;
  padding: 6px 2px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
  display: none;
}

.movie-rail .movie-card {
  scroll-snap-align: start;
}

.rail-btn {
  position: absolute;
  top: 36%;
  z-index: 4;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
}

.rail-left {
  left: -12px;
}

.rail-right {
  right: -12px;
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--mist-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile:hover img {
  opacity: 0.72;
  transform: scale(1.07);
}

.category-tile span {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.category-tile strong,
.category-tile em {
  display: block;
}

.category-tile strong {
  margin-bottom: 6px;
  font-size: 20px;
}

.category-tile em {
  color: var(--mist-200);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.ranking-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.ranking-feature {
  padding: 34px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--mist-900), var(--mist-700));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.ranking-feature h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 36px;
}

.ranking-feature p {
  margin: 0 0 24px;
  color: var(--mist-200);
  line-height: 1.8;
}

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

.rank-mini {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.rank-mini span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mineral-600);
  color: var(--white);
  font-weight: 900;
}

.rank-mini strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-mini em {
  color: var(--mist-500);
  font-size: 13px;
  font-style: normal;
}

.page-main {
  padding-top: 34px;
}

.page-hero {
  min-height: 330px;
  margin-bottom: 34px;
  padding: 48px;
  display: flex;
  align-items: center;
  border-radius: 22px;
  background: radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.35), transparent 34%), linear-gradient(135deg, var(--mist-900), var(--mist-700));
  color: var(--white);
  overflow: hidden;
}

.slim-hero {
  min-height: 250px;
}

.page-hero span {
  color: var(--mineral-300);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-hero h1 {
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(34px, 5vw, 56px);
}

.page-hero p {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--mist-100);
  line-height: 1.8;
}

.page-section {
  padding-left: 0;
  padding-right: 0;
}

.search-panel {
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.search-box input,
.filter-row select {
  width: 100%;
  border: 1px solid var(--mist-300);
  border-radius: 12px;
  background: var(--mist-50);
  color: var(--mist-900);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box input {
  min-height: 48px;
  padding: 0 16px;
  font-size: 16px;
}

.search-box input:focus,
.filter-row select:focus {
  border-color: var(--mineral-600);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.filter-row label span {
  display: block;
  margin-bottom: 6px;
  color: var(--mist-600);
  font-size: 13px;
  font-weight: 800;
}

.filter-row select {
  min-height: 42px;
  padding: 0 12px;
}

.empty-state {
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 12px;
  background: var(--mist-100);
  color: var(--mist-600);
  text-align: center;
}

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

.category-overview-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-overview-head h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
}

.category-overview-head p {
  margin: 0 0 14px;
  color: var(--mist-600);
  line-height: 1.7;
}

.compact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.compact-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: var(--mist-50);
}

.compact-card img {
  width: 82px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.compact-card strong,
.compact-card em {
  display: block;
}

.compact-card strong {
  margin-bottom: 5px;
}

.compact-card em {
  color: var(--mist-600);
  font-size: 13px;
  font-style: normal;
}

.rank-page-list {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  gap: 14px;
}

.rank-row a {
  display: grid;
  grid-template-columns: 58px 88px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.rank-num {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mist-200);
  color: var(--mist-700);
  font-weight: 900;
}

.rank-top .rank-num {
  background: var(--mineral-600);
  color: var(--white);
}

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

.rank-info strong,
.rank-info em,
.rank-info span {
  display: block;
}

.rank-info strong {
  margin-bottom: 4px;
  color: var(--mist-900);
  font-size: 18px;
}

.rank-info em,
.rank-info span {
  color: var(--mist-600);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.rank-info span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-row b {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mineral-50);
  color: var(--mineral-700);
}

.player-section {
  background: #000000;
}

.player-frame {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000000;
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68));
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-start span {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mineral-600);
  font-size: 36px;
  box-shadow: 0 0 0 14px rgba(2, 132, 199, 0.18);
}

.player-start strong {
  font-size: 18px;
}

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

.player-state {
  position: absolute;
  left: 50%;
  bottom: 18px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-size: 13px;
  transform: translateX(-50%);
}

.player-state:empty {
  display: none;
}

.detail-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 24px 64px;
}

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

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

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.detail-card,
.side-card {
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-card {
  margin-bottom: 22px;
  padding: 24px;
}

.detail-title-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
}

.detail-title-row img {
  width: 180px;
  height: 250px;
  border-radius: 16px;
  object-fit: cover;
}

.detail-title-row h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(28px, 4vw, 42px);
}

.detail-title-row p {
  margin: 0 0 18px;
  color: var(--mist-700);
  font-size: 17px;
  line-height: 1.8;
}

.detail-card .detail-meta span {
  background: var(--mist-100);
  color: var(--mist-700);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mineral-50);
  color: var(--mineral-700);
  font-size: 13px;
  font-weight: 800;
}

.prose-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  color: var(--mist-800);
}

.prose-card p {
  margin: 0 0 24px;
  color: var(--mist-700);
  font-size: 16px;
  line-height: 1.9;
}

.prose-card p:last-child {
  margin-bottom: 0;
}

.side-card {
  padding: 20px;
}

.side-card h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
}

.side-grid {
  display: grid;
  gap: 14px;
}

.side-grid .movie-card-body strong {
  min-height: auto;
  font-size: 15px;
}

.side-grid .movie-card-body em,
.side-grid .movie-card-body span {
  display: none;
}

.site-footer {
  background: var(--mist-900);
  color: var(--mist-100);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
}

.footer-inner h2,
.footer-inner h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
}

.footer-inner p {
  max-width: 560px;
  margin: 0;
  color: var(--mist-300);
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--mist-300);
  font-size: 14px;
}

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

.copyright {
  margin: 0;
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--mist-500);
  text-align: center;
  font-size: 13px;
}

.is-hidden-by-filter {
  display: none !important;
}

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

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

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

  .detail-side {
    order: 2;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 16px 18px;
    background: var(--mist-800);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-dropdown:hover .dropdown-panel,
  .dropdown-panel {
    position: static;
    width: 100%;
    margin-top: 4px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .nav-dropdown:hover .dropdown-panel {
    display: block;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42));
  }

  .hero-content {
    justify-content: end;
    padding-bottom: 84px;
  }

  .hero-arrow {
    display: none;
  }

  .home-search-inner,
  .ranking-split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .rank-row a {
    grid-template-columns: 44px 68px 1fr;
  }

  .rank-row b {
    display: none;
  }

  .rank-row img {
    width: 68px;
    height: 50px;
  }

  .detail-title-row {
    grid-template-columns: 130px 1fr;
    gap: 16px;
  }

  .detail-title-row img {
    width: 130px;
    height: 184px;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 17px;
  }

  .hero-carousel {
    height: 620px;
  }

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

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

  .poster-wrap {
    height: 230px;
  }

  .page-main,
  .section-block,
  .detail-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rank-page-list {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .detail-title-row img {
    width: 100%;
    height: auto;
    max-height: 420px;
  }

  .player-start span {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
