:root {
  --page-bg: #020617;
  --panel-bg: #0f172a;
  --panel-soft: #111c31;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(245, 158, 11, 0.26);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #f59e0b;
  --accent-strong: #d97706;
  --accent-soft: rgba(245, 158, 11, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 26rem),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.36);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.06em;
}

.brand-copy em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.desktop-nav,
.mobile-nav {
  align-items: center;
  gap: 6px;
}

.desktop-nav {
  display: flex;
}

.desktop-nav a,
.mobile-nav a {
  border-radius: 12px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a {
  padding: 10px 15px;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: #fff;
  background: rgba(51, 65, 85, 0.72);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 14px;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.65);
  transition: color 0.2s ease, background 0.2s ease;
}

.icon-button:hover {
  color: #fff;
  background: rgba(51, 65, 85, 0.82);
}

.menu-button {
  display: none;
}

.header-search,
.mobile-nav {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

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

.header-search form {
  display: flex;
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
}

.header-search input,
.toolbar input,
.search-panel-main input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  outline: none;
  color: #fff;
  background: rgba(15, 23, 42, 0.86);
}

.header-search input {
  padding: 12px 16px;
}

.header-search input:focus,
.toolbar input:focus,
.search-panel-main input:focus {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.header-search button,
.primary-button,
.ghost-button,
.quick-tags button {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-search button,
.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.24);
}

.header-search button {
  padding: 0 24px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
}

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

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(8px);
}

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

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.8s ease;
  pointer-events: none;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.78) 42%, rgba(2, 6, 23, 0.12) 100%),
    linear-gradient(0deg, #020617 0%, transparent 38%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100% - 1180px) / 2));
  width: min(650px, calc(100% - 48px));
  transform: translateY(-46%);
}

.hero-kicker,
.section-heading span,
.page-hero span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  padding: 6px 13px;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-content p {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-meta,
.detail-meta,
.hero-tags,
.tag-cloud,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-meta {
  margin-top: 24px;
}

.hero-meta span,
.detail-meta span,
.hero-tags span,
.tag-cloud span {
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

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

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

.hero-controls {
  position: absolute;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

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

.hero-controls > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.5;
}

.hero-dot.is-active {
  width: 28px;
  opacity: 1;
  background: var(--accent);
}

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

.section-deep {
  width: 100%;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.32), rgba(2, 6, 23, 0.2));
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}

.section-heading h2,
.page-hero h1,
.detail-titlebar h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p,
.detail-titlebar p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

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

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

.featured-card {
  grid-column: span 2;
  grid-row: span 2;
}

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.78));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  border-color: rgba(245, 158, 11, 0.42);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(245, 158, 11, 0.08);
  transform: translateY(-6px);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
}

.featured-card .poster-wrap {
  aspect-ratio: 16 / 10;
}

.poster-wrap img,
.category-preview img,
.tile-images img,
.detail-aside img,
.player-cover img,
.rank-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.38);
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  opacity: 0;
  color: #fff;
  background: rgba(245, 158, 11, 0.92);
  transform: translate(-50%, -50%) scale(0.84);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.poster-badge,
.poster-year {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(245, 158, 11, 0.92);
}

.poster-badge {
  top: 12px;
  right: 12px;
}

.poster-year {
  left: 12px;
  bottom: 12px;
  background: rgba(15, 23, 42, 0.82);
}

.card-info {
  display: flex;
  flex: 1;
  min-height: 158px;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.card-info strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover .card-info strong {
  color: #fbbf24;
}

.card-info span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-info em {
  margin-top: auto;
  color: #64748b;
  font-size: 12px;
  font-style: normal;
}

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

.category-tile,
.category-panel {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.78);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.category-tile {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 20px;
}

.category-tile:hover,
.category-panel:hover {
  border-color: rgba(245, 158, 11, 0.38);
  background: rgba(30, 41, 59, 0.72);
  transform: translateY(-4px);
}

.tile-images,
.category-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  min-height: 112px;
}

.tile-images img,
.category-preview img {
  border-radius: 16px;
  aspect-ratio: 2 / 3;
}

.category-tile strong,
.category-panel strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 22px;
}

.category-tile em,
.category-panel em {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.category-panel {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
}

.category-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.18), transparent 24rem);
}

.slim-hero {
  display: flex;
  align-items: center;
  padding: 78px max(16px, calc((100% - 1180px) / 2));
}

.toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.58);
}

.toolbar label {
  display: grid;
  flex: 1;
  gap: 9px;
  color: var(--soft);
  font-weight: 800;
}

.toolbar input,
.search-panel-main input {
  padding: 14px 16px;
}

.toolbar a {
  flex: none;
  border-radius: 999px;
  padding: 14px 20px;
  color: #fff;
  background: rgba(245, 158, 11, 0.16);
  font-weight: 800;
}

.search-panel-main {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 26px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.58);
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-tags button {
  border: 1px solid rgba(245, 158, 11, 0.24);
  padding: 9px 16px;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.1);
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 52px 58px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.rank-row:hover {
  border-color: rgba(245, 158, 11, 0.38);
  background: rgba(30, 41, 59, 0.78);
  transform: translateX(4px);
}

.rank-num {
  color: #fbbf24;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.rank-row img {
  width: 58px;
  height: 78px;
  border-radius: 14px;
}

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

.rank-copy strong,
.rank-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-copy strong {
  color: #fff;
  font-size: 16px;
}

.rank-copy em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.rank-arrow {
  color: #fbbf24;
  font-size: 28px;
}

.section-more {
  margin-top: 28px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-main {
  background:
    radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.12), transparent 24rem),
    linear-gradient(180deg, #020617, #0f172a 42%, #020617);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow);
}

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

.movie-video {
  object-fit: contain;
  background: #000;
}

.player-cover {
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  color: #fff;
  background: #000;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.2));
}

.player-cover span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding-left: 5px;
  background: rgba(245, 158, 11, 0.95);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.36);
  font-size: 34px;
}

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

.detail-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-aside > img {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 26px;
  aspect-ratio: 2 / 3;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.detail-actions {
  display: grid;
  gap: 12px;
}

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

.detail-titlebar {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  padding: 28px;
  background: rgba(15, 23, 42, 0.68);
}

.detail-titlebar > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #fbbf24;
  font-weight: 800;
}

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

.tag-cloud {
  margin-top: 18px;
}

.tag-cloud span {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.1);
}

.text-panel {
  margin-top: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  padding: 28px;
  background: rgba(15, 23, 42, 0.62);
}

.text-panel h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
}

.text-panel p {
  margin: 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.95;
  text-align: justify;
}

.related-section {
  padding-top: 56px;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.7), #020617);
}

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

.footer-brand {
  color: #fff;
  font-size: 22px;
}

.footer-inner p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer-inner strong,
.footer-inner a {
  display: block;
}

.footer-inner strong {
  margin-bottom: 12px;
  color: #fff;
}

.footer-inner a {
  margin-top: 9px;
  color: var(--muted);
}

.footer-inner a:hover {
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding: 18px;
  color: #64748b;
  text-align: center;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  .movie-grid,
  .featured-grid,
  .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .detail-aside {
    display: none;
  }
}

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

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    padding: 10px max(16px, calc((100% - 1180px) / 2)) 16px;
  }

  .mobile-nav a {
    display: block;
    padding: 12px 14px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .hero-carousel {
    height: 620px;
  }

  .hero-content {
    top: 55%;
  }

  .hero-controls {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .category-grid,
  .category-panels,
  .rank-list-home,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-column: auto;
    grid-row: auto;
  }

  .featured-card .poster-wrap {
    aspect-ratio: 2 / 3;
  }

  .category-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .header-inner {
    width: min(100% - 20px, 1180px);
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 13px;
  }

  .brand-copy em {
    display: none;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-content {
    width: calc(100% - 28px);
    left: 14px;
  }

  .hero-meta span,
  .hero-tags span,
  .detail-meta span,
  .tag-cloud span {
    font-size: 13px;
  }

  .content-section {
    width: min(100% - 24px, 1180px);
    padding: 52px 0;
  }

  .section-deep {
    padding-right: 12px;
    padding-left: 12px;
  }

  .card-info {
    min-height: 138px;
  }

  .rank-row {
    grid-template-columns: 42px 50px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .rank-row img {
    width: 50px;
    height: 70px;
  }

  .detail-titlebar,
  .text-panel {
    padding: 22px;
  }

  .player-cover span {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
