:root {
  --brand: #0d9488;
  --brand-dark: #0f766e;
  --brand-alt: #0891b2;
  --ink: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --soft: #f8fafc;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.16), transparent 34rem),
    linear-gradient(180deg, #f8fafc 0%, #eef6f5 48%, #ffffff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.98), rgba(8, 145, 178, 0.98));
  box-shadow: 0 14px 35px rgba(15, 118, 110, 0.22);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-logo::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background: linear-gradient(135deg, #ffffff, #ccfbf1);
  box-shadow: inset 0 0 0 8px rgba(20, 184, 166, 0.22);
}

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

.nav-link,
.nav-dropdown-menu a,
.mobile-menu a {
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 0;
}

.nav-link:hover,
.nav-link.is-active {
  color: #0f766e;
  background: rgba(255, 255, 255, 0.92);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #334155;
}

.nav-dropdown-menu a:hover {
  color: var(--brand-dark);
  background: #ecfeff;
}

.top-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(310px, 28vw);
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.top-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding-left: 10px;
}

.top-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.top-search button,
.primary-button,
.ghost-button,
.text-button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.top-search button {
  flex: 0 0 auto;
  padding: 8px 13px;
  color: var(--brand-dark);
  background: #ffffff;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

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

.mobile-menu.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #042f2e 0%, #0f766e 46%, #0891b2 100%);
}

.hero-frame {
  position: relative;
  min-height: 610px;
  padding: 58px 0 34px;
}

.hero-slide {
  position: absolute;
  inset: 58px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 430px);
  align-items: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: -58px calc(50% - 50vw) -110px;
  overflow: hidden;
  pointer-events: none;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: blur(12px) saturate(1.2);
  transform: scale(1.08);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.22), transparent 20rem),
    linear-gradient(90deg, rgba(4, 47, 46, 0.92), rgba(15, 118, 110, 0.7), rgba(8, 145, 178, 0.62));
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-alt);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.page-hero .eyebrow,
.detail-copy .eyebrow,
.topic-panel .eyebrow {
  color: #a7f3d0;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-summary {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.8;
}

.hero-tags,
.detail-tags,
.movie-tags,
.topic-links,
.hero-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

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

.hero-tags span,
.detail-tags span,
.movie-tags span,
.topic-links a,
.hero-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span,
.hero-inline-links a {
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  transition: 0.2s ease;
}

.primary-button {
  color: var(--brand-dark);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-visual {
  display: block;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(2deg);
}

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

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-arrow,
.hero-dot,
.hero-thumb {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 30px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  transition: 0.2s ease;
}

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

.hero-thumb-row {
  position: absolute;
  right: 0;
  bottom: 26px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: min(610px, 58%);
}

.hero-thumb {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 60px;
  padding: 8px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  text-align: left;
  backdrop-filter: blur(12px);
  opacity: 0.72;
  transition: 0.2s ease;
}

.hero-thumb.is-active,
.hero-thumb:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.24);
}

.hero-thumb img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-thumb span {
  overflow: hidden;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.content-card h2,
.topic-panel h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.section-heading a,
.text-button {
  color: var(--brand-dark);
  font-weight: 900;
}

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

.category-card {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: end;
  padding: 18px;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: #0f766e;
  box-shadow: var(--shadow);
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(2, 44, 34, 0.84));
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card span {
  font-size: 13px;
  font-weight: 900;
  color: #a7f3d0;
}

.category-card strong {
  margin-top: 6px;
  overflow: hidden;
  font-size: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: var(--shadow);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #99f6e4, #cffafe);
}

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

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

.poster-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 118, 110, 0.86);
  font-size: 12px;
  font-weight: 900;
}

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

.movie-meta {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.movie-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
}

.movie-card h3 a:hover,
.rank-copy h3 a:hover,
.overview-card a:hover,
.content-card a:hover {
  color: var(--brand-dark);
}

.movie-card-body p:not(.movie-meta) {
  display: -webkit-box;
  min-height: 58px;
  margin: 10px 0 14px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.movie-tags span {
  color: #0f766e;
  background: #ccfbf1;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: start;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 58px 82px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 12px;
}

.rank-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-alt));
  font-size: 18px;
  font-weight: 950;
}

.rank-thumb img {
  width: 82px;
  height: 112px;
  border-radius: 16px;
  object-fit: cover;
}

.rank-copy p,
.rank-copy span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.rank-copy h3 {
  margin: 6px 0;
  font-size: 19px;
}

.topic-panel,
.content-card,
.overview-card,
.filter-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.topic-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.94), rgba(8, 145, 178, 0.94));
  color: #ffffff;
}

.topic-panel h2 {
  color: #ffffff;
  font-size: 34px;
}

.topic-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.topic-links a {
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.16);
}

.page-hero {
  padding: 72px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.24), transparent 24rem),
    linear-gradient(135deg, #042f2e, #0f766e 48%, #0891b2);
}

.page-hero h1 {
  max-width: 880px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 64px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.hero-inline-links {
  margin-top: 24px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(130px, 190px));
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(20, 184, 166, 0.55);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.empty-state {
  padding: 28px;
  border-radius: 22px;
  color: var(--muted);
  background: #ffffff;
  text-align: center;
}

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

.overview-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
}

.overview-cover img {
  height: 240px;
  border-radius: 22px;
  object-fit: cover;
}

.overview-card h2 {
  margin: 0;
  font-size: 30px;
}

.overview-card p {
  color: var(--muted);
  line-height: 1.7;
}

.overview-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.detail-hero {
  padding: 58px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 28rem),
    linear-gradient(135deg, #042f2e, #115e59 48%, #0e7490);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-cover img {
  aspect-ratio: 2 / 3;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.35);
}

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

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

.detail-copy h1 {
  color: #ffffff;
  font-size: clamp(38px, 6vw, 72px);
}

.detail-one-line {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.8;
}

.detail-tags span {
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-meta-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.detail-meta-list div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
}

.detail-meta-list dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.detail-meta-list dd {
  margin: 6px 0 0;
  font-weight: 900;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #020617;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.28);
}

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

.player-poster-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 14px;
  width: 100%;
  color: #ffffff;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(20, 184, 166, 0.24), transparent 16rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.36), rgba(2, 6, 23, 0.74));
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.movie-player.is-playing .player-poster-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-ring {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.play-ring span {
  transform: translateX(3px);
  font-size: 36px;
}

.player-poster-overlay strong {
  max-width: min(720px, 86%);
  font-size: clamp(22px, 4vw, 42px);
  text-align: center;
}

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

.content-card {
  padding: 28px;
}

.content-card h2 {
  font-size: 32px;
}

.content-card p {
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
}

.side-card {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 96px;
}

.side-card a {
  padding: 13px 14px;
  border-radius: 16px;
  color: var(--brand-dark);
  background: #ecfeff;
  font-weight: 900;
}

.site-footer {
  padding: 42px 0;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  color: #ffffff;
  font-size: 20px;
}

.footer-inner p {
  max-width: 620px;
  margin: 8px 0 0;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .main-nav,
  .top-search {
    display: none;
  }

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

  .hero-frame {
    min-height: 740px;
  }

  .hero-slide {
    inset: 36px 0 156px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-visual {
    max-width: 280px;
    transform: rotate(0deg);
  }

  .hero-thumb-row {
    left: 0;
    width: 100%;
    grid-template-columns: repeat(5, 1fr);
    overflow-x: auto;
  }

  .hero-thumb {
    min-width: 130px;
  }

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

  .two-column-section,
  .detail-content-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .topic-panel,
  .side-card {
    position: static;
  }

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

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

@media (max-width: 640px) {
  .container-wide {
    width: min(100% - 22px, 1180px);
  }

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

  .hero-frame {
    min-height: 760px;
    padding-top: 36px;
  }

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

  .hero-controls {
    bottom: 92px;
  }

  .hero-thumb-row {
    bottom: 16px;
  }

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

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

  .category-grid,
  .movie-grid,
  .filter-panel,
  .overview-card {
    grid-template-columns: 1fr;
  }

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

  .rank-number {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 15px;
  }

  .rank-thumb img {
    width: 66px;
    height: 94px;
  }

  .detail-cover {
    max-width: 240px;
  }

  .detail-meta-list {
    grid-template-columns: 1fr;
  }

  .player-shell {
    border-radius: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
