:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-500: #ec4899;
  --amber-200: #fde68a;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --green-500: #22c55e;
  --blue-500: #3b82f6;
  --text-main: #111827;
  --text-soft: #6b7280;
  --card: rgba(255, 255, 255, 0.9);
  --border: rgba(244, 63, 94, 0.16);
  --shadow: 0 24px 70px rgba(225, 29, 72, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(244, 63, 94, 0.14), transparent 32rem),
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.18), transparent 28rem),
    linear-gradient(135deg, #fff1f2 0%, #ffffff 44%, #fffbeb 100%);
  color: var(--text-main);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(244, 63, 94, 0.32);
}

.brand-text strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, var(--rose-600), var(--pink-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 12px;
}

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

.nav-link,
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #374151;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--rose-50);
  color: var(--rose-600);
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--rose-50);
  color: var(--rose-600);
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.hero-carousel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #111827;
}

.hero-track {
  position: relative;
  min-height: 650px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 420px);
  align-items: center;
  gap: 48px;
  padding: 112px max(32px, calc((100vw - 1180px) / 2)) 76px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.34;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(225, 29, 72, 0.92), rgba(236, 72, 153, 0.78) 42%, rgba(245, 158, 11, 0.72)),
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.3), transparent 22rem);
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 1;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--rose-600);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.9);
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.tag-row span {
  background: var(--rose-50);
  color: var(--rose-600);
}

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

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

.primary-button {
  background: #ffffff;
  color: var(--rose-600);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.16);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.text-button {
  min-height: 42px;
  background: var(--rose-50);
  color: var(--rose-600);
}

.hero-poster {
  border: 10px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.36);
  transform: rotate(2deg);
}

.hero-poster img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero-dots button.active {
  width: 32px;
  background: #ffffff;
}

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

.section-band {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.86), rgba(239, 246, 255, 0.9));
}

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

.section-title-row h2,
.intro-copy h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-title-row p,
.intro-copy p,
.page-hero p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.section-title-row > a {
  flex: 0 0 auto;
  color: var(--rose-600);
  font-weight: 900;
}

.intro-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 32px;
}

.home-search,
.filter-panel {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.home-search {
  display: flex;
  gap: 10px;
}

.home-search input,
.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(244, 63, 94, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-main);
  outline: 0;
}

.home-search input:focus,
.search-box input:focus {
  border-color: rgba(225, 29, 72, 0.5);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

.home-search button,
.filter-chips button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.movie-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 {
  overflow: hidden;
  border: 1px solid rgba(244, 63, 94, 0.12);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card[hidden],
.ranking-item[hidden] {
  display: none;
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-100), #fffbeb);
}

.poster-link img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.poster-badge,
.poster-year {
  position: absolute;
  top: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--rose-600);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.poster-badge {
  left: 12px;
}

.poster-year {
  right: 12px;
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.movie-meta-line span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: rgba(107, 114, 128, 0.5);
}

.movie-card h2,
.ranking-info h2 {
  margin: 0;
  color: var(--text-main);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.3;
}

.movie-card h2 a:hover,
.ranking-info h2 a:hover {
  color: var(--rose-600);
}

.movie-card p,
.ranking-info p {
  display: -webkit-box;
  min-height: 3.4em;
  margin: 10px 0 16px;
  overflow: hidden;
  color: var(--text-soft);
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.category-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 24px;
  border-radius: 26px;
  background: #111827;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--category-image);
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transition: transform 0.35s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.82), rgba(245, 158, 11, 0.58));
}

.category-card:hover::before {
  transform: scale(1.08);
}

.category-card span,
.category-card strong {
  position: relative;
  z-index: 1;
  display: block;
}

.category-card span {
  font-size: 24px;
  font-weight: 950;
}

.category-card strong {
  max-width: 260px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 82px 52px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(244, 63, 94, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.07);
}

.ranking-cover {
  overflow: hidden;
  border-radius: 16px;
}

.ranking-cover img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.ranking-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-400), var(--rose-500));
  color: #ffffff;
  font-weight: 950;
}

.ranking-score {
  justify-self: end;
  color: var(--rose-600);
  font-size: 24px;
  font-weight: 950;
}

.page-main {
  padding-top: 0;
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 80px max(32px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 241, 242, 0.95), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, var(--rose-50), #fffbeb);
}

.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: blur(3px);
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(244, 63, 94, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.category-overview-media {
  min-height: 260px;
  background-image:
    linear-gradient(135deg, rgba(225, 29, 72, 0.2), rgba(245, 158, 11, 0.2)),
    var(--category-image);
  background-size: cover;
  background-position: center;
}

.category-overview-body {
  padding: 26px;
}

.category-overview-body span {
  color: var(--rose-600);
  font-weight: 900;
}

.category-overview-body h2 {
  margin: 8px 0 10px;
  font-size: 28px;
  font-weight: 950;
}

.category-overview-body p,
.category-overview-body li {
  color: var(--text-soft);
  line-height: 1.7;
}

.category-overview-body ul {
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.category-overview-body li + li {
  margin-top: 8px;
}

.filter-panel {
  margin-bottom: 28px;
}

.search-box {
  display: grid;
  gap: 10px;
  color: var(--text-main);
  font-weight: 900;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.filter-chips button {
  min-height: 38px;
  background: var(--rose-50);
  color: var(--rose-600);
}

.filter-chips button.active {
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: #ffffff;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 90px max(32px, calc((100vw - 1180px) / 2));
  background: #111827;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: blur(16px);
  transform: scale(1.08);
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(225, 29, 72, 0.74));
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

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

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

.detail-poster {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

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

.detail-copy h1,
.detail-copy .section-kicker,
.detail-copy .detail-one-line {
  color: #ffffff;
}

.detail-copy h1 {
  font-size: clamp(36px, 6vw, 70px);
}

.detail-one-line {
  max-width: 820px;
  margin: 18px 0 22px;
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.92;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-bottom: 18px;
}

.detail-meta-grid span {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.detail-meta-grid b {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.detail-tags {
  margin-bottom: 28px;
}

.player-section {
  padding-bottom: 30px;
}

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

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.2), rgba(2, 6, 23, 0.62));
  color: #ffffff;
  cursor: pointer;
}

.player-start span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 18px 40px rgba(244, 63, 94, 0.4);
  font-size: 30px;
}

.player-start strong {
  font-size: 20px;
}

.player-start.is-hidden {
  display: none;
}

.detail-content-shell {
  display: grid;
  gap: 24px;
  padding-top: 30px;
}

.detail-section {
  padding: 30px;
  border: 1px solid rgba(244, 63, 94, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.detail-section h2 {
  margin: 0 0 16px;
  color: var(--text-main);
  font-size: 28px;
  font-weight: 950;
}

.detail-section p {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

.detail-section p + p {
  margin-top: 12px;
}

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

.site-footer {
  margin-top: 30px;
  border-top: 1px solid rgba(244, 63, 94, 0.14);
  background: linear-gradient(135deg, rgba(255, 241, 242, 0.96), rgba(255, 251, 235, 0.96));
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 12px;
  color: var(--rose-600);
  font-size: 24px;
  font-weight: 950;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 950;
}

.site-footer p,
.site-footer a {
  display: block;
  color: var(--text-soft);
  line-height: 1.9;
}

.site-footer a:hover {
  color: var(--rose-600);
}

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

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

  .hero-slide,
  .intro-search,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }
}

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

  .mobile-menu-button {
    display: block;
  }

  .brand-text small {
    display: none;
  }

  .hero-carousel,
  .hero-track {
    min-height: 590px;
  }

  .hero-slide {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

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

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

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

  .ranking-item {
    grid-template-columns: 64px minmax(0, 1fr) 54px;
  }

  .ranking-number {
    display: none;
  }

  .ranking-score {
    font-size: 18px;
  }

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

  .category-overview-media {
    min-height: 220px;
  }

  .detail-meta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .home-search {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .section-shell,
  .footer-grid {
    width: min(100% - 22px, 1180px);
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .ranking-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .ranking-score {
    grid-column: 2;
    justify-self: start;
  }
}
