:root {
  color-scheme: light;
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --blue: #2563eb;
  --teal: #14b8a6;
  --red: #dc2626;
  --gold: #f59e0b;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
  --soft-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
}

.nav-bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.24);
  font-size: 16px;
}

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

.nav-link {
  position: relative;
  padding: 10px 16px;
  color: #334155;
  font-weight: 700;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan-dark);
  background: #ecfeff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  color: #334155;
  cursor: pointer;
}

.hero-carousel {
  background: linear-gradient(135deg, #ecfeff 0%, #eff6ff 46%, #f0fdfa 100%);
  padding: 28px 0 34px;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  width: min(1280px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(6, 182, 212, 0.36), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.68) 45%, rgba(15, 23, 42, 0.20)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 46%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(26px, 7vw, 92px);
  bottom: clamp(36px, 8vw, 92px);
  width: min(680px, calc(100% - 52px));
  color: white;
  animation: slideUp 0.7s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(236, 254, 255, 0.96);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
  margin: 20px 0 16px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.hero-content p,
.page-hero p,
.detail-info p {
  margin: 0 0 20px;
  max-width: 760px;
  font-size: clamp(16px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.90);
}

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

.hero-meta span,
.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

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

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span,
.detail-tags span {
  color: white;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

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

.btn-primary,
.btn-secondary,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.22);
}

.btn-secondary {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.btn-primary:hover,
.btn-secondary:hover,
.text-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: 32px;
  bottom: 32px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
  width: 34px;
  background: white;
}

.feature-strip,
.section-pad {
  padding: 72px 0;
}

.no-top {
  padding-top: 0;
}

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

.feature-card,
.content-card,
.filter-panel,
.category-overview-card,
.player-card {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
}

.feature-card {
  padding: 26px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.movie-card:hover,
.category-card:hover,
.category-overview-card:hover,
.rank-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card strong {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
  color: #0f172a;
}

.feature-card span {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.16;
  color: #111827;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.soft-bg {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

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

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #e0f2fe, #ecfeff);
}

.movie-card-small .poster-wrap {
  aspect-ratio: 16 / 9;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.46), transparent 52%);
  pointer-events: none;
}

.score-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 5px 10px;
  border-radius: 10px;
  color: white;
  font-weight: 900;
  font-size: 13px;
}

.score-badge {
  right: 12px;
  background: linear-gradient(135deg, var(--gold), #ef4444);
}

.rank-badge {
  left: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.movie-body {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  gap: 9px;
  padding: 18px;
}

.movie-body strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
}

.movie-body em {
  color: var(--cyan-dark);
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
}

.movie-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--muted);
  font-size: 14px;
}

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

.category-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 26px;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-posters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.category-posters img {
  height: 88px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.category-card strong {
  font-size: 22px;
  color: #111827;
}

.category-card em {
  color: var(--muted);
  font-style: normal;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

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

.compact-rank {
  margin-bottom: 22px;
}

.rank-item {
  display: grid;
  grid-template-columns: 52px 74px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.92);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
}

.rank-item img {
  width: 74px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
}

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

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

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

.rank-score {
  color: #f59e0b;
  font-size: 20px;
  font-weight: 900;
}

.more-btn {
  margin-top: 18px;
}

.page-hero {
  padding: 96px 0 82px;
  color: white;
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 184, 166, 0.44), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #155e75 52%, #2563eb 100%);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.category-hero {
  background:
    radial-gradient(circle at 75% 30%, rgba(37, 99, 235, 0.45), transparent 30%),
    linear-gradient(135deg, #082f49 0%, #0e7490 48%, #14b8a6 100%);
}

.ranking-hero {
  background:
    radial-gradient(circle at 78% 28%, rgba(245, 158, 11, 0.46), transparent 28%),
    linear-gradient(135deg, #111827 0%, #164e63 52%, #2563eb 100%);
}

.search-hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(6, 182, 212, 0.46), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #1d4ed8 58%, #0d9488 100%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--cyan-dark);
  font-weight: 800;
}

.breadcrumbs.light {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs.light a {
  color: white;
}

.filter-section {
  padding: 46px 0 72px;
}

.filter-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  margin-bottom: 26px;
}

.search-box {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 800;
}

.search-box input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  outline: 0;
  color: #0f172a;
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12);
}

.filter-chips,
.view-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip,
.view-switch button {
  border: 0;
  border-radius: 14px;
  padding: 10px 15px;
  color: #334155;
  background: #f1f5f9;
  cursor: pointer;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.active,
.view-switch button:hover,
.view-switch button.active {
  color: white;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.empty-state {
  padding: 40px;
  border-radius: 22px;
  text-align: center;
  color: var(--muted);
  background: white;
  box-shadow: var(--soft-shadow);
}

.movie-grid.list-mode {
  grid-template-columns: 1fr;
}

.movie-grid.list-mode .movie-card {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.movie-grid.list-mode .poster-wrap {
  aspect-ratio: 16 / 10;
}

.movie-grid.list-mode .movie-body {
  min-height: auto;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-poster-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-poster-wall img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  border-radius: 14px;
}

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

.category-overview-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.category-samples a {
  padding: 6px 10px;
  border-radius: 999px;
  color: #075985;
  background: #e0f2fe;
  font-size: 13px;
  font-weight: 700;
}

.text-link {
  min-height: 38px;
  padding: 8px 0;
  color: var(--cyan-dark);
}

.detail-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #020617;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(1.12);
  transform: scale(1.08);
  opacity: 0.56;
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(6, 182, 212, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.74) 50%, rgba(15, 23, 42, 0.34));
}

.detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 72px 0;
}

.detail-poster {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0f172a;
}

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

.detail-info p {
  max-width: 820px;
}

.player-card {
  overflow: hidden;
  padding: 16px;
  background: #020617;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: black;
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: white;
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.28), rgba(2, 6, 23, 0.68));
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.player-overlay span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.35);
  font-size: 30px;
}

.player-overlay strong {
  font-size: 22px;
}

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

.detail-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.content-card {
  padding: clamp(24px, 4vw, 38px);
}

.content-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.content-card p {
  margin: 0 0 16px;
  color: #334155;
  font-size: 17px;
}

.site-footer {
  border-top: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 30px;
  padding: 52px 0;
}

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

.footer-grid p {
  color: var(--muted);
}

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

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

.footer-bottom {
  padding: 20px 0 28px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid #e2e8f0;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

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

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

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

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

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

  .nav-link {
    width: 100%;
  }

  .hero-stage {
    min-height: 590px;
    border-radius: 24px;
  }

  .hero-content {
    left: 24px;
    bottom: 38px;
    width: calc(100% - 48px);
  }

  .hero-arrow {
    display: none;
  }

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

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

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

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

  .movie-grid.list-mode .movie-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1280px);
  }

  .brand,
  .footer-brand {
    font-size: 20px;
  }

  .hero-carousel {
    padding-top: 14px;
  }

  .hero-stage {
    width: min(100% - 22px, 1280px);
    min-height: 560px;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 36px;
  }

  .hero-dots {
    left: 24px;
    right: auto;
  }

  .feature-grid,
  .movie-grid,
  .mini-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 42px 58px 1fr;
  }

  .rank-score {
    grid-column: 3;
  }

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

  .section-pad,
  .feature-strip {
    padding: 52px 0;
  }

  .page-hero {
    padding: 72px 0 60px;
  }
}
