:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.72);
  --line: rgba(148, 163, 184, 0.18);
  --text: #ffffff;
  --muted: #94a3b8;
  --muted-2: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --orange: #fb923c;
  --green: #34d399;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(34, 211, 238, 0.16),
      transparent 32rem
    ),
    radial-gradient(
      circle at 80% 12%,
      rgba(59, 130, 246, 0.18),
      transparent 34rem
    ),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: var(--text);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  max-width: 1280px;
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(34, 211, 238, 0.25);
}

.brand-name {
  font-size: 22px;
  line-height: 1;
  background: linear-gradient(90deg, var(--cyan), #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 650;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
}

.header-search input {
  width: 180px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  padding: 8px 10px;
}

.header-search button,
.primary-btn,
.ghost-btn,
.section-link,
.hero-search button {
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.header-search button,
.primary-btn,
.hero-search button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.26);
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
}

.ghost-btn,
.section-link {
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.58);
}

.header-search button:hover,
.primary-btn:hover,
.ghost-btn:hover,
.hero-search button:hover,
.section-link:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 24px 22px;
  background: rgba(2, 6, 23, 0.98);
}

.mobile-nav.is-open {
  display: grid;
  gap: 14px;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 68px 24px 48px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(34, 211, 238, 0.18),
      transparent 24rem
    ),
    radial-gradient(
      circle at 75% 35%,
      rgba(59, 130, 246, 0.22),
      transparent 28rem
    ),
    linear-gradient(180deg, rgba(2, 6, 23, 0.24), #020617 92%);
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-slide {
  position: relative;
  display: none;
  grid-template-columns: minmax(0, 1fr) 0.92fr;
  align-items: center;
  gap: 48px;
  min-height: 560px;
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.78)),
    var(--hero-image) center / cover;
  box-shadow: var(--shadow);
}

.hero-slide.active {
  display: grid;
  animation: fadeIn 0.55s ease both;
}

.hero-media {
  position: relative;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.36), transparent 55%);
}

.hero-copy {
  max-width: 640px;
}

.hero-kicker,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h2,
.page-hero h1,
.quick-search-card h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-copy p,
.page-hero p,
.quick-search-card p {
  margin: 22px 0 0;
  color: var(--muted-2);
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.tag-cloud,
.tag-line,
.detail-meta,
.meta-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

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

.hero-tags span,
.tag-cloud span,
.tag-line span,
.detail-meta span,
.category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(14, 165, 233, 0.13);
  border: 1px solid rgba(34, 211, 238, 0.22);
  font-size: 13px;
}

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

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
}

.hero-prev,
.hero-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
}

.hero-dot.active {
  width: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.quick-search-wrap,
.page-main,
.detail-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.quick-search-card {
  transform: translateY(-34px);
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-search,
.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 26px;
}

.hero-search input,
.filter-panel input,
.filter-panel select {
  min-height: 48px;
  width: 100%;
  color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.54);
  outline: none;
  padding: 0 16px;
}

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

.chip-row {
  margin-top: 24px;
}

.category-chip:hover {
  color: #ffffff;
  background: rgba(14, 165, 233, 0.26);
}

.content-section {
  margin: 72px auto 0;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.035em;
}

.section-head p {
  max-width: 700px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-link {
  flex: 0 0 auto;
  padding: 11px 18px;
}

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

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

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

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

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  transform: translateZ(0);
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 54%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

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

.card-badge,
.score-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.card-badge {
  left: 12px;
}

.score-badge {
  right: 12px;
}

.play-hover {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

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

.card-content {
  padding: 14px 2px 0;
}

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

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

.meta-row {
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.meta-row span + span::before {
  content: "·";
  margin-right: 8px;
  color: rgba(148, 163, 184, 0.5);
}

.card-content p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.tag-line span {
  padding: 4px 8px;
  min-height: 24px;
  color: #bae6fd;
  font-size: 12px;
}

.compact .card-content h3 {
  font-size: 16px;
}

.compact .card-content p,
.compact .tag-line {
  display: none;
}

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

.rank-panel {
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: var(--shadow);
}

.sticky-panel {
  position: sticky;
  top: 96px;
}

.rank-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.rank-title span {
  font-size: 22px;
  font-weight: 850;
}

.rank-title a {
  color: var(--cyan);
  font-weight: 750;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 38px 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.42);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.rank-item:hover {
  transform: translateX(3px);
  background: rgba(14, 165, 233, 0.12);
}

.rank-no {
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.rank-item img {
  width: 64px;
  height: 86px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.rank-copy strong {
  font-size: 15px;
}

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

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

.category-card,
.category-overview-card {
  min-height: 158px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(59, 130, 246, 0.08)),
    rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

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

.category-card span,
.category-title-link span {
  display: block;
  font-size: 22px;
  font-weight: 850;
}

.category-card p,
.category-overview-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-title-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.category-title-link strong {
  color: var(--cyan);
  font-size: 14px;
}

.sample-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.sample-links a {
  color: #e0f2fe;
  font-size: 13px;
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(34, 211, 238, 0.18),
      transparent 22rem
    ),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.84));
  box-shadow: var(--shadow);
}

.page-hero p {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #bae6fd;
}

.filter-panel {
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(140px, 190px));
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
}

.hidden-card {
  display: none;
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 24px;
  background:
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.98),
      rgba(2, 6, 23, 0.72),
      rgba(2, 6, 23, 0.98)
    ),
    var(--detail-image) center / cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #020617);
  pointer-events: none;
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) 0.72fr;
  gap: 36px;
  align-items: center;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.62);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.play-mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.22));
}

.play-mask.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.play-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 44px rgba(14, 165, 233, 0.35);
}

.play-mask strong {
  font-size: 18px;
}

.detail-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.detail-copy .lead {
  margin: 18px 0 0;
  color: var(--muted-2);
  line-height: 1.8;
  font-size: 18px;
}

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

.detail-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.detail-content {
  max-width: 1280px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.article-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.article-card p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.9;
}

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

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

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px;
}

.footer-brand p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
}

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

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

.copyright {
  margin: 28px 0 0;
  color: #64748b;
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .split-layout,
  .detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .rank-panel,
  .sticky-panel {
    position: static;
  }

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

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

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

  .hero-carousel {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 22px;
  }

  .hero-media {
    height: 360px;
  }

  .quick-search-card,
  .page-hero {
    padding: 26px;
  }

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

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

@media (max-width: 640px) {
  .site-header-inner {
    height: 66px;
    padding: 0 16px;
  }

  .brand-name {
    font-size: 18px;
  }

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

  .hero-carousel,
  .quick-search-wrap,
  .page-main,
  .detail-hero,
  .detail-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy h2,
  .page-hero h1,
  .quick-search-card h1 {
    font-size: 34px;
  }

  .hero-copy p,
  .page-hero p,
  .quick-search-card p,
  .detail-copy .lead {
    font-size: 16px;
  }

  .hero-media {
    height: 300px;
  }

  .hero-actions,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .all-grid,
  .compact-grid,
  .featured-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .card-content h3 {
    font-size: 16px;
  }

  .card-content p,
  .tag-line {
    display: none;
  }

  .rank-item {
    grid-template-columns: 30px 54px minmax(0, 1fr);
  }

  .rank-item img {
    width: 54px;
    height: 76px;
  }

  .detail-hero {
    padding-top: 28px;
  }

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

  .detail-copy h1 {
    font-size: 32px;
  }

  .article-card {
    padding: 22px;
  }
}
