:root {
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-800);
  background: #ffffff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(250, 250, 249, 0.93);
  border-bottom: 1px solid rgba(214, 211, 209, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.07);
}

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

.nav-shell {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--slate-800);
}

.brand:hover,
.footer-brand:hover,
.nav-link:hover,
.mobile-link:hover,
.text-link:hover {
  color: var(--amber-700);
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
  box-shadow: 0 10px 22px rgba(217, 119, 6, 0.25);
}

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

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--slate-700);
  font-weight: 650;
  transition: 0.25s ease;
}

.nav-link.current,
.mobile-link.current {
  color: var(--amber-700);
  background: var(--amber-50);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--stone-100);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--slate-700);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 16px;
  border-top: 1px solid var(--stone-200);
  background: var(--stone-50);
}

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

.home-hero {
  position: relative;
  height: 84vh;
  min-height: 560px;
  overflow: hidden;
  background: #111827;
}

.home-hero > h1 {
  position: absolute;
  z-index: 5;
  top: 98px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: 0.04em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img,
.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.22));
}

.hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(860px, calc(100% - 32px));
  transform: translate(-50%, -42%);
  text-align: center;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber-100);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--amber-700);
}

.hero-content h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.hero-text {
  width: min(720px, 100%);
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-actions,
.detail-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn.primary {
  color: #ffffff;
  background: var(--amber-600);
  box-shadow: 0 16px 32px rgba(217, 119, 6, 0.32);
}

.btn.primary:hover {
  background: var(--amber-700);
  transform: translateY(-2px);
}

.btn.ghost {
  color: var(--slate-800);
  background: #ffffff;
}

.btn.glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition: 0.25s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-control.prev {
  left: 22px;
}

.hero-control.next {
  right: 22px;
}

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

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

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

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

.intro-band,
.filter-band {
  background: #ffffff;
  border-bottom: 1px solid var(--stone-200);
}

.intro-grid,
.filter-shell {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 32px;
  align-items: center;
  padding: 34px 0;
}

.intro-grid h2,
.page-hero h1,
.section-head h2,
.detail-text h2 {
  margin: 0;
  color: var(--slate-800);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  font-weight: 900;
}

.intro-grid p,
.page-hero p,
.detail-text p {
  color: var(--slate-600);
  line-height: 1.85;
}

.quick-search,
.search-panel,
.local-filter {
  display: grid;
  gap: 10px;
}

.quick-search label,
.search-panel label,
.local-filter label {
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 800;
}

.quick-search div {
  display: flex;
  gap: 10px;
}

.quick-search input,
.search-panel input,
.local-filter input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--stone-300);
  border-radius: 14px;
  padding: 0 16px;
  outline: none;
  color: var(--slate-800);
  background: #ffffff;
}

.quick-search input:focus,
.search-panel input:focus,
.local-filter input:focus {
  border-color: var(--amber-600);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

.quick-search button {
  height: 48px;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  color: #ffffff;
  background: var(--amber-600);
  font-weight: 800;
  cursor: pointer;
}

.section-block {
  padding: 58px 0;
  background: #ffffff;
}

.section-block.warm,
.page-hero.slim {
  background: linear-gradient(180deg, var(--stone-100), #ffffff);
}

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

.text-link {
  color: var(--slate-600);
  font-weight: 800;
}

.scroll-actions {
  display: flex;
  gap: 8px;
}

.scroll-actions button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--stone-200);
  border-radius: 12px;
  color: var(--slate-700);
  background: #ffffff;
  cursor: pointer;
  font-size: 24px;
}

.rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 2px 18px;
  scrollbar-width: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail-item {
  flex: 0 0 280px;
}

.rail-item.large {
  flex-basis: 360px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.video-card {
  min-width: 0;
}

.poster-link,
.wide-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition: 0.28s ease;
}

.poster-link:hover,
.wide-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--stone-200), var(--amber-50));
}

.poster-landscape {
  aspect-ratio: 16 / 9;
}

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

.poster-link:hover img,
.wide-link:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.02));
  opacity: 0;
  transition: 0.28s ease;
}

.poster-shade.strong {
  opacity: 1;
}

.poster-link:hover .poster-shade,
.wide-link:hover .poster-shade {
  opacity: 1;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%) scale(0.88);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(217, 119, 6, 0.9);
  opacity: 0;
  transition: 0.28s ease;
}

.play-mark.large {
  width: 68px;
  height: 68px;
  font-size: 22px;
}

.poster-link:hover .play-mark,
.wide-link:hover .play-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.corner-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.card-copy {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.card-copy strong,
.wide-copy strong,
.poster-caption strong {
  color: var(--slate-800);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 850;
}

.card-copy em,
.wide-copy em,
.poster-caption em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--slate-600);
  font-style: normal;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meta-row,
.card-bottom,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-row span,
.detail-meta span {
  border-radius: 10px;
  padding: 5px 8px;
  color: var(--slate-600);
  background: var(--stone-100);
  font-size: 12px;
  font-weight: 700;
}

.video-card-large .poster-link {
  border-radius: 20px;
}

.poster-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 8px;
}

.poster-caption strong,
.poster-caption em {
  color: #ffffff;
}

.card-bottom {
  justify-content: space-between;
  padding: 14px 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.pill.amber {
  color: var(--amber-700);
  background: var(--amber-50);
}

.soft-meta {
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 750;
}

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

.wide-link {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 0;
}

.poster-wide {
  aspect-ratio: 16 / 10;
  height: 100%;
}

.wide-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
}

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

.category-grid.large {
  gap: 24px;
}

.category-card {
  display: grid;
  min-height: 150px;
  align-content: end;
  gap: 12px;
  border: 1px solid var(--stone-200);
  border-radius: 22px;
  padding: 24px;
  background: radial-gradient(circle at 20% 10%, rgba(217, 119, 6, 0.16), transparent 35%), #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  transition: 0.28s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 119, 6, 0.32);
  box-shadow: var(--shadow-soft);
}

.category-card span {
  color: var(--slate-800);
  font-size: 24px;
  font-weight: 900;
}

.category-card em {
  color: var(--slate-600);
  font-style: normal;
  line-height: 1.65;
}

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

.rank-item,
.rank-row {
  display: grid;
  align-items: center;
  border: 1px solid var(--stone-200);
  border-radius: 18px;
  background: #ffffff;
  transition: 0.25s ease;
}

.rank-item {
  grid-template-columns: 54px 1fr;
  gap: 10px;
  padding: 15px;
}

.rank-item:hover,
.rank-row:hover {
  border-color: rgba(217, 119, 6, 0.32);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.rank-item span,
.rank-row span {
  color: var(--amber-700);
  font-size: 22px;
  font-weight: 900;
}

.rank-item strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--slate-800);
}

.rank-item em {
  grid-column: 2;
  color: var(--slate-500);
  font-size: 13px;
  font-style: normal;
}

.page-hero.slim {
  padding: 66px 0 54px;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--slate-700);
  background: var(--stone-100);
  font-weight: 800;
  transition: 0.25s ease;
}

.chip:hover,
.chip.current {
  color: #ffffff;
  background: var(--amber-600);
}

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

.pager-link {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 13px;
  color: var(--slate-700);
  background: var(--stone-100);
  font-weight: 800;
}

.pager-link.current,
.pager-link:hover {
  color: #ffffff;
  background: var(--amber-600);
}

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

.rank-row {
  grid-template-columns: 48px 76px minmax(140px, 1fr) minmax(220px, 2fr) auto;
  gap: 16px;
  padding: 12px 16px;
}

.rank-row img {
  width: 76px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--stone-200);
}

.rank-row strong {
  color: var(--slate-800);
  font-weight: 850;
}

.rank-row em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--slate-600);
  font-style: normal;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-row b {
  color: var(--slate-500);
  font-size: 13px;
}

.search-panel {
  max-width: 680px;
  margin: 0 auto 32px;
  padding: 22px;
  border: 1px solid var(--stone-200);
  border-radius: 22px;
  background: var(--stone-50);
}

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

.search-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid var(--stone-200);
  border-radius: 22px;
  color: var(--slate-600);
  background: var(--stone-50);
  text-align: center;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #111827;
}

.detail-bg,
.detail-shade {
  position: absolute;
  inset: 0;
}

.detail-bg {
  filter: blur(8px) scale(1.04);
  opacity: 0.55;
}

.detail-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.78));
}

.detail-shell {
  position: relative;
  z-index: 2;
  padding: 110px 0 70px;
}

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

.breadcrumb a:hover {
  color: #ffffff;
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  background: var(--stone-200);
  box-shadow: var(--shadow-strong);
}

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

.detail-copy h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.06;
  font-weight: 950;
}

.lead {
  width: min(780px, 100%);
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.8;
}

.detail-meta {
  margin-bottom: 18px;
}

.detail-meta span {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.tag-list span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
}

.player-section {
  background: #0f172a;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  box-shadow: var(--shadow-strong);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(217, 119, 6, 0.2), rgba(0, 0, 0, 0.44));
  cursor: pointer;
}

.player-cover.hidden {
  display: none;
}

.player-cover span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: var(--amber-600);
  font-size: 34px;
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.38);
}

.detail-text {
  max-width: 920px;
}

.detail-text h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.detail-text h2:first-child {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--stone-300);
  background: linear-gradient(180deg, var(--stone-100), var(--stone-200));
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding: 46px 0 34px;
}

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

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--slate-800);
}

.footer-links a {
  color: var(--slate-600);
}

.footer-links a:hover {
  color: var(--amber-700);
}

.footer-bottom {
  padding: 18px;
  border-top: 1px solid var(--stone-300);
  color: var(--slate-500);
  text-align: center;
  font-size: 14px;
}

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

@media (max-width: 1024px) {
  .card-grid.four,
  .category-grid,
  .search-results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .rank-row {
    grid-template-columns: 44px 70px 1fr;
  }

  .rank-row em,
  .rank-row b {
    grid-column: 3;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .home-hero {
    min-height: 620px;
  }

  .hero-control {
    display: none;
  }

  .intro-grid,
  .filter-shell,
  .detail-layout,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

  .card-grid.four,
  .category-grid,
  .search-results,
  .ranking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-link {
    grid-template-columns: 150px 1fr;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .section-shell,
  .footer-shell {
    width: min(100% - 22px, 1180px);
  }

  .brand {
    font-size: 18px;
  }

  .home-hero > h1 {
    top: 88px;
  }

  .hero-content {
    transform: translate(-50%, -36%);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .card-grid.four,
  .category-grid,
  .search-results {
    grid-template-columns: 1fr;
  }

  .rail-item,
  .rail-item.large {
    flex-basis: 82vw;
  }

  .wide-link {
    grid-template-columns: 1fr;
  }

  .poster-wide {
    aspect-ratio: 16 / 9;
  }

  .rank-row {
    grid-template-columns: 38px 64px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .rank-row img {
    width: 64px;
    height: 48px;
  }

  .detail-copy h1 {
    font-size: 34px;
  }

  .player-cover span {
    width: 72px;
    height: 72px;
  }
}
