:root {
  --teal: #14b8a6;
  --teal-dark: #0f766e;
  --cyan: #0891b2;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-soft: 0 16px 48px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 10px 28px rgba(15, 23, 42, 0.08);
  --radius-xl: 22px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--slate-900);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 52%, #f8fafc 100%);
}

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.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  max-width: 1280px;
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.28);
}

.logo-text {
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(90deg, var(--teal-dark), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.header-search,
.mobile-search,
.wide-search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search input,
.mobile-search input,
.wide-search input {
  border: 1px solid #cbd5e1;
  outline: none;
  border-radius: 999px;
  color: var(--slate-800);
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 240px;
  padding: 10px 18px;
}

.header-search input:focus,
.mobile-search input:focus,
.wide-search input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.header-search button,
.mobile-search button,
.wide-search button,
.primary-button,
.ghost-button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button,
.wide-search button,
.primary-button {
  color: #ffffff;
  background: var(--teal);
}

.header-search button {
  padding: 10px 18px;
}

.header-search button:hover,
.mobile-search button:hover,
.wide-search button:hover,
.primary-button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.25);
}

.menu-toggle {
  display: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--slate-700);
  background: #f1f5f9;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 18px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px 0 18px;
  border-top: 1px solid var(--slate-200);
}

.mobile-search input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
}

.mobile-search button {
  padding: 11px 18px;
}

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

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 24px 92px;
  color: #ffffff;
}

.hero-chip {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  background: var(--teal);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
}

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

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

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.home-search-band {
  margin-top: -42px;
  position: relative;
  z-index: 3;
  padding: 0 24px;
}

.search-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.search-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.search-card p {
  margin: 0 0 18px;
  color: var(--slate-600);
}

.wide-search input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
}

.wide-search button {
  padding: 14px 24px;
}

.page-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 56px 24px;
}

.home-shell {
  padding-top: 66px;
}

.content-section {
  margin-bottom: 72px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.section-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--slate-600);
}

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

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

.catalog-grid {
  align-items: stretch;
}

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

.movie-card {
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

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

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.58) 100%);
  opacity: 0.88;
}

.year-badge,
.rank-badge,
.play-float {
  position: absolute;
  z-index: 2;
}

.year-badge {
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
}

.rank-badge {
  top: 10px;
  left: 10px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.32);
}

.play-float {
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(20, 184, 166, 0.92);
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-content {
  padding: 15px;
}

.card-content h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.card-content h3 a:hover {
  color: var(--teal-dark);
}

.card-meta,
.card-line {
  margin: 0;
  color: var(--slate-500);
  font-size: 13px;
}

.card-line {
  min-height: 42px;
  margin-top: 8px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row,
.genre-pills,
.detail-tags,
.hot-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.tag-row span,
.genre-pills span,
.detail-tags span,
.hot-terms button {
  border: 0;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 750;
}

.tag-row span {
  padding: 4px 8px;
}

.highlight-section {
  margin-bottom: 72px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #f1f5f9, #ecfeff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.highlight-copy span {
  color: var(--teal-dark);
  font-weight: 900;
}

.highlight-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.highlight-copy p {
  color: var(--slate-600);
  line-height: 1.8;
}

.ghost-button {
  display: inline-flex;
  margin-top: 14px;
  padding: 12px 22px;
  color: var(--teal-dark);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

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

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

.strip-card {
  position: relative;
  min-height: 148px;
  border-radius: 18px;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.strip-card img {
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.strip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.76) 100%);
}

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

.strip-play {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.92);
}

.strip-title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  font-weight: 850;
  line-height: 1.35;
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 22px;
  color: #ffffff;
  background: #0f172a;
  box-shadow: var(--shadow-card);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.84));
}

.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
}

.category-tile strong {
  font-size: 24px;
}

.category-tile em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  line-height: 1.6;
}

.page-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.28), transparent 34%),
    linear-gradient(135deg, #0f766e, #0891b2 58%, #0f172a);
}

.page-hero.slim {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.page-hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 72px 24px;
}

.page-hero-inner span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.8;
}

.page-filter,
.live-search {
  max-width: 780px;
  margin-top: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--slate-500);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--teal-dark);
}

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

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

.category-overview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.category-overview-head h2 {
  margin: 0 0 8px;
}

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

.category-overview-head a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--teal-dark);
  font-weight: 800;
  background: #ccfbf1;
}

.rank-lead {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 52px;
}

.rank-lead-card {
  position: relative;
  min-height: 260px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 24px;
  color: #ffffff;
  background: #0f172a;
  box-shadow: var(--shadow-card);
}

.rank-lead-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.35s ease;
}

.rank-lead-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.85) 100%);
}

.rank-lead-card:hover img {
  transform: scale(1.08);
}

.rank-lead-card strong,
.rank-lead-card em,
.rank-number {
  position: relative;
  z-index: 2;
}

.rank-lead-card strong {
  font-size: 20px;
}

.rank-lead-card em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.rank-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(239, 68, 68, 0.32);
}

.hot-terms {
  margin-top: 20px;
}

.hot-terms button {
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hot-terms button:hover {
  background: #99f6e4;
  transform: translateY(-1px);
}

.player-band {
  background: #000000;
}

.player-container {
  width: min(1280px, 100%);
  margin: 0 auto;
}

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

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  cursor: pointer;
}

.movie-video::poster {
  object-fit: cover;
}

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 104px;
  height: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(20, 184, 166, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.player-start span {
  margin-left: 8px;
  font-size: 42px;
}

.player-start:hover {
  background: var(--teal-dark);
  transform: translate(-50%, -50%) scale(1.05);
}

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

.detail-shell {
  padding-top: 36px;
}

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

.detail-title h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--slate-600);
}

.detail-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--slate-100);
}

.genre-pills span,
.detail-tags span {
  padding: 8px 12px;
}

.detail-card,
.side-card {
  margin-top: 24px;
  padding: 26px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.detail-card.tinted {
  background: linear-gradient(135deg, #f8fafc, #ecfeff);
}

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

.detail-card p {
  margin: 0 0 14px;
  color: #374151;
  line-height: 1.92;
  font-size: 17px;
}

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

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

.side-card {
  position: sticky;
  top: 102px;
}

.related-list {
  display: grid;
  gap: 16px;
}

.related-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.related-cover {
  position: relative;
  width: 122px;
  height: 76px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 13px;
  background: #0f172a;
}

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

.related-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.related-cover span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  color: #ffffff;
  transform: translate(-50%, -50%);
}

.related-item:hover .related-cover img {
  transform: scale(1.08);
}

.related-info {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.related-info strong {
  color: var(--slate-900);
  line-height: 1.4;
}

.related-info em {
  color: var(--slate-500);
  font-size: 13px;
  font-style: normal;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, #1e293b, #020617);
}

.footer-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 52px 24px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.footer-brand p {
  max-width: 520px;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-logo {
  color: #ffffff;
  font-size: 22px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
}

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

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

.footer-bottom {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 20px 24px 30px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: #94a3b8;
}

.is-filtered-out {
  display: none !important;
}

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

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

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

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

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

  .header-inner {
    height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .logo-text {
    font-size: 20px;
  }

  .hero {
    height: 62vh;
    min-height: 500px;
  }

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

  .hero p {
    font-size: 17px;
  }

  .hero-arrow {
    display: none;
  }

  .highlight-section,
  .detail-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .side-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .page-shell,
  .page-hero-inner,
  .hero-content,
  .header-inner,
  .mobile-panel,
  .footer-inner,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .movie-grid,
  .movie-grid.six-col,
  .ranking-grid,
  .category-grid,
  .strip-grid,
  .rank-lead {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .wide-search {
    flex-direction: column;
    align-items: stretch;
  }

  .search-card,
  .highlight-section,
  .category-overview-card,
  .detail-card,
  .side-card {
    padding: 20px;
  }

  .card-content {
    padding: 12px;
  }

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

  .player-start span {
    font-size: 31px;
  }

  .related-cover {
    width: 104px;
    height: 68px;
  }
}

@media (max-width: 460px) {
  .logo-mark {
    width: 34px;
    height: 34px;
  }

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

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

  .movie-grid,
  .movie-grid.six-col,
  .ranking-grid,
  .category-grid,
  .strip-grid,
  .rank-lead {
    grid-template-columns: 1fr;
  }

  .poster-frame {
    aspect-ratio: 16 / 10;
  }
}
