:root {
  color-scheme: dark;
  --bg: #030712;
  --panel: rgba(17, 24, 39, 0.72);
  --panel-strong: rgba(17, 24, 39, 0.95);
  --line: rgba(148, 163, 184, 0.18);
  --text: #ffffff;
  --muted: #9ca3af;
  --soft: #d1d5db;
  --blue: #60a5fa;
  --blue-strong: #2563eb;
  --yellow: #facc15;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.22), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.12), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(31, 41, 55, 0.72);
  background: rgba(17, 24, 39, 0.86);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

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

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.nav-link {
  padding: 8px 12px;
  border-radius: 12px;
  color: #d1d5db;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(37, 99, 235, 0.22);
}

.header-search {
  position: relative;
  flex: 1;
  max-width: 360px;
  margin-left: auto;
}

.header-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  color: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: rgba(3, 7, 18, 0.52);
  padding: 11px 14px;
}

.header-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(96, 165, 250, 0.65);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: 420px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.98);
  box-shadow: var(--shadow);
  display: none;
}

.search-results.is-open {
  display: block;
}

.search-results a {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.search-results a:hover {
  background: rgba(37, 99, 235, 0.16);
}

.search-results strong {
  display: block;
  margin-bottom: 3px;
}

.search-results span {
  color: var(--muted);
  font-size: 0.86rem;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(3, 7, 18, 0.45);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--line);
}

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

.mobile-nav-links,
.mobile-category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin: 14px auto 0;
}

.mobile-panel a {
  padding: 12px;
  border-radius: 14px;
  background: rgba(31, 41, 55, 0.62);
  color: #d1d5db;
}

.hero-carousel {
  position: relative;
  height: 80vh;
  min-height: 620px;
  overflow: hidden;
}

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

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

.hero-bg,
.detail-backdrop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(3, 7, 18, 0.62) 42%, rgba(3, 7, 18, 0.25)),
    linear-gradient(0deg, var(--bg), transparent 45%),
    radial-gradient(circle at 72% 52%, rgba(37, 99, 235, 0.20), transparent 25rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 60px;
  padding-top: 72px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 16px 0;
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  max-width: 720px;
  color: #e5e7eb;
  font-size: 1.1rem;
  line-height: 1.75;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(96, 165, 250, 0.32);
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.14);
  font-size: 0.85rem;
}

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

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

.primary-btn {
  color: white;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.32);
}

.ghost-btn {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(0, 0, 0, 0.35);
}

.primary-btn:hover,
.ghost-btn:hover,
.rank-play:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(17, 24, 39, 0.68);
  box-shadow: var(--shadow);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-poster span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  height: 42px;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.52);
  font-size: 2.2rem;
  line-height: 1;
}

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

.hero-arrow.prev {
  left: 32px;
}

.hero-arrow.next {
  right: 32px;
}

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

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

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

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

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 720px;
}

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

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

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

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

.poster-link {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-lg);
  background: rgba(31, 41, 55, 0.68);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 52%);
  opacity: 0.9;
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.play-chip {
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(37, 99, 235, 0.86);
  opacity: 0;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 36px;
  height: 30px;
  display: grid;
  place-items: center;
  background: rgba(250, 204, 21, 0.88);
  color: #111827;
}

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

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

.card-body {
  padding: 13px 2px 0;
}

.card-body h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.35;
  font-weight: 800;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.card-body h3 a:hover,
.rank-body h2 a:hover,
.horizontal-card h3 a:hover {
  color: var(--blue);
}

.card-meta {
  margin: 5px 0;
  color: var(--muted);
  font-size: 0.82rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.card-desc {
  margin: 0;
  color: #d1d5db;
  font-size: 0.88rem;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.full-strip {
  padding: 24px 0 42px;
  background: linear-gradient(90deg, #111827, #1f2937, #111827);
}

.strip-inner {
  padding-bottom: 24px;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 18px;
  overflow-x: auto;
  padding: 0 max(16px, calc((100vw - 1280px) / 2)) 16px;
  scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

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

.feature-large a {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 480px;
  height: 100%;
  border-radius: var(--radius-xl);
  background: rgba(17, 24, 39, 0.8);
}

.feature-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-large:hover img {
  transform: scale(1.06);
}

.feature-large div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.feature-large span {
  color: var(--blue);
  font-weight: 700;
}

.feature-large h3 {
  margin: 10px 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
}

.feature-large p {
  color: #e5e7eb;
  line-height: 1.65;
  max-width: 720px;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 24, 39, 0.72);
}

.horizontal-poster {
  overflow: hidden;
  border-radius: 14px;
}

.horizontal-poster img {
  width: 96px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.horizontal-card h3 {
  margin: 4px 0;
  font-size: 1.02rem;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.horizontal-card p,
.horizontal-card span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.small-rank {
  color: var(--yellow) !important;
  font-weight: 800;
}

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

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

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 92px max(16px, calc((100vw - 1280px) / 2)) 56px;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(3, 7, 18, 0.62)),
    var(--hero-image, radial-gradient(circle at 20% 10%, rgba(37, 99, 235, 0.34), transparent 30rem));
  background-size: cover;
  background-position: center;
}

.slim-hero {
  min-height: 320px;
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.32), transparent 28rem),
    linear-gradient(135deg, #030712, #111827 72%, #0f172a);
}

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

.category-tile a {
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(17, 24, 39, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile a:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.42);
}

.category-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: rgba(3, 7, 18, 0.8);
}

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

.category-collage img:first-child {
  grid-row: span 2;
}

.category-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-info span {
  color: var(--blue);
  font-weight: 800;
}

.category-info h2 {
  margin: 8px 0 12px;
  font-size: 1.8rem;
}

.category-info p {
  margin: 0;
  color: var(--soft);
  line-height: 1.7;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 180px auto;
  align-items: end;
  gap: 14px;
  padding: 16px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 24, 39, 0.68);
}

.filter-bar label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.85rem;
}

.filter-bar strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  color: #bfdbfe;
  white-space: nowrap;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 84px 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 24, 39, 0.74);
}

.rank-item.top {
  border-color: rgba(250, 204, 21, 0.35);
  background: linear-gradient(135deg, rgba(113, 63, 18, 0.28), rgba(17, 24, 39, 0.74));
}

.rank-poster {
  overflow: hidden;
  border-radius: 14px;
}

.rank-poster img {
  width: 84px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.rank-num {
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}

.rank-body h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.rank-body p,
.rank-body span {
  display: block;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.rank-play {
  background: rgba(37, 99, 235, 0.20);
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.32);
}

.breadcrumb {
  width: min(1280px, calc(100% - 32px));
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 70px 0;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  filter: blur(4px);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.98), rgba(3, 7, 18, 0.72)),
    linear-gradient(0deg, var(--bg), transparent 45%, var(--bg));
}

.detail-grid {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-info h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 28px 0 0;
}

.info-list div {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.58);
}

.info-list dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.info-list dd {
  margin: 5px 0 0;
  color: white;
  font-weight: 700;
}

.player-section {
  padding-top: 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow);
}

.player-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-start span {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.45);
  position: relative;
}

.player-start span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

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

.detail-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
}

.detail-text article,
.prose-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(17, 24, 39, 0.72);
  padding: 26px;
}

.detail-text h2,
.prose-card h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.detail-text p,
.prose-card p {
  color: #d1d5db;
  line-height: 1.9;
  margin: 0 0 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.72);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer a:hover {
  color: var(--blue);
}

.site-footer h3 {
  margin: 0 0 12px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-copy {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #6b7280;
  text-align: center;
  font-size: 0.9rem;
}

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

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

  .menu-button {
    display: inline-flex;
  }

  .header-search {
    max-width: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-poster {
    display: none;
  }

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

  .category-grid,
  .detail-text,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .brand-text small {
    display: none;
  }

  .header-search {
    display: none;
  }

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

  .hero-carousel {
    height: 72vh;
    min-height: 560px;
  }

  .hero-content {
    width: min(100% - 28px, 1280px);
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: clamp(2.2rem, 13vw, 3.8rem);
  }

  .hero-arrow {
    display: none;
  }

  .content-section {
    width: min(100% - 28px, 1280px);
    padding: 44px 0;
  }

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

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

  .card-desc {
    display: none;
  }

  .feature-large a {
    min-height: 360px;
  }

  .category-tile a {
    grid-template-columns: 1fr;
  }

  .category-collage {
    height: 220px;
  }

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

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

  .rank-item {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
  }

  .rank-num {
    position: absolute;
    left: 22px;
    top: 18px;
    z-index: 2;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px black;
  }

  .rank-play {
    grid-column: 2;
    justify-self: start;
    min-height: 38px;
  }

  .rank-poster img {
    width: 70px;
  }

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

  .detail-poster {
    max-width: 220px;
  }

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

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