:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: #111827;
  --line: #1e293b;
  --muted: #94a3b8;
  --text: #f8fafc;
  --blue: #2563eb;
  --blue-soft: #60a5fa;
  --cyan: #67e8f9;
  --green: #22c55e;
  --yellow: #facc15;
  --red: #ef4444;
  --purple: #a855f7;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.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.98), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.5);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong,
.footer-brand {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--blue-soft), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #dbeafe;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-soft);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  padding: 12px;
  display: none;
  grid-template-columns: 1fr;
  gap: 4px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
}

.dropdown-panel a {
  padding: 9px 10px;
  border-radius: 10px;
  color: #cbd5e1;
}

.dropdown-panel a:hover {
  color: white;
  background: rgba(37, 99, 235, 0.24);
}

.nav-dropdown:hover .dropdown-panel,
.dropdown-panel.open {
  display: grid;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(310px, 28vw);
}

.header-search input,
.big-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  color: white;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  outline: none;
  background: rgba(15, 23, 42, 0.74);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.big-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(96, 165, 250, 0.85);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.header-search button,
.big-search button,
.primary-button,
.ghost-button {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
}

.header-search button:hover,
.big-search button:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(15, 23, 42, 0.72);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.mobile-panel a {
  display: block;
  padding: 12px 4px;
  color: #dbeafe;
}

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

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

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

.hero-slide > img,
.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.36), rgba(2, 6, 23, 0.95));
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.48), rgba(2, 6, 23, 0.08)),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.72) 35%, rgba(2, 6, 23, 0.05) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  padding-top: 40px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker.red {
  background: var(--red);
}

.section-kicker.green {
  background: var(--green);
}

.section-kicker.yellow {
  color: #111827;
  background: var(--yellow);
}

.section-kicker.purple {
  background: var(--purple);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 660px;
  margin: 0 0 24px;
  color: #d1d5db;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.detail-meta span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #eff6ff;
  background: rgba(15, 23, 42, 0.62);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.42);
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

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

.hero-dot.active {
  width: 36px;
  background: var(--blue-soft);
}

.search-hero {
  padding: 42px 0;
  background: linear-gradient(180deg, #020617, #0f172a);
}

.search-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.search-hero h2,
.page-hero h1,
.section-head h2,
.detail-info h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.search-hero p,
.page-hero p,
.category-overview-card p,
.category-card p,
.detail-info p,
.detail-content p {
  color: var(--muted);
}

.big-search {
  display: flex;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.74);
  box-shadow: var(--shadow);
}

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

.dark-gradient {
  background: linear-gradient(180deg, #020617, #0f172a);
}

.slate-panel {
  background: #0f172a;
}

.ranking-strip {
  background: linear-gradient(180deg, #0f172a, #020617);
}

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

.compact-head {
  margin-bottom: 18px;
}

.section-head a {
  color: var(--blue-soft);
  font-weight: 700;
}

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card article {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius);
  background: #0f172a;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover article {
  border-color: rgba(96, 165, 250, 0.65);
  box-shadow: 0 22px 58px rgba(37, 99, 235, 0.18);
  transform: translateY(-5px);
}

.poster-frame {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.42), rgba(15, 23, 42, 1));
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.2s ease;
}

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 58%);
}

.poster-badge,
.poster-genre {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.poster-badge {
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  background: rgba(37, 99, 235, 0.9);
}

.poster-genre {
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  background: rgba(0, 0, 0, 0.62);
}

.card-body {
  padding: 16px;
}

.card-body h2 {
  min-height: 52px;
  margin: 0 0 8px;
  display: -webkit-box;
  overflow: hidden;
  color: white;
  font-size: 17px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-body p {
  min-height: 48px;
  margin: 0 0 12px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #bfdbfe;
  font-size: 12px;
  background: rgba(30, 41, 59, 0.95);
}

.large-tags span {
  font-size: 13px;
}

.card-meta {
  justify-content: space-between;
  margin-top: 14px;
  color: #64748b;
  font-size: 12px;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius);
  background: #0f172a;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.category-card {
  min-height: 220px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

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

.category-card span,
.category-card strong,
.category-card p {
  position: relative;
  z-index: 2;
}

.category-card span,
.category-overview-card span {
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.category-card strong {
  margin: 8px 0;
  color: white;
  font-size: 22px;
}

.category-card p {
  margin: 0;
  font-size: 14px;
}

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

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

.rank-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 56px 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.92);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  border-color: rgba(96, 165, 250, 0.62);
  transform: translateX(4px);
}

.rank-number {
  color: var(--yellow);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.rank-row img {
  width: 70px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.44), #0f172a);
}

.rank-info {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.rank-info strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 17px;
}

.rank-info em {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-type {
  padding: 6px 10px;
  border-radius: 999px;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 800;
  background: rgba(37, 99, 235, 0.2);
}

.page-hero {
  position: relative;
  padding: 86px 0 58px;
  background:
    radial-gradient(circle at 20% 10%, rgba(37, 99, 235, 0.32), transparent 36%),
    radial-gradient(circle at 84% 8%, rgba(168, 85, 247, 0.24), transparent 34%),
    linear-gradient(180deg, #020617, #0f172a);
}

.compact-hero {
  padding-top: 64px;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #cbd5e1;
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--blue-soft);
}

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

.category-overview-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 16px;
}

.category-overview-image {
  overflow: hidden;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.44), #0f172a);
}

.category-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overview-card h2 {
  margin: 8px 0 8px;
}

.category-overview-card p {
  margin: 0;
  font-size: 14px;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 180px;
  gap: 14px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.empty-state {
  display: none;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
  background: #0f172a;
}

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

.detail-hero {
  position: relative;
  min-height: 620px;
  padding: 34px 0 72px;
  overflow: hidden;
  background: #020617;
}

.detail-backdrop {
  filter: blur(2px) saturate(1.1);
  transform: scale(1.02);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.36)),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.62) 44%, rgba(2, 6, 23, 0.24) 100%);
}

.detail-breadcrumbs {
  margin-top: 24px;
}

.detail-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 24px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.44), #0f172a);
  box-shadow: var(--shadow);
}

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

.detail-info p {
  max-width: 760px;
  font-size: 18px;
}

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

.player-section {
  background: #020617;
  padding-top: 54px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 24px;
  background: black;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.player-overlay-button {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  border: 0;
  color: white;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.16), rgba(0, 0, 0, 0.34)),
    rgba(0, 0, 0, 0.28);
}

.player-overlay-button.is-hidden {
  display: none;
}

.play-circle {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 40px rgba(96, 165, 250, 0.48);
}

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

.detail-content article,
.detail-content aside {
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.92);
}

.detail-content h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-content p {
  margin: 0 0 26px;
  font-size: 16px;
}

.detail-content dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 14px;
  margin: 0;
}

.detail-content dt {
  color: #64748b;
}

.detail-content dd {
  margin: 0;
  color: #e2e8f0;
}

.site-footer {
  padding: 52px 0 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.6fr;
  gap: 34px;
}

.footer-grid p {
  max-width: 460px;
  color: var(--muted);
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

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

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

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: #64748b;
  font-size: 14px;
}

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

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

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

  .detail-top,
  .detail-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    height: 64px;
  }

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

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

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text em {
    display: none;
  }

  .hero-carousel {
    height: 72vh;
    min-height: 540px;
  }

  .hero-copy {
    padding: 0 12px;
  }

  .hero-arrow {
    display: none;
  }

  .search-hero-inner,
  .footer-grid,
  .section-head,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .big-search {
    display: grid;
  }

  .four-columns,
  .three-columns,
  .category-grid,
  .category-overview-grid,
  .rank-grid {
    grid-template-columns: 1fr;
  }

  .poster-frame {
    height: 230px;
  }

  .category-overview-card {
    grid-template-columns: 100px 1fr;
  }

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

  .rank-type {
    display: none;
  }

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

  .detail-hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .detail-info p {
    font-size: 16px;
  }

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

  .footer-bottom {
    display: grid;
  }
}
