:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-soft: #111c32;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(56, 189, 248, 0.18);
  --line-soft: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --blue: #2563eb;
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.16);
  --gold: #fbbf24;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.26), transparent 32rem),
    radial-gradient(circle at 90% 8%, rgba(34, 211, 238, 0.18), transparent 28rem),
    linear-gradient(180deg, #0b1120 0%, var(--bg) 42%, #09111f 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.88), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.24);
}

.header-inner {
  width: min(1240px, calc(100% - 28px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.22);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08) rotate(-4deg);
}

.brand-text,
.footer-logo {
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #60a5fa, #67e8f9, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header-search {
  flex: 1;
  max-width: 420px;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
}

.header-search input,
.mobile-search input,
.inline-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.header-search input {
  padding: 8px 14px;
}

.header-search button,
.mobile-search button,
.inline-search button {
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.header-search button {
  padding: 8px 15px;
}

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

.nav-link {
  color: var(--muted-strong);
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

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

.category-strip {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-pill,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.48);
  transition: all 0.22s ease;
}

.category-pill {
  padding: 7px 14px;
  font-size: 0.88rem;
}

.category-pill:hover,
.filter-chip:hover,
.filter-chip.is-active {
  color: white;
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(37, 99, 235, 0.28);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  color: white;
  background: rgba(15, 23, 42, 0.7);
}

.mobile-panel {
  display: none;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--line-soft);
  background: rgba(15, 23, 42, 0.98);
}

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

.mobile-search,
.inline-search {
  display: flex;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.62);
  padding: 6px;
}

.mobile-search input,
.inline-search input {
  padding: 9px 12px;
}

.mobile-search button,
.inline-search button {
  padding: 9px 14px;
}

.mobile-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted-strong);
}

.mobile-link:hover {
  color: var(--cyan);
  background: rgba(30, 41, 59, 0.76);
}

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

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

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

.hero-bg,
.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.hero-overlay,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.76) 42%, rgba(2, 6, 23, 0.28) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 1) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 52px;
  padding: 88px 0 76px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 12px 0 8px;
  max-width: 860px;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
  color: #e0f2fe;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
  max-width: 760px;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

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

.hero-tags {
  margin: 24px 0 0;
}

.hero-tags span,
.detail-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #cffafe;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(8, 47, 73, 0.5);
}

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

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.35);
}

.ghost-button,
.section-more {
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.56);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.55);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

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

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

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

.hero-dot {
  width: 34px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dot.is-active {
  width: 58px;
  background: var(--cyan);
}

.quick-categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: -36px;
  position: relative;
  z-index: 6;
}

.category-tile,
.category-overview-card,
.ranking-panel,
.detail-side,
.detail-article,
.movie-player {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.86));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}

.category-tile {
  padding: 18px;
  min-height: 116px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.category-tile span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-weight: 800;
}

.category-tile strong {
  display: block;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 500;
}

.category-tile:hover,
.category-overview-card:hover,
.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.42);
}

.content-section {
  margin-top: 68px;
}

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

.section-heading h2,
.panel-title h2,
.detail-article h2,
.detail-side h2 {
  margin: 6px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.section-heading p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
}

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

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

.movie-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 220px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x proximity;
}

.movie-row .movie-card {
  scroll-snap-align: start;
}

.movie-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.8);
}

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

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

.card-badge,
.card-score {
  position: absolute;
  top: 10px;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.card-badge {
  left: 10px;
  color: #cffafe;
  background: rgba(8, 47, 73, 0.72);
}

.card-score {
  right: 10px;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, var(--gold));
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

.card-meta span {
  min-width: 0;
}

.movie-card h3 {
  margin: 8px 0 6px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.movie-card h3 a:hover {
  color: var(--cyan);
}

.movie-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.movie-card.compact .movie-card-body {
  padding: 13px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

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

.ranking-panel {
  position: sticky;
  top: 110px;
  padding: 22px;
}

.rank-mini-list,
.ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rank-mini-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.rank-mini-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.rank-mini-list span,
.ranking-number,
.category-index {
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.rank-mini-list a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-mini-list a:hover,
.ranking-content a:hover {
  color: var(--cyan);
}

.rank-mini-list em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.page-main {
  padding: 46px 0 76px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(8, 47, 73, 0.28)),
    rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
  padding: clamp(30px, 5vw, 58px);
}

.compact-hero h1,
.category-hero h1 {
  margin: 10px 0 12px;
}

.inline-search {
  max-width: 680px;
  margin-top: 26px;
}

.filter-bar {
  margin-top: 20px;
}

.filter-chip {
  padding: 8px 14px;
}

.category-overview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.category-overview-card {
  padding: 22px;
  min-height: 220px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-overview-card h2 {
  margin: 12px 0 8px;
  font-size: 1.35rem;
}

.category-overview-card p {
  color: var(--muted);
  margin: 0 0 20px;
}

.category-overview-card strong {
  color: var(--cyan);
}

.catalog-grid .movie-card.is-hidden,
.empty-state,
.empty-state.is-hidden {
  display: none;
}

.empty-state.is-visible {
  display: block;
  color: var(--muted-strong);
  text-align: center;
  padding: 46px 0;
}

.ranking-page {
  margin-top: 28px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 20px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
}

.ranking-poster {
  overflow: hidden;
  border-radius: 16px;
}

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

.ranking-content h2 {
  margin: 4px 0 8px;
  font-size: 1.35rem;
}

.ranking-content p {
  margin: 0 0 12px;
  color: var(--muted-strong);
}

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

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

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  min-height: 560px;
  padding: 70px 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 18px;
}

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

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

.movie-player {
  position: relative;
  overflow: hidden;
  background: #020617;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(2, 6, 23, 0.64);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) blur(1px);
}

.player-play-button {
  position: relative;
  z-index: 3;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  color: white;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.42);
  transition: transform 0.22s ease;
}

.player-play-button:hover {
  transform: scale(1.08);
}

.player-status {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 4;
  color: #fee2e2;
  font-size: 0.92rem;
}

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

.detail-article,
.detail-side {
  padding: 26px;
}

.detail-article h2,
.detail-side h2 {
  margin-top: 0;
}

.detail-article h2:not(:first-child) {
  margin-top: 28px;
}

.detail-article p {
  color: var(--muted-strong);
  margin: 12px 0 0;
  font-size: 1.03rem;
}

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

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

.detail-side dt {
  color: var(--muted);
}

.detail-side dd {
  margin: 0;
  color: var(--muted-strong);
}

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

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 34px;
  padding: 38px 0;
}

.footer-inner p {
  max-width: 680px;
  color: var(--muted);
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-content: start;
}

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

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

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 999px;
  color: white;
  background: rgba(15, 23, 42, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .quick-categories,
  .category-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header-inner {
    min-height: 64px;
  }

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

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

  .hero-poster {
    max-width: 220px;
    transform: none;
  }

  .quick-categories,
  .category-overview,
  .movie-grid,
  .featured-grid,
  .stack-list,
  .split-layout,
  .detail-hero-inner,
  .detail-content-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    position: static;
  }

  .detail-hero-inner {
    gap: 26px;
  }

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

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

@media (max-width: 540px) {
  .container,
  .header-inner,
  .category-strip,
  .footer-inner {
    width: min(100% - 22px, 1180px);
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 2.25rem;
  }

  .hero-copy h2 {
    font-size: 1.65rem;
  }

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

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

  .movie-card h3 {
    font-size: 0.98rem;
  }

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

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

  .page-hero,
  .detail-article,
  .detail-side {
    border-radius: 22px;
    padding: 22px;
  }

  .player-play-button {
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
  }
}
