:root {
  --amber-50: #fff8ec;
  --amber-100: #ffedd0;
  --amber-200: #fed7aa;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-900: #78350f;
  --orange-600: #ea580c;
  --rose-700: #be123c;
  --ink: #2f1600;
  --muted: #7c4a18;
  --paper: rgba(255, 255, 255, 0.82);
  --line: rgba(180, 83, 9, 0.18);
  --shadow: 0 22px 60px rgba(146, 64, 14, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
    linear-gradient(135deg, #fff7ed 0%, #fffbeb 45%, #fff1f2 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 248, 236, 0.94), rgba(255, 251, 235, 0.94), rgba(255, 237, 213, 0.94));
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(146, 64, 14, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 14px 26px rgba(217, 119, 6, 0.35);
}

.brand-name {
  font-size: clamp(20px, 2.3vw, 28px);
  background: linear-gradient(90deg, var(--amber-700), var(--orange-600), var(--amber-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  padding: 10px 16px;
  border-radius: 14px;
  color: #8a4d0f;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 12px 26px rgba(217, 119, 6, 0.24);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  color: var(--amber-700);
  background: rgba(251, 191, 36, 0.16);
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

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

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--amber-900);
  font-weight: 800;
  background: rgba(255, 247, 237, 0.9);
}

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

.hero {
  position: relative;
  min-height: 660px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 34px;
  background: #2b1304;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.84fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(34px, 5vw, 72px);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.08) contrast(1.08);
}

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(251, 191, 36, 0.38), transparent 28rem),
    linear-gradient(90deg, rgba(42, 16, 0, 0.94), rgba(91, 39, 4, 0.76), rgba(120, 53, 15, 0.46));
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fed7aa;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: white;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-summary {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 251, 235, 0.88);
  font-size: clamp(16px, 1.7vw, 20px);
}

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

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 999px;
  color: #8b4d0d;
  background: rgba(255, 247, 237, 0.86);
  font-size: 12px;
  font-weight: 800;
}

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

.hero-tags span {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

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

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

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 18px 32px rgba(217, 119, 6, 0.32);
}

.secondary-button {
  color: white;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.ghost-button {
  min-height: 44px;
  color: var(--amber-900);
  background: rgba(245, 158, 11, 0.14);
  cursor: pointer;
}

.text-button {
  min-height: auto;
  padding: 0;
  color: var(--amber-700);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(217, 119, 6, 0.26);
}

.hero-poster {
  justify-self: end;
  width: min(360px, 88%);
  aspect-ratio: 2 / 3;
  border: 10px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-search {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 5vw, 72px);
  right: clamp(24px, 5vw, 72px);
  bottom: 34px;
  max-width: 620px;
}

.hero-search form {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-search input,
.hero-search button {
  border: 0;
  outline: 0;
}

.hero-search input {
  width: 100%;
  padding: 16px 18px;
  color: white;
  background: transparent;
}

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

.hero-search button {
  padding: 0 22px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.hero-controls {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 38px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-controls button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

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

.hero-dot {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.38) !important;
}

.hero-dot.is-active {
  width: 28px !important;
  background: #fff !important;
}

.content-section {
  margin: 34px 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.detail-panel h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.05em;
}

.section-heading h2 {
  font-size: clamp(26px, 3vw, 42px);
}

.section-link {
  color: var(--amber-700);
  font-weight: 900;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 18px;
}

.dense-grid {
  grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
}

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(146, 64, 14, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(146, 64, 14, 0.2);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #451a03, #f59e0b);
}

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

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--rose-700), var(--orange-600));
  box-shadow: 0 12px 22px rgba(190, 18, 60, 0.28);
}

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

.movie-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.movie-card h3 {
  margin: 0;
  color: #3b1d00;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 950;
}

.movie-card p {
  margin: 8px 0 12px;
  color: #7c4a18;
  font-size: 13px;
}

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

.movie-card-compact h3 {
  font-size: 15px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.category-tile {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border-radius: 24px;
  color: white;
  background: #451a03;
  box-shadow: 0 18px 44px rgba(146, 64, 14, 0.16);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transition: transform 0.45s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.category-tile span,
.category-tile small {
  position: relative;
  z-index: 1;
}

.category-tile span {
  font-size: 22px;
  font-weight: 950;
}

.category-tile small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 0.25s ease, background 0.25s ease;
}

.ranking-row:hover {
  transform: translateX(6px);
  background: rgba(255, 247, 237, 0.95);
}

.ranking-row span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  font-weight: 950;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.ranking-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-row em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.promo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(253, 186, 116, 0.5), transparent 16rem),
    linear-gradient(135deg, #78350f, #b45309 55%, #ea580c);
}

.promo-card .eyebrow,
.promo-card p {
  color: rgba(255, 255, 255, 0.78);
}

.promo-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.page-hero,
.detail-hero {
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 10%, rgba(251, 146, 60, 0.26), transparent 22rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.small-hero {
  padding: clamp(28px, 5vw, 58px);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--amber-700);
}

.category-list-large {
  display: grid;
  gap: 18px;
}

.category-card-large {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  overflow: hidden;
  border-radius: 18px;
}

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

.category-card-large h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.16;
}

.category-card-large p {
  color: var(--muted);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) repeat(3, minmax(130px, 0.8fr)) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 22px;
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(217, 119, 6, 0.55);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.empty-state {
  display: none;
  margin: 20px 0 0;
  padding: 18px;
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 247, 237, 0.9);
}

.empty-state.is-visible {
  display: block;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
}

.detail-cover {
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: 0 28px 56px rgba(146, 64, 14, 0.22);
}

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

.detail-copy h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
}

.detail-lead {
  max-width: 760px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.watch-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.2), transparent 24rem),
    linear-gradient(135deg, rgba(69, 26, 3, 0.96), rgba(120, 53, 15, 0.95));
}

.watch-section .section-heading h2,
.watch-section .eyebrow {
  color: white;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #0f0702;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: white;
  font-weight: 950;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
  cursor: pointer;
}

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

.play-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 999px;
  color: white;
  font-size: 30px;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 22px 46px rgba(217, 119, 6, 0.36);
}

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

.detail-panel,
.info-grid div {
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.detail-panel {
  padding: clamp(20px, 3vw, 30px);
}

.detail-panel h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.detail-panel p {
  color: var(--muted);
  font-size: 17px;
}

.info-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.info-grid div {
  padding: 18px;
}

.info-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.info-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.site-footer {
  margin-top: 44px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner strong {
  color: var(--ink);
  font-size: 22px;
}

.footer-inner p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 900;
}

[hidden],
.movie-card.is-hidden {
  display: none !important;
}

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

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: start;
    padding-bottom: 120px;
  }

  .hero-poster {
    justify-self: start;
    width: min(260px, 70%);
  }

  .hero-search,
  .hero-controls {
    left: 20px;
    right: 20px;
  }

  .hero-controls {
    justify-content: flex-end;
  }

  .split-section,
  .detail-hero,
  .detail-section,
  .category-card-large {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }

  .filter-panel .search-field {
    grid-column: 1 / -1;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  main,
  .header-inner,
  .mobile-nav,
  .footer-inner {
    width: min(100% - 22px, 1180px);
  }

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

  .hero-slide {
    padding: 26px;
    padding-bottom: 140px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-search form {
    grid-template-columns: 1fr;
  }

  .hero-search button {
    min-height: 48px;
  }

  .hero-controls {
    bottom: 96px;
  }

  .content-section,
  .small-hero,
  .detail-hero {
    padding: 20px;
    border-radius: 22px;
  }

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

  .movie-grid,
  .dense-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .filter-panel,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .ranking-row {
    grid-template-columns: 38px 1fr;
  }

  .ranking-row em {
    grid-column: 2;
  }
}
