:root {
  color-scheme: light;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-850: #132034;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
  --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  --radius: 24px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--slate-800);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 42%, #ffffff 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.28);
}

.header-inner,
.nav-inner,
.footer-inner,
.section-wrap,
.page-hero,
.detail-hero,
.breadcrumb,
.home-search-band {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.35);
}

.top-search {
  width: min(520px, 42vw);
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(51, 65, 85, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.12);
}

.top-search input,
.mobile-nav input,
.big-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  padding: 12px 18px;
}

.top-search input::placeholder,
.mobile-nav input::placeholder,
.big-search input::placeholder {
  color: rgba(226, 232, 240, 0.68);
}

.top-search button,
.mobile-nav button,
.big-search button {
  border: 0;
  color: var(--slate-950);
  background: var(--amber-500);
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.primary-nav {
  border-top: 1px solid rgba(226, 232, 240, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0 14px;
  overflow-x: auto;
}

.nav-link {
  color: var(--slate-300);
  padding: 9px 15px;
  border-radius: 12px;
  font-size: 0.94rem;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-400);
  background: rgba(51, 65, 85, 0.95);
}

.mobile-nav {
  display: none;
  padding: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
  background: var(--slate-850);
}

.mobile-nav form {
  display: flex;
  margin-bottom: 14px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--slate-700);
}

.mobile-nav a {
  display: block;
  color: var(--slate-200);
  padding: 10px 8px;
  border-radius: 10px;
}

.mobile-nav a:hover {
  color: var(--amber-400);
  background: rgba(255, 255, 255, 0.06);
}

.hero-slider {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.hero-track,
.hero-slide,
.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

.hero-backdrop {
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.18)), var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.08);
}

.hero-content {
  position: relative;
  width: min(var(--max-width), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.5fr);
  align-items: center;
  gap: 40px;
  padding: 74px 0 90px;
}

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

.eyebrow,
.detail-meta,
.tag-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.eyebrow span,
.tag-list span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow span {
  color: var(--white);
  background: rgba(245, 158, 11, 0.95);
  padding: 6px 12px;
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.hero-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--slate-200);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 16px 35px rgba(245, 158, 11, 0.35);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.ghost-button.dark {
  color: var(--slate-800);
  background: var(--white);
  border-color: rgba(15, 23, 42, 0.08);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.24);
}

.hero-poster {
  justify-self: end;
  width: min(340px, 100%);
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
  transform: rotate(2deg);
}

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

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

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

.hero-dot.is-active {
  width: 34px;
  background: var(--amber-500);
}

.home-search-band {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 28px;
  align-items: center;
  margin-top: -42px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96));
  box-shadow: var(--shadow);
}

.home-search-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.home-search-band p {
  margin: 0;
  color: var(--slate-300);
  line-height: 1.7;
}

.home-search-band form,
.big-search {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.section-wrap {
  margin-top: 72px;
}

.section-title-row,
.panel-heading,
.category-block-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-title-row h2,
.panel-heading h2,
.category-block h2,
.detail-article h2 {
  margin: 0;
  color: var(--slate-800);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.section-title-row a,
.category-block-head a {
  color: var(--amber-600);
  font-weight: 800;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--amber-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.category-card {
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-radius: 22px;
  padding: 20px;
  color: var(--white);
  box-shadow: var(--soft-shadow);
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.06);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(245, 158, 11, 0.58));
}

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

.category-card strong {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  line-height: 1.55;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.22);
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--slate-200);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.year-badge,
.region-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.year-badge {
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  background: rgba(2, 6, 23, 0.76);
}

.region-badge {
  left: 12px;
  bottom: 12px;
  padding: 5px 10px;
  background: rgba(245, 158, 11, 0.92);
}

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

.movie-card h3 {
  margin: 0 0 8px;
  color: var(--slate-800);
  font-size: 1rem;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--amber-600);
}

.movie-meta,
.movie-desc {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.86rem;
  line-height: 1.55;
}

.movie-desc {
  display: -webkit-box;
  min-height: 2.7em;
  margin-top: 8px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-list {
  margin-top: 12px;
}

.tag-list span {
  color: #92400e;
  background: #fef3c7;
  padding: 5px 9px;
}

.movie-card-compact .movie-card-body {
  padding: 13px;
}

.movie-card-compact .tag-list,
.compact-grid .movie-desc {
  display: none;
}

.ranking-panel {
  position: sticky;
  top: 128px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

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

.rank-item a {
  display: grid;
  grid-template-columns: 44px 68px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.compact-rank .rank-item a {
  grid-template-columns: 34px 58px minmax(0, 1fr) auto;
  padding: 9px;
  box-shadow: none;
  background: #f8fafc;
}

.rank-item a:hover {
  transform: translateY(-3px);
  box-shadow: var(--soft-shadow);
}

.rank-number {
  color: var(--amber-600);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
}

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

.compact-rank .rank-item img {
  width: 58px;
  height: 42px;
}

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

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

.rank-copy strong {
  color: var(--slate-800);
  font-size: 0.95rem;
}

.rank-copy em {
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 0.78rem;
  font-style: normal;
}

.rank-score {
  color: var(--white);
  background: var(--slate-900);
  padding: 6px 8px;
  border-radius: 10px;
  font-weight: 900;
}

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

.page-hero,
.detail-hero {
  margin-top: 42px;
  border-radius: 30px;
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.3), transparent 34%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
  box-shadow: var(--shadow);
}

.page-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: clamp(32px, 6vw, 64px);
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--slate-200);
  line-height: 1.8;
  font-size: 1.05rem;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--slate-500);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  outline: 0;
  padding: 12px 13px;
  color: var(--slate-800);
  background: #f8fafc;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.category-block {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
  padding: 26px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  isolation: isolate;
}

.category-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)), var(--block-image);
  background-size: cover;
  background-position: center;
}

.category-block-head p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--slate-600);
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--slate-500);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--amber-600);
  font-weight: 800;
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

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

.detail-copy h1 {
  margin: 8px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.07em;
}

.detail-line {
  max-width: 860px;
  margin: 0;
  color: var(--slate-200);
  font-size: 1.12rem;
  line-height: 1.8;
}

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

.detail-meta span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
}

.detail-tags span {
  color: var(--white);
  background: rgba(245, 158, 11, 0.92);
}

.player-section {
  scroll-margin-top: 130px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--slate-950);
  box-shadow: var(--shadow);
}

.player-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: var(--slate-950);
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.28), rgba(2, 6, 23, 0.48));
  cursor: pointer;
}

.play-overlay span {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--slate-950);
  background: var(--amber-500);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.35);
  font-size: 2rem;
}

.play-overlay strong {
  font-size: 1.1rem;
}

.play-overlay.hidden {
  display: none;
}

.detail-article {
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.detail-article p {
  margin: 12px 0 28px;
  color: var(--slate-700);
  line-height: 1.95;
  font-size: 1.05rem;
}

.detail-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.detail-nav-links a {
  flex: 1;
  text-align: center;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--slate-800);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  font-weight: 800;
}

.search-page {
  min-height: 360px;
}

.big-search {
  max-width: 820px;
  margin-bottom: 28px;
  background: var(--slate-900);
}

.search-results:empty::before {
  content: "输入关键词即可浏览匹配影片";
  display: block;
  grid-column: 1 / -1;
  color: var(--slate-500);
  padding: 28px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.site-footer {
  margin-top: 86px;
  color: var(--slate-300);
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) 1fr 1fr;
  gap: 36px;
  padding: 48px 0;
}

.footer-brand p {
  color: var(--slate-300);
  line-height: 1.75;
}

.footer-links h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.footer-bottom {
  text-align: center;
  padding: 18px;
  color: var(--slate-400);
  border-top: 1px solid rgba(226, 232, 240, 0.1);
}

.filter-item.is-hidden {
  display: none;
}

@media (max-width: 1180px) {
  .category-grid,
  .movie-grid.large-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .split-layout {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero-poster {
    display: none;
  }

  .home-search-band,
  .detail-hero,
  .footer-inner,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .movie-grid,
  .movie-grid.large-grid,
  .movie-grid.compact-grid,
  .full-rank {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .header-inner,
  .section-wrap,
  .page-hero,
  .detail-hero,
  .breadcrumb,
  .home-search-band {
    width: min(100% - 24px, var(--max-width));
  }

  .brand {
    font-size: 1.08rem;
  }

  .hero-slider {
    min-height: 520px;
  }

  .hero-copy h1,
  .detail-copy h1,
  .page-hero h1 {
    letter-spacing: -0.05em;
  }

  .category-grid,
  .movie-grid,
  .movie-grid.large-grid,
  .movie-grid.compact-grid,
  .full-rank {
    grid-template-columns: 1fr;
  }

  .rank-item a {
    grid-template-columns: 36px 58px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }

  .detail-nav-links {
    flex-direction: column;
  }

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