:root {
  color-scheme: light;
  --rose: #f43f5e;
  --rose-dark: #e11d48;
  --orange: #f97316;
  --amber: #f59e0b;
  --pink: #ec4899;
  --blue: #0ea5e9;
  --emerald: #10b981;
  --slate: #111827;
  --muted: #6b7280;
  --soft: #fff7ed;
  --card: #ffffff;
  --line: rgba(17, 24, 39, 0.08);
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 12px 24px rgba(244, 63, 94, 0.28);
}

.brand-name {
  font-size: 24px;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.desktop-nav a,
.mobile-nav a {
  font-weight: 600;
  color: #374151;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--rose);
  transform: translateY(-1px);
}

.top-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-nav input,
.filter-bar input,
.filter-bar select {
  border: 1px solid rgba(107, 114, 128, 0.28);
  border-radius: 999px;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input {
  width: 190px;
  padding: 10px 14px;
}

.top-search button {
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  cursor: pointer;
}

.top-search input:focus,
.mobile-nav input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  color: #111827;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 20px;
  border-top: 1px solid var(--line);
}

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

.mobile-nav input {
  width: 100%;
  padding: 12px 14px;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--orange));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff8fb);
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.78), rgba(244, 63, 94, 0.55), rgba(249, 115, 22, 0.34));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 190px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero p,
.page-hero p,
.detail-copy p {
  width: min(680px, 100%);
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-tags span {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

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

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

.primary-btn {
  color: var(--rose);
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.16);
}

.ghost-btn {
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.movie-card:hover,
.featured-card:hover,
.category-tile:hover {
  transform: translateY(-4px);
}

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

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

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

.featured-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: -105px;
}

.featured-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #111827, #f43f5e);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-bg,
.featured-mask,
.movie-poster,
.rank-poster,
.detail-poster {
  display: block;
  background-position: center;
  background-size: cover;
}

.featured-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  transition: transform 0.45s ease;
}

.featured-card:hover .featured-bg,
.movie-card:hover .movie-poster,
.rank-row:hover .rank-poster {
  transform: scale(1.1);
}

.featured-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.82));
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--rose);
  font-size: 12px;
  font-weight: 800;
}

.featured-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #ffffff;
}

.featured-copy strong,
.featured-copy em {
  display: block;
}

.featured-copy strong {
  font-size: 20px;
  line-height: 1.2;
}

.featured-copy em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.5;
}

.section-block {
  padding: 68px 0 0;
}

.white-section {
  padding: 68px 0;
  background: #ffffff;
}

.ranking-section {
  padding: 68px 0;
  background: linear-gradient(135deg, rgba(255, 241, 242, 0.92), rgba(255, 237, 213, 0.92));
}

.ranking-section.flat {
  background: transparent;
}

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

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 16px 28px rgba(244, 63, 94, 0.2);
  font-weight: 900;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose);
  font-weight: 800;
}

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

.category-grid.large {
  grid-template-columns: repeat(4, 1fr);
}

.category-tile {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  border-radius: 28px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 18px 34px rgba(244, 63, 94, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.accent-orange {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.accent-blue {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.accent-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
}

.accent-pink {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

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

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

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

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

.movie-card:hover {
  box-shadow: 0 24px 46px rgba(17, 24, 39, 0.14);
}

.movie-poster {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  background-image: linear-gradient(135deg, #f43f5e, #f97316);
  transition: transform 0.45s ease;
}

.movie-card.compact .movie-poster {
  min-height: 210px;
}

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.68));
}

.movie-score {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
  font-weight: 800;
  font-size: 13px;
}

.movie-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.movie-info {
  display: block;
  padding: 18px;
}

.movie-title,
.movie-desc,
.movie-meta {
  display: block;
}

.movie-title {
  color: #1f2937;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-desc {
  min-height: 44px;
  margin-top: 8px;
  color: #5b6472;
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  margin-top: 12px;
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-card {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.rank-row {
  display: grid;
  grid-template-columns: 54px 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row:hover {
  background: #fff7f9;
}

.rank-num {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #6b7280;
  background: #f3f4f6;
  font-weight: 900;
}

.rank-num.top-one,
.rank-num.top-two,
.rank-num.top-three {
  color: #ffffff;
}

.rank-num.top-one {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.rank-num.top-two {
  background: linear-gradient(135deg, #d1d5db, #6b7280);
}

.rank-num.top-three {
  background: linear-gradient(135deg, #fdba74, #f59e0b);
}

.rank-poster {
  width: 96px;
  height: 64px;
  border-radius: 14px;
  background-image: linear-gradient(135deg, #f43f5e, #f97316);
  transition: transform 0.35s ease;
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong,
.rank-copy em {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-copy strong {
  color: #1f2937;
  font-size: 17px;
}

.rank-copy em {
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.rank-heat {
  color: var(--rose);
  font-weight: 900;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 180px;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
}

.filter-bar label {
  display: grid;
  gap: 8px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 800;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
}

.empty-state {
  display: none;
  padding: 40px;
  border-radius: 24px;
  color: var(--muted);
  text-align: center;
  background: #ffffff;
}

.empty-state.is-visible {
  display: block;
}

.sub-page {
  padding-bottom: 48px;
}

.page-hero {
  position: relative;
  padding: 110px 0 76px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--orange));
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 55%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(10px);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero p {
  margin-bottom: 0;
}

.category-hero .primary-btn {
  margin-top: 22px;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  padding: 72px 0 80px;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(135deg, #111827, #f43f5e);
}

.detail-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.72), rgba(244, 63, 94, 0.45));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb,
.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.breadcrumb:hover {
  color: #ffffff;
}

.detail-headline {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  margin-top: 34px;
}

.detail-poster {
  min-height: 420px;
  border-radius: 30px;
  background-image: linear-gradient(135deg, #f43f5e, #f97316);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.detail-copy h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.detail-stats span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.detail-stats strong {
  color: #ffffff;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: #000000;
  box-shadow: var(--shadow);
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.64));
  cursor: pointer;
}

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

.big-play {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--rose);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  font-size: 34px;
}

.player-error {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: none;
  padding: 12px 16px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(225, 29, 72, 0.88);
}

.player-error.is-visible {
  display: block;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding-top: 56px;
}

.detail-article,
.detail-side {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
}

.detail-article {
  padding: 32px;
}

.detail-side {
  align-self: start;
  padding: 28px;
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.detail-article p {
  margin: 0 0 26px;
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

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

.detail-side dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-side dt {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 800;
}

.detail-side dd {
  margin: -8px 0 0;
  color: #1f2937;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer {
  margin-top: 80px;
  color: #e5e7eb;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 20px;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 9px 0;
  color: #9ca3af;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  text-align: center;
}

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

@media (max-width: 1080px) {
  .desktop-nav,
  .top-search {
    display: none;
  }

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

  .featured-strip,
  .movie-grid.four-col,
  .movie-grid.all-grid,
  .category-grid,
  .category-grid.large {
    grid-template-columns: repeat(2, 1fr);
  }

  .movie-grid.three-col {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .nav-shell {
    min-height: 64px;
  }

  .brand-name {
    font-size: 20px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 96px 0 170px;
  }

  .featured-strip {
    grid-template-columns: 1fr;
    margin-top: -82px;
  }

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

  .movie-grid.four-col,
  .movie-grid.three-col,
  .movie-grid.all-grid,
  .category-grid,
  .category-grid.large {
    grid-template-columns: 1fr;
  }

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

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

  .rank-poster {
    width: 74px;
    height: 54px;
  }

  .rank-heat {
    display: none;
  }

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

  .detail-poster {
    min-height: 360px;
  }

  .detail-hero {
    padding-top: 48px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }
}
