
:root {
  --teal: #0d9488;
  --teal-light: #2dd4bf;
  --blue: #2563eb;
  --blue-soft: #dbeafe;
  --orange: #f97316;
  --red: #ef4444;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --soft: #f8fafc;
  --dark: #111827;
  --shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  --round: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fafc 0%, #eef7ff 42%, #f8fafc 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

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

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 22px;
  background: linear-gradient(135deg, var(--teal-light), var(--blue));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 23px;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

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

.nav-link {
  position: relative;
  font-weight: 700;
  color: #334155;
  padding: 24px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 18px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transition: width 0.24s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 999px;
  background: #f8fafc;
}

.header-search input {
  width: 220px;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 8px 10px;
  color: var(--ink);
}

.header-search button,
.large-search button {
  border: 0;
  color: white;
  font-weight: 800;
  border-radius: 999px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.23);
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #eef2ff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #334155;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
}

.mobile-nav a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  color: #334155;
  font-weight: 700;
}

.mobile-nav a:hover {
  color: var(--teal);
  background: #ecfeff;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px) saturate(1.15);
  transform: scale(1.06);
  opacity: 0.45;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 26%, rgba(45, 212, 191, 0.34), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.72) 48%, rgba(15, 23, 42, 0.36)),
    linear-gradient(0deg, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0) 22%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: 56px;
  padding: 72px 0 98px;
}

.hero-copy {
  color: white;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #99f6e4;
}

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

.hero-copy p {
  max-width: 720px;
  margin: 0 0 26px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.hero-tags,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
}

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

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

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.34);
}

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

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

.hero-poster {
  position: relative;
  justify-self: end;
  width: min(380px, 100%);
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
  transform: rotate(2deg);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  font-size: 28px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 7px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 58px;
  background: linear-gradient(90deg, var(--teal-light), #ffffff);
}

.home-search-panel,
.section-wrap,
.page-main,
.detail-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.home-search-panel {
  margin-top: -54px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: var(--round);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.home-search-panel h2,
.section-heading h2,
.page-hero h1,
.player-section h2,
.content-card h2 {
  margin: 8px 0 0;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-search-panel h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.large-search {
  display: flex;
  gap: 12px;
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 999px;
  padding: 8px;
  background: #f8fafc;
}

.large-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 12px 18px;
}

.section-wrap {
  padding: 72px 0 0;
}

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

.section-heading.tight {
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
}

.section-heading a {
  color: var(--teal);
  font-weight: 900;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  color: #334155;
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
  border: 1px solid rgba(13, 148, 136, 0.12);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

.category-chip:hover,
.category-chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 15px 34px rgba(15, 23, 42, 0.09);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #ccfbf1, #dbeafe);
}

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

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

.card-type,
.card-play {
  position: absolute;
  z-index: 2;
}

.card-type {
  left: 14px;
  top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(8px);
}

.card-play {
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%) scale(0.72);
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

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

.card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.card-body strong {
  font-size: 18px;
  line-height: 1.25;
}

.card-body em,
.compact-card em,
.rank-copy em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.card-meta {
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.card-meta span,
.tag-row span {
  display: inline-flex;
  border-radius: 999px;
  background: #f1f5f9;
  padding: 5px 9px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.featured-card:nth-child(1),
.featured-card:nth-child(2),
.featured-card:nth-child(3) {
  position: relative;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.mini-grid,
.category-samples {
  display: grid;
  gap: 14px;
}

.compact-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.compact-card img {
  width: 92px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
  background: #dbeafe;
}

.compact-card span {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.compact-card strong,
.rank-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-panel,
.content-card,
.player-section,
.category-box {
  border-radius: var(--round);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.rank-panel {
  position: sticky;
  top: 98px;
  padding: 24px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: #f8fafc;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: #ecfeff;
  transform: translateX(3px);
}

.rank-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.rank-item img {
  width: 76px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
  background: #dbeafe;
}

.rank-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.rank-copy span {
  color: #475569;
  font-size: 12px;
  font-weight: 800;
}

.page-main,
.detail-main {
  padding-bottom: 72px;
}

.page-hero {
  margin: 48px auto 0;
  padding: 54px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(45, 212, 191, 0.36), transparent 28%),
    linear-gradient(135deg, #0f172a, #134e4a 46%, #1d4ed8);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  color: #ffffff;
  background: none;
  font-size: clamp(38px, 6vw, 70px);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  font-size: 17px;
}

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

.category-box {
  padding: 22px;
}

.category-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.category-box-head span {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.category-box-head em {
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
}

.category-box p {
  min-height: 58px;
  color: var(--muted);
  line-height: 1.75;
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.filter-bar input,
.filter-bar select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  outline: 0;
  padding: 0 16px;
}

.filter-bar input {
  flex: 1 1 300px;
}

.filter-bar select {
  flex: 0 1 190px;
}

.empty-state {
  display: none;
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-weight: 900;
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
}

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

.full-rank .rank-item {
  grid-template-columns: 52px 106px minmax(0, 1fr);
  padding: 14px;
}

.full-rank .rank-item img {
  width: 106px;
  height: 78px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 30px 0 20px;
  color: var(--muted);
  font-weight: 800;
}

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

.detail-hero {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 20%, rgba(45, 212, 191, 0.35), transparent 28%),
    linear-gradient(135deg, #0f172a, #164e63 44%, #1d4ed8);
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  aspect-ratio: 3 / 4;
  background: #dbeafe;
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.detail-copy .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.9;
}

.detail-tags {
  margin-top: 18px;
}

.detail-tags span {
  color: #d1fae5;
  background: rgba(255, 255, 255, 0.12);
}

.flat-actions .ghost-btn {
  color: var(--teal);
  background: #ffffff;
  border-color: transparent;
}

.player-section {
  margin-top: 36px;
  padding: 26px;
}

.player-section h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 4vw, 40px);
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.36);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-mask {
  position: absolute;
  inset: 0;
  border: 0;
  display: grid;
  place-items: center;
  gap: 16px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.2));
  cursor: pointer;
  padding: 20px;
}

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

.player-start {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.93);
  font-size: 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.player-mask strong {
  font-size: clamp(22px, 4vw, 38px);
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.content-card {
  padding: 26px;
}

.content-card h2 {
  font-size: 30px;
}

.content-card p {
  color: #334155;
  line-height: 2;
  font-size: 16px;
}

.related-section {
  width: 100%;
}

.site-footer {
  margin-top: 80px;
  padding: 52px 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #0f172a);
}

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

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  font-size: 19px;
}

.footer-brand span:last-child {
  font-size: 22px;
  font-weight: 900;
}

.site-footer p {
  color: #cbd5e1;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  color: #cbd5e1;
  margin: 9px 0;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  text-align: center;
}

@media (max-width: 1080px) {
  .header-search {
    display: none;
  }

  .hero-content,
  .split-section,
  .detail-hero,
  .detail-content,
  .home-search-panel {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    justify-self: start;
    width: min(320px, 78vw);
  }

  .rank-panel {
    position: static;
  }

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

@media (max-width: 760px) {
  .header-inner {
    min-height: 66px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .hero,
  .hero-content {
    min-height: 740px;
  }

  .hero-content {
    padding-top: 38px;
    gap: 28px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-poster {
    width: min(230px, 72vw);
    border-radius: 24px;
  }

  .home-search-panel {
    margin-top: -32px;
    padding: 20px;
  }

  .large-search {
    border-radius: 24px;
    flex-direction: column;
  }

  .large-search button {
    width: 100%;
  }

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

  .card-grid,
  .category-overview,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .detail-hero {
    padding: 28px;
    border-radius: 26px;
  }

  .detail-poster {
    width: min(260px, 82vw);
  }

  .filter-bar {
    display: grid;
  }

  .filter-bar input,
  .filter-bar select {
    width: 100%;
  }

  .rank-item,
  .full-rank .rank-item {
    grid-template-columns: 38px 76px minmax(0, 1fr);
  }

  .full-rank .rank-item img {
    width: 76px;
    height: 58px;
  }
}
