*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.78);
  --bg-card-strong: rgba(15, 23, 42, 0.94);
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.22);
  --gold: #f59e0b;
  --gold-soft: rgba(245, 158, 11, 0.18);
  --gold-strong: #fbbf24;
  --red: #ef4444;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.16), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(239, 68, 68, 0.12), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(20px);
}

.header-inner,
.footer-inner,
.section-block,
.page-main,
.detail-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #1f1300;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35);
  font-size: 15px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: #cbd5e1;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: rgba(245, 158, 11, 0.18);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-slides {
  position: relative;
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 52px;
  align-items: center;
  width: 100%;
  padding: 92px max(32px, calc((100vw - 1180px) / 2)) 132px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(12px) saturate(1.2);
  opacity: 0.34;
  transform: scale(1.08);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.86)),
    radial-gradient(circle at 80% 35%, rgba(245, 158, 11, 0.28), transparent 30rem);
}

.hero-backdrop {
  position: absolute;
  inset: 12% 6% 8% auto;
  z-index: -1;
  width: 48vw;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  filter: blur(80px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

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

.hero h1,
.hero h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero h1,
.hero h2 {
  font-size: clamp(44px, 7vw, 88px);
  max-width: 820px;
}

.hero-summary {
  max-width: 620px;
  margin: 24px 0 0;
  color: #cbd5e1;
  font-size: 19px;
  line-height: 1.8;
}

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

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

.hero-tags span,
.detail-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
}

.hero-tags span {
  padding: 8px 12px;
}

.hero-actions,
.quick-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.btn,
.quick-links a,
.section-more,
.filter-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.quick-links a:hover,
.section-more:hover,
.filter-search button:hover {
  transform: translateY(-2px);
}

.btn-primary,
.quick-links a:first-child,
.filter-search button {
  border-color: transparent;
  color: #1f1300;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 16px 42px rgba(245, 158, 11, 0.25);
}

.btn-ghost,
.quick-links a,
.section-more {
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.72);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.44));
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-controls {
  position: absolute;
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-arrow,
.hero-dots button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(14px);
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
}

.hero-dots button.active {
  width: 34px;
  background: var(--gold);
}

.hero-search {
  position: absolute;
  left: max(32px, calc((100vw - 1180px) / 2));
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  z-index: 4;
  display: flex;
  max-width: 600px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(18px);
}

.hero-search input,
.filter-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
}

.hero-search input {
  padding: 0 18px;
}

.hero-search button {
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #1f1300;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  font-weight: 900;
}

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

.intro-block {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.feature-panel h2,
.content-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p,
.feature-panel p,
.page-hero p,
.content-card p {
  color: var(--muted);
  line-height: 1.85;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 20px;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-card);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  border-color: rgba(251, 191, 36, 0.42);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.36);
  transform: translateY(-6px);
}

.card-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
}

.card-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.movie-card:hover .card-poster img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

.card-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #1f1300;
  background: rgba(251, 191, 36, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-title:hover {
  color: var(--gold-strong);
}

.card-meta,
.card-desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.card-desc {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-tags {
  margin-top: 14px;
}

.card-tags span,
.detail-tags span {
  padding: 5px 9px;
  font-size: 12px;
}

.split-block {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: stretch;
}

.feature-panel,
.content-card,
.filter-panel,
.page-hero,
.player-panel,
.category-card,
.category-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.feature-panel {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  min-height: 460px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(245, 158, 11, 0.18), rgba(15, 23, 42, 0.78)),
    var(--bg-card);
}

.feature-panel .btn {
  margin-top: 22px;
}

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

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

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

.category-tile,
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 24px;
}

.category-tile::before,
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--tile-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
  opacity: 0.32;
  transition: transform 0.4s ease;
}

.category-tile::after,
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.88));
}

.category-tile:hover::before,
.category-card:hover::before {
  transform: scale(1.08);
}

.category-tile span,
.category-card span {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.category-tile strong,
.category-card p {
  display: block;
  max-width: 360px;
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 92px 54px 1fr;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  border-color: rgba(251, 191, 36, 0.42);
  transform: translateY(-3px);
}

.rank-cover img {
  width: 92px;
  height: 126px;
  object-fit: cover;
}

.rank-index {
  color: var(--gold-strong);
  font-size: 30px;
  font-weight: 900;
}

.rank-copy {
  padding-right: 16px;
}

.rank-copy a {
  font-size: 18px;
  font-weight: 900;
}

.rank-copy p,
.rank-copy span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.6;
  -webkit-box-orient: vertical;
}

.rank-copy p {
  margin: 6px 0;
  -webkit-line-clamp: 2;
}

.rank-copy span {
  font-size: 13px;
  -webkit-line-clamp: 1;
}

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

.page-hero {
  margin-top: 34px;
  padding: 48px;
  background:
    radial-gradient(circle at 16% 0%, rgba(245, 158, 11, 0.18), transparent 28rem),
    rgba(15, 23, 42, 0.72);
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 18px;
}

.filter-panel {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
}

.filter-search {
  display: flex;
  gap: 12px;
}

.filter-search input {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.45);
}

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

.filter-chips button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.8);
}

.filter-chips button.active,
.filter-chips button:hover {
  border-color: rgba(251, 191, 36, 0.45);
  color: #fff;
  background: var(--gold-soft);
}

.empty-state {
  display: none;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.72);
}

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

.detail-main {
  padding-bottom: 70px;
}

.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 42px;
  align-items: end;
  overflow: hidden;
  min-height: 560px;
  margin-top: 34px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--detail-image);
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.15);
  opacity: 0.26;
  transform: scale(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.62)),
    radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.22), transparent 24rem);
}

.detail-glow {
  position: absolute;
  right: 5%;
  top: 18%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  filter: blur(60px);
}

.detail-poster,
.detail-copy {
  position: relative;
  z-index: 2;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

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

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

.detail-meta {
  margin: 18px 0 0;
  color: #fde68a;
  font-weight: 800;
}

.detail-one-line {
  max-width: 760px;
  margin: 22px 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

.player-section {
  margin-top: 34px;
}

.player-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.movie-video,
.player-cover,
.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-video {
  z-index: 1;
  background: #000;
}

.player-cover {
  z-index: 2;
  transition: opacity 0.25s ease;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.86)),
    radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 38rem);
}

.player-cover img {
  object-fit: cover;
  filter: blur(8px) saturate(1.1);
  transform: scale(1.04);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 24px 72px rgba(245, 158, 11, 0.35);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid #1f1300;
}

.player-status {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 4;
  color: #fde68a;
  font-size: 14px;
  text-align: center;
  pointer-events: none;
}

.player-panel.is-playing .player-cover,
.player-panel.is-playing .play-button {
  opacity: 0;
  pointer-events: none;
}

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

.content-card {
  padding: 30px;
}

.content-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.65);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: var(--gold-strong);
}

.footer-inner p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

@media (max-width: 1180px) {
  .compact-grid,
  .library-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-slide {
    grid-template-columns: 1fr 340px;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.95);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: 14px;
  }

  .hero,
  .hero-slides {
    min-height: 820px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 86px;
    padding-bottom: 176px;
  }

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

  .hero-controls {
    right: 16px;
    bottom: 24px;
  }

  .hero-search {
    left: 16px;
    right: 16px;
    bottom: 84px;
  }

  .intro-block,
  .row-heading,
  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .footer-inner p {
    text-align: left;
  }

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

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

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

@media (max-width: 620px) {
  .header-inner,
  .footer-inner,
  .section-block,
  .page-main,
  .detail-main {
    width: min(100% - 24px, 1180px);
  }

  .site-logo,
  .footer-logo {
    font-size: 18px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .hero,
  .hero-slides {
    min-height: 780px;
  }

  .hero-slide {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-summary,
  .detail-one-line,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-search,
  .filter-search {
    flex-direction: column;
    border-radius: 24px;
  }

  .hero-search input {
    min-height: 44px;
  }

  .movie-grid,
  .compact-grid,
  .library-grid,
  .side-grid,
  .category-grid,
  .category-card-grid,
  .rank-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 78px 44px 1fr;
  }

  .rank-cover img {
    width: 78px;
    height: 108px;
  }

  .rank-index {
    font-size: 24px;
  }

  .page-hero,
  .detail-hero,
  .content-card,
  .feature-panel {
    padding: 24px;
  }

  .play-button {
    width: 74px;
    height: 74px;
  }
}
