* {
  box-sizing: border-box;
}

:root {
  --amber: #f59e0b;
  --orange: #f97316;
  --slate: #0f172a;
  --slate-soft: #1e293b;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f8fafc;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #f3f4f6 45%, #eef2f7 100%);
}

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(226, 232, 240, 0.9);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #d97706, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link {
  padding: 10px 14px;
  color: #475569;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.current {
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.22);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: var(--ink);
  background: #f1f5f9;
  cursor: pointer;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.34), transparent 34%), linear-gradient(135deg, #0f172a 0%, #111827 48%, #1e293b 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 26px 26px;
}

.hero-inner {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  min-height: 650px;
  margin: 0 auto;
  padding: 78px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 52px;
}

.hero-copy h1 {
  margin: 20px 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  background: linear-gradient(90deg, #fde68a, #fb923c, #fef3c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 28px;
  color: #cbd5e1;
  font-size: 19px;
  line-height: 1.85;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  color: #fde68a;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  backdrop-filter: blur(10px);
}

.hero-search,
.page-search {
  display: flex;
  width: min(100%, 620px);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.hero-search input,
.page-search input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  color: #ffffff;
  border: 0;
  outline: 0;
  background: transparent;
}

.hero-search input::placeholder,
.page-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search button,
.page-search button,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  color: #ffffff;
  font-weight: 800;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.26);
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-search button:hover,
.page-search button:hover,
.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.34);
}

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

.ghost-btn,
.ghost-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: #f8fafc;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.2s ease;
}

.ghost-light-btn {
  color: #fff7ed;
}

.ghost-btn:hover,
.ghost-light-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.hero-slider {
  position: relative;
  min-height: 465px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  transform: perspective(900px) rotateY(-2deg);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 465px;
  object-fit: cover;
  background: #111827;
}

.hero-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.25) 46%, rgba(0, 0, 0, 0.08));
}

.hero-slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 38px;
}

.hero-slide-content span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.92);
}

.hero-slide-content h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 42px);
}

.hero-slide-content p {
  max-width: 720px;
  margin: 0 0 18px;
  color: #e5e7eb;
  line-height: 1.75;
}

.hero-slide-link {
  display: inline-flex;
  padding: 11px 18px;
  color: #ffffff;
  font-weight: 800;
  border-radius: 13px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.hero-dots {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

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

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

.content-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 66px 0;
}

.soft-section {
  width: 100%;
  padding-left: max(16px, calc((100% - 1240px) / 2));
  padding-right: max(16px, calc((100% - 1240px) / 2));
  background: linear-gradient(90deg, #ffffff, #f8fafc);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

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

.feature-grid .card-cover {
  aspect-ratio: 16 / 10;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-chip,
.rank-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.rank-badge {
  left: 14px;
  right: auto;
  min-width: 34px;
  background: rgba(15, 23, 42, 0.82);
}

.card-body {
  padding: 17px;
}

.card-body h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.42;
}

.card-body h3 a:hover {
  color: var(--orange);
}

.card-body p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

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

.category-card,
.category-overview-card,
.spotlight-box,
.story-card {
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.category-card {
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-icon,
.category-overview-head span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 24px rgba(249, 115, 22, 0.24);
}

.category-card h3,
.category-overview-card h2,
.spotlight-box h2,
.spotlight-box h3,
.story-card h2 {
  margin: 18px 0 10px;
}

.category-card p,
.category-overview-card p,
.spotlight-box p,
.story-card p {
  color: var(--muted);
  line-height: 1.75;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-samples a {
  padding: 7px 10px;
  color: #92400e;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: #fef3c7;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 28px;
}

.rank-list {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.rank-row {
  display: grid;
  grid-template-columns: 42px 64px minmax(0, 1fr) 90px 56px;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row:hover {
  background: #fff7ed;
}

.rank-num {
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
}

.rank-row img {
  width: 64px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  background: #111827;
}

.rank-title {
  font-weight: 900;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-type,
.rank-score {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.more-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 900;
}

.spotlight-box {
  padding: 22px;
}

.spotlight-box img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  object-fit: cover;
  background: #111827;
}

.center-line {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.page-hero,
.detail-hero {
  color: #ffffff;
  background: radial-gradient(circle at 80% 0%, rgba(245, 158, 11, 0.28), transparent 32%), linear-gradient(135deg, #0f172a, #111827 54%, #1e293b);
}

.compact-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 32px auto 0;
  padding: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: end;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.compact-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.04em;
}

.compact-hero p {
  max-width: 720px;
  margin: 0;
  color: #cbd5e1;
  line-height: 1.8;
}

.compact-hero .page-search {
  width: 100%;
}

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

.searchable-card[hidden] {
  display: none;
}

.empty-state {
  padding: 52px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius);
  background: #ffffff;
}

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

.category-overview-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

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

.mini-link-grid {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.mini-link {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 14px;
  background: #f8fafc;
}

.mini-link:hover {
  background: #fff7ed;
}

.mini-link img {
  width: 52px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  background: #111827;
}

.mini-link span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 800;
}

.detail-hero {
  padding: 42px 0 62px;
}

.breadcrumb,
.detail-layout {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
  color: #cbd5e1;
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #111827;
}

.detail-kicker {
  display: inline-flex;
  padding: 8px 12px;
  color: #fde68a;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
}

.detail-info h1 {
  margin: 18px 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-meta span {
  padding: 8px 12px;
  color: #e5e7eb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.detail-one-line {
  max-width: 850px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.85;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag-list span {
  padding: 7px 11px;
  color: #fff7ed;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.player-section {
  width: min(1080px, calc(100% - 32px));
  margin: 58px auto 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  outline: 0;
}

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  border: 0;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), rgba(2, 6, 23, 0.42) 52%, rgba(2, 6, 23, 0.78));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 22px 48px rgba(249, 115, 22, 0.4);
}

.article-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-card {
  padding: 30px;
}

.story-card h2 {
  margin-top: 0;
}

.story-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.pager-section {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.pager-section a {
  flex: 1;
  padding: 18px 20px;
  color: #92400e;
  font-weight: 900;
  border-radius: 18px;
  background: #fef3c7;
}

.pager-section a:last-child {
  text-align: right;
}

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

.site-footer {
  margin-top: 70px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #111827, #0f172a);
}

.footer-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
}

.footer-logo strong {
  color: #ffffff;
  font-size: 20px;
}

.footer-brand p,
.footer-column li,
.footer-column a {
  color: #94a3b8;
  line-height: 1.8;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a:hover {
  color: #fbbf24;
}

.footer-bottom {
  padding: 20px;
  text-align: center;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 46px;
  height: 46px;
  display: none;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.35);
  cursor: pointer;
}

.back-top.is-visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .card-grid,
  .search-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-inner,
  .two-column-section,
  .compact-hero {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    transform: none;
  }

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

@media (max-width: 820px) {
  .nav-shell {
    min-height: 68px;
  }

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

  .nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-inner {
    min-height: auto;
    padding: 54px 0;
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-search,
  .page-search {
    flex-direction: column;
  }

  .hero-search button,
  .page-search button {
    width: 100%;
  }

  .hero-slider,
  .hero-slide img {
    min-height: 380px;
  }

  .card-grid,
  .search-grid,
  .feature-grid,
  .category-grid,
  .category-overview-grid,
  .related-grid,
  .article-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .compact-hero {
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .logo-sub {
    display: none;
  }

  .hero-copy h1,
  .compact-hero h1,
  .detail-info h1 {
    font-size: 34px;
  }

  .hero-slide-content {
    padding: 24px;
  }

  .card-grid,
  .search-grid,
  .feature-grid,
  .category-grid,
  .category-overview-grid,
  .related-grid,
  .article-section {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 34px 52px minmax(0, 1fr) 48px;
  }

  .rank-type {
    display: none;
  }

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

  .pager-section {
    flex-direction: column;
  }

  .pager-section a:last-child {
    text-align: left;
  }
}
