:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --ink: #141722;
  --muted: #667085;
  --soft: #e5e7eb;
  --line: #eef0f5;
  --brand: #e11d48;
  --brand-deep: #b91c1c;
  --brand-soft: #fff1f2;
  --gold: #f59e0b;
  --shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
  --radius: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(16px);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #be123c);
  box-shadow: 0 14px 28px rgba(225, 29, 72, 0.35);
}

.logo-text {
  font-size: 1.16rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link,
.mobile-link {
  color: #334155;
  font-weight: 700;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 9px 12px;
  font-size: 0.94rem;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--brand);
  background: var(--brand-soft);
}

.header-search,
.mobile-search,
.page-filter,
.quick-search-panel form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 6px;
}

.header-search input,
.mobile-search input,
.page-filter input,
.quick-search-panel input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  padding: 9px 10px 9px 14px;
}

.header-search input {
  width: 220px;
}

.header-search button,
.mobile-search button,
.page-filter button,
.quick-search-panel button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #be123c);
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(225, 29, 72, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 14px;
  background: #f1f5f9;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
}

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

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

.mobile-search {
  margin-bottom: 12px;
}

.mobile-search input {
  flex: 1;
}

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

.mobile-link {
  padding: 11px 14px;
  background: #f8fafc;
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #030712;
  isolation: isolate;
}

.hero-track {
  min-height: 640px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(239, 68, 68, 0.35), transparent 32%),
    linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(3, 7, 18, 0.68) 44%, rgba(3, 7, 18, 0.18)),
    linear-gradient(0deg, rgba(3, 7, 18, 0.88), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 120px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #fecdd3;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-desc {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-tags,
.tag-row,
.card-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

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

.hero-tags span,
.tag-row span,
.card-meta span,
.rank-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

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

.primary-btn,
.ghost-btn,
.section-more,
.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  padding: 13px 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #be123c);
  box-shadow: 0 18px 34px rgba(225, 29, 72, 0.38);
}

.ghost-btn {
  padding: 12px 20px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.rank-action:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(3, 7, 18, 0.52);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 78px;
  z-index: 5;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-category-strip {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 5;
  width: min(var(--container), calc(100% - 32px));
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.hero-category-strip a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
  font-size: 0.88rem;
}

.quick-search-panel,
.content-section,
.category-cloud,
.page-main,
.site-footer .footer-inner,
.footer-bottom {
  width: min(var(--container), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.quick-search-panel {
  margin-top: -34px;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 22px;
  align-items: center;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-search-panel h2,
.section-heading h2,
.page-hero h1,
.detail-info h1,
.player-section h2,
.detail-text h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.quick-search-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.quick-search-panel p,
.section-heading p,
.page-hero p,
.category-card p,
.card-body p,
.rank-body p,
.detail-lead,
.detail-text p,
.footer-brand p {
  color: var(--muted);
}

.quick-search-panel form input {
  flex: 1;
}

.content-section,
.category-cloud {
  margin-top: 56px;
}

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

.section-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.section-heading p {
  margin: 7px 0 0;
}

.section-more {
  padding: 10px 16px;
  color: var(--brand);
  background: var(--brand-soft);
}

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

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

.movie-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 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(225, 29, 72, 0.22);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.14);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #7f1d1d);
}

.compact-card .card-cover {
  aspect-ratio: 3 / 4;
}

.card-cover img,
.rank-cover img,
.detail-poster img,
.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .card-cover img,
.rank-item:hover .rank-cover img {
  transform: scale(1.08);
}

.play-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(225, 29, 72, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.card-body {
  padding: 16px;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
}

.card-body h2 {
  margin: 8px 0 6px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.compact-card .card-body h2 {
  font-size: 1rem;
}

.card-body h2 a:hover,
.rank-body h2 a:hover,
.breadcrumb a:hover {
  color: var(--brand);
}

.card-body p {
  min-height: 54px;
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.compact-card .card-body p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta span,
.rank-meta span,
.tag-row span {
  color: #64748b;
  background: #f1f5f9;
}

.tag-row {
  margin-top: 10px;
}

.tag-row span {
  color: #9f1239;
  background: #fff1f2;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 52px 96px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.rank-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-weight: 900;
}

.rank-cover {
  width: 96px;
  height: 72px;
  overflow: hidden;
  border-radius: 14px;
  background: #111827;
}

.rank-body h2 {
  margin: 0 0 5px;
  font-size: 1.05rem;
}

.rank-body p {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.rank-action {
  padding: 9px 14px;
  color: #ffffff;
  background: #0f172a;
}

.category-pill-grid,
.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-pill-grid a {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #e11d48);
  font-size: 1.16rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.page-main {
  padding: 34px 0 64px;
}

.page-hero {
  overflow: hidden;
  position: relative;
  margin-bottom: 34px;
  padding: 48px;
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #be123c);
  box-shadow: var(--shadow);
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.05;
}

.channel-hero::after,
.small-hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.from-red {
  background: linear-gradient(135deg, #991b1b, #e11d48);
}

.from-orange {
  background: linear-gradient(135deg, #9a3412, #f97316);
}

.from-blue {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.from-violet {
  background: linear-gradient(135deg, #581c87, #7c3aed);
}

.from-slate {
  background: linear-gradient(135deg, #0f172a, #475569);
}

.from-pink {
  background: linear-gradient(135deg, #9d174d, #ec4899);
}

.from-green {
  background: linear-gradient(135deg, #14532d, #22c55e);
}

.from-cyan {
  background: linear-gradient(135deg, #164e63, #06b6d4);
}

.page-filter {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.95);
}

.page-filter input {
  flex: 1;
}

.single-filter {
  max-width: 760px;
}

.full-list-section {
  margin-top: 0;
}

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

.category-card {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.category-card-link {
  min-height: 290px;
  display: grid;
  grid-template-rows: 150px 1fr;
  color: #ffffff;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  opacity: 0.86;
}

.category-card-body {
  padding: 24px;
}

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

.category-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
}

.category-card span {
  font-weight: 900;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.detail-main {
  max-width: none;
}

.detail-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.detail-info h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.04;
}

.detail-lead {
  max-width: 840px;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

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

.detail-meta-grid div {
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.detail-meta-grid span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.detail-meta-grid strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.player-section {
  margin-top: 34px;
  padding: 28px;
  border-radius: 28px;
  background: #030712;
  box-shadow: var(--shadow);
}

.player-section h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #000000;
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.22));
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 900;
}

.player-play-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #be123c);
  box-shadow: 0 20px 44px rgba(225, 29, 72, 0.42);
  font-size: 2.1rem;
}

.player-shell.is-playing .player-overlay {
  display: none;
}

.detail-text {
  padding: 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.detail-text h2 {
  margin-top: 0;
  font-size: 1.6rem;
}

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

.detail-text p {
  font-size: 1.02rem;
}

.site-footer {
  margin-top: 70px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  padding: 46px 0 34px;
}

.footer-logo {
  color: #ffffff;
}

.footer-brand p {
  max-width: 520px;
  color: #94a3b8;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
}

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

.footer-bottom {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  font-size: 0.92rem;
}

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

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

  .header-search {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

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

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

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

  .hero-content {
    padding-top: 72px;
  }

  .hero-arrow {
    display: none;
  }

  .quick-search-panel {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

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

  .rank-item {
    grid-template-columns: 40px 82px 1fr;
  }

  .rank-action {
    grid-column: 3;
    justify-self: start;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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

  .logo-text {
    font-size: 1rem;
  }

  .hero-content,
  .quick-search-panel,
  .content-section,
  .category-cloud,
  .page-main,
  .site-footer .footer-inner,
  .footer-bottom {
    width: min(100% - 20px, var(--container));
  }

  .hero-content h1 {
    font-size: 2.45rem;
  }

  .hero-desc {
    font-size: 0.98rem;
  }

  .hero-category-strip {
    width: calc(100% - 20px);
    border-radius: 22px;
  }

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

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

  .page-hero {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .rank-item {
    grid-template-columns: 36px 76px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .rank-cover {
    width: 76px;
    height: 62px;
  }

  .rank-body p,
  .rank-meta {
    display: none;
  }

  .detail-hero,
  .player-section,
  .detail-text {
    padding: 18px;
    border-radius: 20px;
  }

  .detail-info h1 {
    font-size: 2rem;
  }

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

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