:root {
  --primary-50: #e6f2f8;
  --primary-100: #cce5f1;
  --primary-400: #3397c7;
  --primary-500: #007db9;
  --primary-600: #006494;
  --primary-700: #004b6f;
  --primary-800: #00324a;
  --secondary-600: #147494;
  --accent-50: #fef9e7;
  --accent-600: #c49c0c;
  --neutral-50: #f8f9fa;
  --neutral-100: #f1f3f5;
  --neutral-200: #e9ecef;
  --neutral-300: #dee2e6;
  --neutral-500: #868e96;
  --neutral-600: #495057;
  --neutral-700: #343a40;
  --neutral-900: #212529;
  --white: #ffffff;
  --shadow-soft: 0 2px 15px 0 rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 8px 30px 0 rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--neutral-900);
  background: var(--neutral-50);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
  box-shadow: var(--shadow-soft);
  font-size: 15px;
}

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

.brand-text strong {
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.03em;
}

.brand-text em {
  margin-top: 4px;
  color: var(--neutral-500);
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  position: relative;
  color: var(--neutral-700);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary-600);
}

.nav-link.is-active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary-600);
  content: "";
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(264px, 22vw);
}

.header-search input,
.mobile-search input,
.filter-fields input,
.filter-fields select {
  width: 100%;
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  background: var(--white);
  color: var(--neutral-900);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  padding: 10px 42px 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-fields input:focus,
.filter-fields select:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(0, 125, 185, 0.2);
}

.header-search button {
  position: absolute;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 9px;
  color: var(--neutral-500);
  background: transparent;
  cursor: pointer;
}

.header-search button:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: var(--neutral-100);
  color: var(--neutral-700);
  cursor: pointer;
}

.mobile-panel {
  border-top: 1px solid var(--neutral-200);
  background: var(--white);
  padding: 16px;
}

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

.mobile-nav a,
.mobile-search button {
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--neutral-100);
  color: var(--neutral-700);
  font-weight: 600;
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
}

.mobile-search input {
  padding: 12px 14px;
}

.mobile-search button {
  border: 0;
  cursor: pointer;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-600) 52%, var(--secondary-600) 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 14% 78%, rgba(196, 156, 12, 0.28), transparent 30%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  padding-block: clamp(54px, 8vw, 100px);
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-slide.is-active {
  display: grid;
  animation: fadeUp 0.5s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--primary-50);
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 0 0 14px;
  max-width: 780px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero-copy h2 {
  margin: 0 0 16px;
  color: var(--primary-50);
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.16;
}

.hero-copy p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

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

.hero-meta span,
.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.hero-actions,
.cta-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.btn:hover {
  transform: translateY(-1px);
}

.btn-light {
  color: var(--primary-700);
  background: var(--white);
}

.btn-light:hover {
  background: var(--primary-50);
}

.btn-glass {
  color: var(--white);
  background: rgba(0, 50, 74, 0.5);
  backdrop-filter: blur(4px);
}

.btn-glass:hover {
  background: rgba(0, 50, 74, 0.7);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 360px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow-strong);
}

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

.hero-poster:hover img {
  transform: scale(1.04);
}

.hero-poster::after,
.poster-frame::after,
.category-cover::after,
.detail-cover::after,
.rank-poster::after {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, var(--primary-700), var(--secondary-600));
  content: "";
}

.poster-empty::after {
  opacity: 1;
}

.hero-poster-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
  border-radius: 18px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.58);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-poster-info strong {
  font-size: 22px;
}

.hero-poster-info em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 26px;
}

.hero-dot {
  width: 38px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--white);
}

.hero-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-category-strip a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.content-section {
  padding-block: clamp(42px, 6vw, 72px);
}

.content-band {
  background: linear-gradient(90deg, var(--accent-50), var(--primary-50));
  padding-block: clamp(42px, 6vw, 72px);
}

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

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section-heading p {
  margin: 0;
  color: var(--neutral-600);
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-600);
  font-weight: 800;
  white-space: nowrap;
}

.section-more:hover {
  color: var(--primary-700);
}

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

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

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

.movie-card {
  overflow: hidden;
  display: block;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--primary-50), var(--neutral-200));
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.54));
}

.badge {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.badge-primary {
  top: 10px;
  left: 10px;
  background: var(--primary-600);
}

.badge-score {
  top: 10px;
  right: 10px;
  background: var(--accent-600);
}

.badge-time {
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.72);
}

.movie-info {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.movie-info strong {
  color: var(--neutral-900);
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card:hover .movie-info strong {
  color: var(--primary-600);
}

.movie-info small {
  color: var(--neutral-500);
}

.movie-info em {
  min-height: 44px;
  color: var(--neutral-600);
  font-size: 14px;
  font-style: normal;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row,
.tag-cloud,
.detail-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span,
.tag-cloud span,
.detail-cats a {
  border-radius: 999px;
  padding: 4px 9px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 12px;
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 34px;
  padding-block: clamp(42px, 6vw, 72px);
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 52px 116px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.rank-number {
  color: var(--primary-600);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.rank-poster {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: var(--primary-50);
}

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

.rank-main {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.rank-main strong {
  font-size: 17px;
}

.rank-main em {
  color: var(--neutral-600);
  font-size: 14px;
  font-style: normal;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rank-meta {
  display: grid;
  gap: 6px;
  min-width: 116px;
  text-align: right;
}

.rank-meta b {
  color: var(--accent-600);
}

.rank-meta small {
  color: var(--neutral-500);
}

.cta-section {
  padding-bottom: 72px;
}

.cta-card {
  border-radius: 28px;
  padding: clamp(32px, 6vw, 56px);
  background: linear-gradient(90deg, var(--primary-600), var(--secondary-600));
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.cta-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.cta-card h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 38px);
}

.cta-card p {
  max-width: 680px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.84);
}

.cta-actions {
  justify-content: center;
}

.page-main {
  min-height: 60vh;
}

.page-hero,
.detail-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-700), var(--primary-600) 48%, var(--secondary-600));
}

.page-hero .container {
  padding-block: clamp(48px, 7vw, 86px);
}

.page-hero h1,
.detail-copy h1 {
  margin: 0 0 14px;
  max-width: 900px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.page-hero p,
.detail-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.filter-panel {
  margin-bottom: 28px;
  border-radius: 22px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-title {
  margin-bottom: 14px;
  color: var(--neutral-900);
  font-size: 20px;
  font-weight: 900;
}

.filter-fields {
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(140px, 1fr));
  gap: 14px;
}

.filter-fields label {
  display: grid;
  gap: 8px;
  color: var(--neutral-600);
  font-size: 13px;
  font-weight: 700;
}

.filter-fields input,
.filter-fields select {
  padding: 12px 14px;
}

.filter-result {
  margin-top: 14px;
  color: var(--neutral-600);
  font-size: 14px;
}

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

.category-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 190px auto;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-cover {
  position: relative;
  overflow: hidden;
  background: var(--primary-50);
}

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

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

.category-body {
  display: grid;
  gap: 9px;
  padding: 20px;
}

.category-body strong {
  color: var(--neutral-900);
  font-size: 22px;
}

.category-body em,
.category-body small {
  color: var(--neutral-600);
  font-style: normal;
}

.category-body small {
  color: var(--neutral-500);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: clamp(26px, 5vw, 60px);
  padding-block: clamp(44px, 7vw, 86px);
}

.detail-cats {
  margin-bottom: 18px;
}

.detail-cats a {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.detail-cover {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
}

.detail-cover img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  padding-block: 44px 72px;
}

.detail-content,
.detail-sidebar {
  display: grid;
  align-content: start;
  gap: 22px;
}

.player-card,
.text-card,
.side-card {
  border-radius: 22px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #000000;
}

.player-shell video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  gap: 16px;
  border: 0;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  text-align: center;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-ring {
  display: inline-grid;
  place-items: center;
  justify-self: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: var(--primary-600);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.16);
  font-size: 28px;
}

.player-overlay strong {
  font-size: clamp(20px, 3vw, 32px);
}

.text-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.text-card p {
  margin: 0;
  color: var(--neutral-700);
  font-size: 16px;
  line-height: 1.9;
}

.side-list {
  display: grid;
  gap: 14px;
}

.side-list .movie-card {
  border-radius: 16px;
}

.side-list .movie-info em,
.movie-card-compact .movie-info em {
  min-height: 0;
}

.site-footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
  gap: 34px;
  padding-block: 46px;
}

.footer-brand .brand-mark {
  background: var(--primary-600);
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-about p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--neutral-300);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

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

.footer-list a:hover {
  color: var(--primary-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--neutral-700);
  padding-block: 18px;
  color: var(--neutral-500);
  font-size: 14px;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

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

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

  .detail-sidebar {
    order: 2;
  }

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

@media (max-width: 860px) {
  .hero-slide,
  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    min-height: 260px;
  }

  .hero-poster img {
    min-height: 260px;
  }

  .movie-grid,
  .three-grid,
  .two-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ranking-row {
    grid-template-columns: 42px 88px minmax(0, 1fr);
  }

  .rank-meta {
    grid-column: 3;
    text-align: left;
  }

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

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

  .header-inner {
    min-height: 66px;
  }

  .brand-text em {
    display: none;
  }

  .hero-container,
  .page-hero .container,
  .detail-hero-grid {
    padding-block: 36px;
  }

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

  .hero-meta,
  .detail-meta {
    gap: 8px;
  }

  .movie-grid,
  .three-grid,
  .two-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .rank-poster {
    display: none;
  }

  .rank-meta {
    grid-column: 2;
  }

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