:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --green: #16a34a;
  --green-dark: #047857;
  --red: #ef4444;
  --orange: #f97316;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}

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

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

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
}

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

.brand-text strong {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  color: transparent;
}

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

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

.nav-link,
.nav-more {
  color: #374151;
  font-weight: 700;
  border: 0;
  background: transparent;
  padding: 8px 0;
}

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

.nav-dropdown {
  position: relative;
}

.nav-panel {
  position: absolute;
  right: 0;
  top: 100%;
  width: 210px;
  padding: 12px;
  display: none;
  grid-template-columns: 1fr;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel {
  display: grid;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 300px;
}

.header-search input,
.mobile-search input,
.wide-search input,
.local-filter input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  padding: 11px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.wide-search input:focus,
.local-filter input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

.header-search button,
.mobile-search button,
.wide-search button,
.local-filter button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  font-size: 22px;
}

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

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

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

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

.hero-carousel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #0f172a;
}

.hero-track {
  position: relative;
  min-height: 650px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
  background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.86)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.33), transparent 32%), radial-gradient(circle at 78% 70%, rgba(22, 163, 74, 0.26), transparent 30%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
  padding: 80px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: #dcfce7;
  background: rgba(22, 163, 74, 0.22);
  border: 1px solid rgba(134, 239, 172, 0.38);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  margin: 24px 0 18px;
  color: #fff;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-tags,
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.14);
  padding: 7px 12px;
}

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

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

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.34);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #111827;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.56);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-controls button {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  font-size: 28px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  opacity: 0.55;
}

.hero-dot.is-active {
  width: 28px;
  opacity: 1;
  background: #fff;
}

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

.quick-search {
  padding-top: 36px;
  padding-bottom: 16px;
}

.search-card,
.panel-card,
.category-card,
.player-card {
  background: var(--surface);
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.search-card h2,
.section-head h2,
.panel-card h2,
.detail-text h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
}

.search-card p,
.section-head p,
.panel-card p,
.filter-result {
  margin: 8px 0 0;
  color: var(--muted);
}

.wide-search,
.local-filter {
  display: flex;
  gap: 10px;
}

.chip-row,
.sibling-cats,
.search-cats {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-row a,
.sibling-cats a,
.search-cats a {
  display: inline-flex;
  border-radius: 999px;
  padding: 9px 14px;
  color: #166534;
  background: #dcfce7;
  font-weight: 800;
}

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

.section-more {
  color: var(--green);
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111827;
}

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

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

.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 42px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 0.2s ease;
}

.movie-card:hover .play-badge {
  opacity: 1;
}

.duration-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  padding: 16px;
}

.card-meta,
.card-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.card-meta span {
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--surface-soft);
}

.card-body h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.card-body h3 a:hover {
  color: var(--green);
}

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

.card-tags span {
  color: #166534;
  background: #dcfce7;
  padding: 5px 9px;
}

.card-foot {
  justify-content: space-between;
  margin-top: 14px;
}

.card-foot a {
  color: var(--green);
}

.card-horizontal {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
}

.card-horizontal .poster-link img {
  height: 100%;
  aspect-ratio: auto;
}

.card-horizontal .card-body p {
  -webkit-line-clamp: 3;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.panel-card {
  padding: 26px;
}

.ranking-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ranking-list li a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #f9fafb;
}

.ranking-list li a:hover {
  background: #ecfdf5;
}

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

.ranking-list strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-list small {
  display: block;
  color: var(--muted);
}

.category-grid,
.category-overview {
  display: grid;
  gap: 18px;
}

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

.category-tile {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f0fdf4, #fff7ed);
  border: 1px solid #dcfce7;
}

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

.category-tile span {
  color: var(--muted);
  font-size: 13px;
}

.page-main {
  padding-bottom: 30px;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: center;
  color: #fff;
  border-radius: 34px;
  background: radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.34), transparent 34%), linear-gradient(135deg, #111827, #064e3b);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.compact-hero {
  grid-template-columns: 1fr;
}

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

.category-card {
  overflow: hidden;
}

.category-card a {
  display: block;
}

.category-posters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 12px;
  background: #111827;
}

.category-posters img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.category-copy {
  padding: 22px;
}

.category-copy h2 {
  margin: 0 0 8px;
}

.category-copy p {
  color: var(--muted);
  margin: 0 0 14px;
}

.category-copy span {
  color: var(--green);
  font-weight: 900;
}

.sibling-cats {
  margin-bottom: 24px;
}

.library-grid {
  align-items: start;
}

.filter-result {
  margin-bottom: 20px;
}

.movie-card.is-hidden {
  display: none;
}

.ranking-layout {
  grid-template-columns: 390px minmax(0, 1fr);
}

.poster-ranks li a {
  grid-template-columns: auto 68px minmax(0, 1fr) auto;
}

.poster-ranks img {
  width: 68px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-num.large {
  width: 38px;
  height: 38px;
}

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

.poster-ranks em {
  color: var(--orange);
  font-style: normal;
  font-size: 22px;
  font-weight: 900;
}

.movie-list {
  display: grid;
  gap: 18px;
}

.detail-main {
  background: #f8fafc;
}

.detail-hero {
  position: relative;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.65)), var(--detail-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 20%, rgba(22, 163, 74, 0.28), transparent 28%), radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.22), transparent 34%);
}

.detail-wrap {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

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

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

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

.detail-info h1 {
  margin: 20px 0 14px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.detail-one {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-stats span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 7px 12px;
  font-weight: 800;
}

.detail-tags {
  margin-bottom: 28px;
}

.detail-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.player-card {
  overflow: hidden;
}

.player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.player-head h2 {
  margin: 0;
  font-size: 24px;
}

.player-head span {
  color: #166534;
  background: #dcfce7;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
}

.player-shell {
  position: relative;
  background: #050505;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.player-card.is-playing .play-layer {
  opacity: 0;
}

.play-toggle {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.42);
  font-size: 34px;
  pointer-events: auto;
}

.player-status {
  margin: 0;
  padding: 16px 26px 22px;
  color: var(--muted);
}

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

.detail-text p {
  color: #374151;
  font-size: 17px;
}

.detail-text h2 + p {
  margin-top: 12px;
}

.detail-text p + h2 {
  margin-top: 28px;
}

.side-info dl {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  margin: 18px 0 0;
}

.side-info dt {
  color: var(--muted);
  font-weight: 800;
}

.side-info dd {
  margin: 0;
}

.same-category {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.same-category h3 {
  margin: 0 0 12px;
}

.same-category div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.same-category a {
  border-radius: 999px;
  background: #f3f4f6;
  padding: 7px 10px;
  color: #374151;
  font-weight: 800;
}

.site-footer {
  margin-top: 48px;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  gap: 14px;
}

.footer-brand {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: #fff;
}

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

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

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .split-section,
  .ranking-layout,
  .detail-columns {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .header-inner {
    height: 68px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .brand-text small {
    display: none;
  }

  .hero-carousel,
  .hero-track,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 0 90px;
  }

  .hero-poster {
    width: min(280px, 80vw);
    transform: none;
  }

  .search-card,
  .page-hero,
  .detail-wrap {
    grid-template-columns: 1fr;
  }

  .search-card,
  .page-hero {
    padding: 30px;
  }

  .wide-search,
  .local-filter {
    flex-direction: column;
  }

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

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

  .detail-wrap {
    padding: 44px 0;
  }

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

@media (max-width: 540px) {
  .brand-text strong {
    font-size: 19px;
  }

  .content-shell {
    width: min(100% - 22px, 1180px);
    padding: 34px 0;
  }

  .hero-copy h1,
  .detail-info h1,
  .page-hero h1 {
    letter-spacing: -0.03em;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .movie-grid,
  .movie-grid.compact {
    grid-template-columns: 1fr;
  }

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

  .card-horizontal .card-body p,
  .card-horizontal .card-tags {
    display: none;
  }

  .poster-ranks li a {
    grid-template-columns: auto 52px minmax(0, 1fr);
  }

  .poster-ranks em {
    display: none;
  }

  .poster-ranks img {
    width: 52px;
    height: 72px;
  }

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

  .play-toggle {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
