:root {
  --bg: #fff7ed;
  --bg-soft: #fffbeb;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --card: #ffffff;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --orange: #f97316;
  --amber: #f59e0b;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.header-main {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #fb923c, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 4px;
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 500;
}

.header-search,
.mobile-search {
  position: relative;
  flex: 1;
  max-width: 460px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.9);
  overflow: hidden;
}

.header-search input,
.mobile-search input {
  flex: 1;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 12px 16px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: #94a3b8;
}

.header-search button,
.mobile-search button,
.quick-search-panel button,
.search-panel button {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.quick-search-panel button:hover,
.search-panel button:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.28);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.nav-link {
  color: #e2e8f0;
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 99px;
}

.category-strip {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.45);
}

.category-strip-inner {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 11px 0;
  scrollbar-width: none;
}

.category-strip-inner::-webkit-scrollbar {
  display: none;
}

.category-strip a,
.mobile-panel a {
  flex: 0 0 auto;
  color: #dbeafe;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.category-strip a:hover,
.mobile-panel a:hover {
  color: #fb923c;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

.mobile-search {
  max-width: none;
}

.hero-carousel {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #020617;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 15%, rgba(251, 146, 60, 0.26), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.45) 52%, rgba(2, 6, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.98) 0%, transparent 45%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 88px;
}

.hero-copy {
  width: min(680px, 100%);
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  padding: 7px 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
  margin: 0;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-meta span,
.detail-meta span,
.card-meta span {
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(15, 23, 42, 0.62);
  color: #e2e8f0;
  font-size: 13px;
}

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.btn-ghost.dark {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
}

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

.hero-dot {
  width: 38px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.36);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 64px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.quick-search {
  transform: translateY(-36px);
  position: relative;
  z-index: 5;
}

.quick-search-panel,
.search-panel {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quick-search-panel span {
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.quick-search-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.quick-search-panel input,
.search-panel input,
.search-panel select,
.inline-filter input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  outline: none;
  padding: 0 16px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-search-panel input:focus,
.search-panel input:focus,
.search-panel select:focus,
.inline-filter input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.home-layout,
.content-section {
  position: relative;
}

.content-section {
  margin: 52px auto;
}

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

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

.section-heading a {
  color: var(--orange);
  font-weight: 800;
}

.section-kicker {
  color: #ffffff;
  padding: 5px 11px;
  font-size: 12px;
}

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

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

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

.movie-card {
  background: var(--card);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(249, 115, 22, 0.38);
}

.card-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #f97316);
}

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

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

.poster-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #ffffff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(249, 115, 22, 0.92);
  backdrop-filter: blur(12px);
}

.card-body {
  padding: 18px;
}

.card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  transition: color 0.2s ease;
}

.card-title:hover {
  color: var(--orange);
}

.card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 45px;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.card-tags span,
.detail-tags a {
  color: #9a3412;
  border-radius: 999px;
  background: #ffedd5;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 700;
}

.card-meta {
  justify-content: space-between;
  margin-top: 15px;
  gap: 7px;
}

.card-meta span {
  color: #475569;
  background: #f8fafc;
  font-size: 12px;
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 42% 1fr;
}

.movie-card-horizontal .card-poster {
  height: 100%;
  aspect-ratio: auto;
}

.movie-card-horizontal .card-title {
  min-height: auto;
}

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

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 265px;
  background: var(--dark);
  box-shadow: var(--shadow-soft);
}

.category-card-link {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 265px;
  color: #ffffff;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  opacity: 0.88;
}

.category-thumbs img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
}

.category-info {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.54));
}

.category-info span {
  color: #fed7aa;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.category-info h2 {
  margin: 12px 0 12px;
  font-size: 32px;
}

.category-info p {
  margin: 0;
  color: #e2e8f0;
  line-height: 1.75;
}

.page-hero {
  margin-top: 46px;
  padding: 52px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 12%, rgba(251, 146, 60, 0.35), transparent 30%),
    linear-gradient(135deg, #0f172a, #1e293b 58%, #431407);
  box-shadow: var(--shadow);
}

.page-hero p {
  width: min(820px, 100%);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 32px;
  align-items: center;
}

.category-feature {
  color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.25);
}

.category-feature img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.category-feature strong,
.category-feature span {
  display: block;
  padding: 0 18px;
}

.category-feature strong {
  padding-top: 16px;
  font-size: 20px;
}

.category-feature span {
  padding-top: 8px;
  padding-bottom: 18px;
  color: #cbd5e1;
}

.filter-heading {
  align-items: center;
}

.inline-filter {
  width: min(360px, 100%);
}

.search-tools {
  margin-top: 32px;
}

.search-panel {
  grid-template-columns: 1fr 220px auto;
  margin-bottom: 28px;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.large-rank-list {
  grid-template-columns: 1fr;
}

.rank-row {
  display: grid;
  grid-template-columns: auto 76px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.rank-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.rank-thumb {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  overflow: hidden;
  background: #f1f5f9;
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-row a {
  font-weight: 850;
}

.rank-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.rank-row strong {
  color: var(--orange);
  font-size: 20px;
}

.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.podium-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 360px;
  color: #ffffff;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.podium-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.3s ease;
}

.podium-card:hover img {
  transform: scale(1.05);
}

.podium-card span,
.podium-card strong,
.podium-card em {
  position: absolute;
  left: 22px;
  right: 22px;
  z-index: 2;
}

.podium-card span {
  top: 22px;
  width: max-content;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  padding: 7px 12px;
  font-weight: 900;
}

.podium-card strong {
  bottom: 54px;
  font-size: 26px;
  line-height: 1.25;
}

.podium-card em {
  bottom: 22px;
  color: #fed7aa;
  font-style: normal;
  font-weight: 900;
}

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

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  margin-top: 24px;
}

.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #020617;
  box-shadow: var(--shadow);
}

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

.video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #020617;
  z-index: 2;
}

.video-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 34px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  transform: translate(-50%, -50%);
  box-shadow: 0 22px 45px rgba(249, 115, 22, 0.38);
}

.detail-card,
.side-poster,
.side-rank {
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.detail-card {
  margin-top: 24px;
  padding: 28px;
}

.detail-card h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
}

.detail-card .lead {
  color: #334155;
  font-size: 18px;
  line-height: 1.75;
}

.detail-card h2 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.detail-card p {
  color: #334155;
  line-height: 1.9;
}

.detail-tags {
  margin-top: 18px;
}

.side-column {
  display: grid;
  align-content: start;
  gap: 22px;
}

.side-poster {
  padding: 16px;
}

.side-poster img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 16px;
}

.side-poster .btn {
  width: 100%;
}

.side-rank {
  padding: 18px;
}

.side-rank h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.side-rank .rank-row {
  grid-template-columns: 64px 1fr auto;
  min-height: 76px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}

.side-rank .rank-row .rank-index {
  display: none;
}

.side-rank .rank-thumb {
  width: 64px;
  height: 64px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 46px 0;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 18px;
}

.site-footer p {
  color: #94a3b8;
  line-height: 1.8;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  color: #94a3b8;
  font-size: 14px;
}

.is-filter-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .header-search,
  .desktop-nav,
  .category-strip {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

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

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

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

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

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

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .hero-carousel {
    min-height: 76vh;
  }

  .hero-content {
    padding-bottom: 74px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .quick-search {
    transform: none;
    margin-top: 20px;
  }

  .page-hero {
    margin-top: 24px;
    padding: 30px 22px;
    border-radius: 26px;
  }

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

  .movie-grid,
  .compact-grid,
  .horizontal-grid,
  .category-grid,
  .full-category-grid,
  .rank-list,
  .podium-grid,
  .footer-grid,
  .side-column {
    grid-template-columns: 1fr;
  }

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

  .movie-card-horizontal .card-poster {
    aspect-ratio: 16 / 10;
  }

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

  .category-thumbs {
    min-height: 185px;
  }

  .detail-card {
    padding: 22px;
  }

  .rank-row {
    grid-template-columns: auto 64px 1fr;
  }

  .rank-row strong {
    grid-column: 3;
  }
}
