
:root {
  color-scheme: light;
  --page: #fffaf2;
  --surface: #ffffff;
  --surface-soft: #fff7ed;
  --ink: #1f2937;
  --muted: #64748b;
  --line: #fed7aa;
  --brand: #f97316;
  --brand-dark: #c2410c;
  --brand-soft: #ffedd5;
  --amber: #f59e0b;
  --night: #111827;
  --shadow: 0 18px 40px rgba(124, 45, 18, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 38%, #fff7ed 100%);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, .96), rgba(255, 237, 213, .96), rgba(255, 251, 235, .96));
  border-bottom: 1px solid rgba(251, 146, 60, .24);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 20px rgba(124, 45, 18, .08);
}

.header-inner {
  max-width: 1180px;
  height: 68px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--amber));
  color: white;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(249, 115, 22, .28);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #475569;
  font-weight: 700;
}

.desktop-nav a,
.mobile-panel a {
  transition: color .2s ease, background .2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--brand-dark);
}

.header-search,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.toolbar input {
  width: 260px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 0 18px;
  color: var(--ink);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.header-search input:focus,
.mobile-search input:focus,
.toolbar input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .14);
}

.header-search button,
.mobile-search button {
  height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
}

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

.mobile-panel.open {
  display: grid;
  gap: 12px;
}

.mobile-panel a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .62);
  color: #475569;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7 0%, #ffedd5 48%, #fde68a 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: .36;
  pointer-events: none;
}

.orb-a {
  width: 280px;
  height: 280px;
  left: 8%;
  top: 12%;
  background: #fb923c;
  animation: glow 5s ease-in-out infinite;
}

.orb-b {
  width: 380px;
  height: 380px;
  right: 5%;
  bottom: 8%;
  background: #f59e0b;
  animation: glow 6s ease-in-out infinite reverse;
}

.hero-stage {
  position: relative;
  max-width: 1180px;
  min-height: 600px;
  margin: 0 auto;
  padding: 56px 22px 72px;
}

.hero-slide {
  display: none;
  min-height: 470px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  align-items: center;
  gap: 58px;
}

.hero-slide.active {
  display: grid;
  animation: fadeUp .72s ease both;
}

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

.hero-kicker,
.page-hero span,
.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 16px 0 12px;
  color: #111827;
  font-size: clamp(42px, 6vw, 68px);
  line-height: .98;
  letter-spacing: -0.055em;
}

.hero-copy h2 {
  margin: 0 0 16px;
  color: var(--brand-dark);
  font-size: clamp(26px, 4vw, 44px);
}

.hero-copy p {
  max-width: 720px;
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.85;
}

.hero-tags,
.detail-facts,
.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.hero-tags span,
.detail-facts span,
.movie-meta-row span {
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #9a3412;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

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

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

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

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--amber));
  color: white;
  box-shadow: 0 16px 30px rgba(249, 115, 22, .28);
}

.btn.ghost {
  background: rgba(255, 255, 255, .72);
  color: var(--brand-dark);
  border: 1px solid rgba(249, 115, 22, .22);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  box-shadow: 0 30px 80px rgba(124, 45, 18, .28);
  transform: rotate(2deg);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 24px;
  z-index: 2;
  pointer-events: none;
}

.hero-poster img,
.movie-cover img,
.detail-poster img,
.rank-item img,
.related-item img,
.rank-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--brand-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(194, 65, 12, .26);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.hero-dot.active {
  width: 30px;
  background: var(--brand);
}

.feature-strip,
.content-section,
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  transform: translateY(-36px);
}

.feature-card,
.article-card,
.side-card,
.category-panel,
.cta-panel,
.type-block {
  border: 1px solid rgba(251, 146, 60, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 28px;
}

.feature-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
}

.feature-card h2,
.category-panel h2,
.cta-panel h2,
.type-block h2,
.article-card h2,
.side-card h2 {
  margin: 16px 0 8px;
  color: #111827;
}

.feature-card p,
.category-panel p,
.cta-panel p,
.type-block p,
.article-card p,
.side-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.content-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.warm-bg {
  max-width: none;
  padding-left: max(22px, calc((100% - 1180px) / 2 + 22px));
  padding-right: max(22px, calc((100% - 1180px) / 2 + 22px));
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2,
.page-hero h1 {
  margin: 10px 0 12px;
  color: #111827;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-heading p,
.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(124, 45, 18, .18);
}

.movie-cover {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
}

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

.movie-type {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--brand-dark);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

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

.movie-meta-row {
  gap: 8px;
  margin: 0 0 12px;
}

.movie-meta-row span {
  background: #fff7ed;
  color: #9a3412;
  padding: 5px 9px;
  font-size: 12px;
}

.movie-card h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 20px;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-card h2 a:hover {
  color: var(--brand-dark);
}

.movie-card p {
  display: -webkit-box;
  min-height: 52px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span {
  border-radius: 999px;
  background: #ffedd5;
  color: #9a3412;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: start;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(251, 146, 60, .18);
  border-radius: 22px;
  background: white;
  padding: 12px;
  box-shadow: 0 12px 26px rgba(124, 45, 18, .08);
}

.rank-item.top .rank-num {
  background: linear-gradient(135deg, var(--brand), var(--amber));
  color: white;
}

.rank-num {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ffedd5;
  color: var(--brand-dark);
  font-weight: 900;
}

.rank-item img {
  width: 72px;
  height: 96px;
  border-radius: 14px;
  background: #fed7aa;
}

.rank-item strong {
  display: block;
  color: #111827;
  font-size: 17px;
}

.rank-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.category-panel {
  padding: 28px;
}

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

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

.category-tile {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(251, 146, 60, .2);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #fff7ed);
  padding: 20px;
  box-shadow: 0 12px 28px rgba(124, 45, 18, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(124, 45, 18, .16);
}

.category-tile span {
  color: #111827;
  font-size: 24px;
  font-weight: 900;
}

.category-tile strong {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.category-tile em {
  color: var(--brand-dark);
  font-style: normal;
  font-weight: 800;
}

.cta-panel {
  text-align: center;
  padding: 56px 28px;
}

.cta-panel .btn {
  margin-top: 24px;
}

.page-hero {
  background: radial-gradient(circle at 16% 12%, rgba(251, 146, 60, .35), transparent 32%), linear-gradient(135deg, #fff7ed, #fef3c7);
  text-align: center;
}

.page-hero.slim {
  padding: 88px 22px;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.toolbar input {
  width: min(420px, 100%);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #9a3412;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.active {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

.empty-state {
  display: none;
  margin-top: 30px;
  border-radius: 24px;
  background: white;
  padding: 36px;
  color: var(--muted);
  text-align: center;
  box-shadow: var(--shadow);
}

.empty-state.show {
  display: block;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.pager a,
.pager span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: white;
  color: #9a3412;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(124, 45, 18, .08);
}

.pager a.active {
  background: var(--brand);
  color: white;
}

.type-block {
  margin-bottom: 28px;
  padding: 28px;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid rgba(251, 146, 60, .18);
  border-radius: 24px;
  background: white;
  padding: 14px;
  box-shadow: var(--shadow);
}

.rank-card-cover {
  position: relative;
  height: 160px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
}

.rank-card-cover span {
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  color: var(--brand-dark);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 900;
}

.rank-card h2 {
  margin: 6px 0 10px;
  font-size: 21px;
}

.rank-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: white;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.08);
}

.detail-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 22px 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: white;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 8px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

.detail-info h1 {
  margin: 14px 0 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.detail-line {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
  line-height: 1.8;
}

.detail-facts span,
.detail-tags span {
  background: rgba(255, 255, 255, .13);
  color: white;
}

.detail-info .btn {
  margin-top: 28px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #050505;
  box-shadow: 0 26px 70px rgba(15, 23, 42, .26);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #050505;
}

.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 at center, rgba(249, 115, 22, .32), rgba(0, 0, 0, .74));
  color: white;
  cursor: pointer;
  transition: opacity .2s ease, visibility .2s ease;
}

.player-start span {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--amber));
  box-shadow: 0 18px 35px rgba(249, 115, 22, .36);
}

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

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

.article-card,
.side-card {
  padding: 28px;
  margin-top: 24px;
}

.article-card p {
  color: #475569;
  font-size: 16px;
}

.side-card:first-child {
  margin-top: 0;
}

.side-card dl {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.side-card dt {
  color: #9a3412;
  font-weight: 900;
}

.side-card dd {
  margin: 0;
  color: #475569;
}

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

.related-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.related-item img {
  width: 64px;
  height: 86px;
  border-radius: 14px;
  background: #fed7aa;
}

.related-item span {
  color: #111827;
  font-weight: 800;
  line-height: 1.4;
}

.section-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand-dark);
  font-weight: 900;
}

.site-footer {
  background: linear-gradient(180deg, #1f2937, #111827);
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 32px;
  padding-top: 58px;
  padding-bottom: 38px;
}

.footer-brand {
  color: white;
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: white;
  font-size: 17px;
}

.site-footer p {
  color: #94a3b8;
  line-height: 1.75;
}

.site-footer a {
  display: block;
  margin: 10px 0;
  color: #cbd5e1;
}

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, .18);
  padding: 22px;
  text-align: center;
  color: #94a3b8;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%, 100% {
    transform: scale(1);
    opacity: .34;
  }
  50% {
    transform: scale(1.12);
    opacity: .18;
  }
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-slide,
  .detail-layout,
  .detail-content,
  .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    max-width: 360px;
    margin: 0 auto;
  }

  .three-col,
  .four-col,
  .category-grid,
  .rank-board,
  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 62px;
    padding: 0 16px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .mobile-search input {
    width: 100%;
  }

  .hero-carousel,
  .hero-stage {
    min-height: auto;
  }

  .hero-stage {
    padding: 42px 16px 76px;
  }

  .hero-slide {
    gap: 28px;
  }

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

  .hero-copy p,
  .detail-line {
    font-size: 16px;
  }

  .feature-strip {
    transform: none;
    padding-top: 28px;
  }

  .three-col,
  .four-col,
  .category-grid,
  .rank-board,
  .feature-strip,
  .category-grid.mini {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .movie-cover,
  .movie-card.compact .movie-cover {
    height: 260px;
  }

  .toolbar {
    align-items: stretch;
  }

  .filter-chips {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .rank-card {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .rank-card-cover {
    height: 130px;
  }

  .detail-inner {
    padding: 22px 16px 50px;
  }

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