:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --teal: #0f766e;
  --surface: #ffffff;
  --bg: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --line: #e2e8f0;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

main {
  min-height: 70vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-icon,
.footer-logo span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #14b8a6);
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.28);
}

.logo-text {
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 650;
  color: #475569;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #eef2ff;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--primary);
  border-radius: 999px;
}

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

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

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 650;
  color: #475569;
}

.mobile-nav-link.is-active,
.mobile-nav-link:hover {
  background: #eff6ff;
  color: var(--primary);
}

.hero-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 45%, #0f172a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 88px;
}

.hero-track {
  position: relative;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 54px;
}

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

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-kicker,
.detail-kicker,
.page-hero span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #dbeafe;
  font-size: 13px;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy p {
  width: min(680px, 100%);
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.85;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-actions,
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--primary);
  background: #fff;
}

.hero-cover {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.hero-cover img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-cover:hover img {
  transform: scale(1.06);
}

.hero-cover span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-controls {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.hero-dot {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.feature-strip {
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

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

.feature-grid article {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.feature-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: #eff6ff;
  color: var(--primary);
  font-weight: 900;
}

.feature-grid strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.feature-grid p,
.section-head p,
.movie-card p,
.category-card small,
.category-overview-card p,
.ranking-info p,
.detail-copy p,
.detail-article p,
.prose-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section {
  padding: 74px 0;
}

.section-dark {
  background: linear-gradient(135deg, #111827, #1e293b);
  color: #fff;
}

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

.section-head h2,
.ranking-title h2,
.detail-side-card h2,
.player-card h2,
.detail-article h2,
.prose-card h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-dark .section-head p {
  color: #cbd5e1;
}

.section-more,
.text-link {
  color: var(--primary);
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.poster-link img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.movie-card:hover .poster-link img,
.mini-card:hover img,
.ranking-row:hover img {
  transform: scale(1.08);
}

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

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

.poster-year,
.poster-play {
  position: absolute;
  z-index: 2;
}

.poster-year {
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(10px);
}

.poster-play {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--primary);
  background: #fff;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
  padding: 18px;
}

.card-body h2 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: var(--primary);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card-meta span,
.detail-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 750;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

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

.category-card {
  min-height: 180px;
  display: grid;
  gap: 10px;
  align-content: end;
  padding: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  color: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.2);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -48% auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.category-card span,
.category-card strong,
.category-card small {
  position: relative;
}

.category-card span {
  font-weight: 850;
  font-size: 21px;
}

.category-card strong {
  font-size: 44px;
  line-height: 1;
}

.category-card small {
  color: rgba(255, 255, 255, 0.82);
}

.blue { background: linear-gradient(135deg, #2563eb, #0f766e); }
.teal { background: linear-gradient(135deg, #0d9488, #0369a1); }
.orange { background: linear-gradient(135deg, #ea580c, #f59e0b); }
.purple { background: linear-gradient(135deg, #7c3aed, #db2777); }
.green { background: linear-gradient(135deg, #16a34a, #059669); }
.red { background: linear-gradient(135deg, #dc2626, #f97316); }
.cyan { background: linear-gradient(135deg, #0891b2, #2563eb); }
.pink { background: linear-gradient(135deg, #db2777, #fb7185); }
.indigo { background: linear-gradient(135deg, #4f46e5, #2563eb); }
.slate { background: linear-gradient(135deg, #334155, #0f172a); }
.amber { background: linear-gradient(135deg, #d97706, #b45309); }
.emerald { background: linear-gradient(135deg, #059669, #0f766e); }

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

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  display: grid;
  gap: 10px;
  font-weight: 750;
}

.mini-card img {
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.25s ease;
}

.ranking-panel,
.prose-card,
.detail-side-card,
.player-card,
.detail-article article {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.ranking-panel {
  padding: 24px;
  align-self: start;
  position: sticky;
  top: 90px;
}

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

.ranking-title a {
  color: var(--primary);
  font-weight: 800;
}

.rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.rank-list a {
  display: grid;
  grid-template-columns: 38px 58px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.rank-no {
  color: var(--primary);
  font-weight: 900;
}

.rank-list img {
  width: 58px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-title {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}

.rank-score {
  color: #f97316;
  font-weight: 900;
  text-align: right;
}

.page-hero {
  color: #fff;
  background: radial-gradient(circle at 20% 10%, rgba(20, 184, 166, 0.5), transparent 32%), linear-gradient(135deg, #1d4ed8, #0f172a);
}

.small-hero {
  padding: 78px 0;
}

.page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.page-hero p {
  width: min(720px, 100%);
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

.library-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 180px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.library-controls label {
  display: grid;
  gap: 7px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.library-controls input,
.library-controls select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  outline: none;
  color: var(--text);
  background: #fff;
}

.library-controls input:focus,
.library-controls select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.library-controls button {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 850;
  color: #fff;
  background: var(--primary);
  cursor: pointer;
}

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

.empty-state {
  display: none;
  padding: 60px 20px;
  color: var(--muted);
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.category-overview-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.category-overview-cover img {
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.ranking-row {
  display: grid;
  grid-template-columns: 70px 150px minmax(0, 1fr) 110px;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.ranking-number {
  font-size: 22px;
  color: var(--primary);
  font-weight: 950;
}

.ranking-poster {
  overflow: hidden;
  border-radius: 14px;
}

.ranking-poster img {
  height: 96px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.ranking-info h2 {
  margin: 0 0 8px;
  font-size: 21px;
}

.ranking-score {
  text-align: right;
}

.ranking-score strong {
  display: block;
  color: #f97316;
  font-size: 30px;
}

.ranking-score span {
  color: var(--muted);
  font-size: 12px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0f172a;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.26;
  filter: blur(18px) saturate(1.2);
  transform: scale(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.72));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 34px 0 58px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 30px;
  color: #cbd5e1;
  font-size: 14px;
}

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

.detail-main-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.detail-poster img {
  height: 410px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.detail-copy {
  display: grid;
  gap: 18px;
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-copy p {
  max-width: 780px;
  color: #dbeafe;
  font-size: 18px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tags span {
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.12);
}

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

.player-card,
.detail-side-card,
.detail-article article,
.prose-card {
  padding: 24px;
}

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-element {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08));
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: var(--primary);
  background: #fff;
  font-size: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

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

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
  background: rgba(15, 23, 42, 0.84);
}

.player-message.is-visible {
  display: block;
}

.detail-side-card dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.detail-side-card dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-side-card dd {
  margin: 0;
  color: var(--text);
}

.detail-article article {
  max-width: 900px;
}

.detail-article p,
.prose-card p {
  font-size: 17px;
}

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

.prose-card {
  max-width: 900px;
}

.site-footer {
  color: #cbd5e1;
  background: #111827;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
}

.site-footer p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.75;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer a:hover {
  color: #60a5fa;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #64748b;
  text-align: center;
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .split-layout,
  .detail-content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    position: static;
  }
}

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

  .mobile-nav-toggle {
    display: block;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-inner {
    padding: 58px 0 84px;
  }

  .hero-slide,
  .detail-main-grid,
  .category-overview-card,
  .ranking-row {
    grid-template-columns: 1fr;
  }

  .hero-cover,
  .hero-cover img {
    min-height: 340px;
  }

  .feature-strip {
    margin-top: -36px;
  }

  .library-controls {
    grid-template-columns: 1fr;
  }

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

  .detail-poster img {
    height: auto;
    max-height: 520px;
  }

  .ranking-score {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .movie-grid,
  .featured-grid,
  .library-grid,
  .related-grid,
  .mini-grid,
  .category-grid,
  .feature-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-list a {
    grid-template-columns: 32px 54px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }

  .small-hero {
    padding: 54px 0;
  }

  .detail-main-grid {
    gap: 24px;
  }
}
