:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --orange: #fb923c;
  --yellow: #facc15;
  --shadow: 0 24px 80px rgba(8, 145, 178, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.13), transparent 28rem),
    radial-gradient(circle at 84% 16%, rgba(59, 130, 246, 0.12), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: var(--text);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), #2563eb);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.35);
  transition: transform 0.5s ease;
}

.brand:hover .brand-mark {
  transform: rotate(180deg);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.02em;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.desktop-nav a,
.mobile-panel a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--cyan);
}

.top-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-panel input,
.large-search input,
.panel-search input,
.filter-bar input,
.filter-bar select {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input {
  width: 260px;
  padding: 10px 16px;
}

.top-search input:focus,
.mobile-panel input:focus,
.large-search input:focus,
.panel-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.top-search button,
.mobile-panel button,
.large-search button,
.panel-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  background: var(--cyan-strong);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.top-search button:hover,
.mobile-panel button:hover,
.large-search button:hover,
.panel-search button:hover,
.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 0 24px 18px;
  border-top: 1px solid var(--line);
}

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

.mobile-panel form {
  display: flex;
  gap: 8px;
}

.mobile-panel input {
  min-width: 0;
  flex: 1;
  padding: 10px 14px;
}

.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #020617;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transform: scale(1.02);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 42%, rgba(2, 6, 23, 0.3) 100%),
    linear-gradient(0deg, #020617 0%, transparent 36%, rgba(2, 6, 23, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 84px 24px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero h2 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
}

.hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.85;
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  color: #a5f3fc;
  background: rgba(8, 145, 178, 0.14);
  font-size: 12px;
}

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

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

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan-strong), #2563eb);
  box-shadow: 0 14px 36px rgba(6, 182, 212, 0.3);
}

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

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

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

.hero-dot.is-active {
  width: 34px;
  background: var(--cyan);
}

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 24px;
}

.intro-strip {
  margin-top: -48px;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.intro-strip a {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.intro-strip a:hover,
.category-tile:hover,
.movie-card:hover,
.rank-row:hover,
.related-card:hover,
.mini-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.55);
}

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

.section-title p {
  margin: 0 0 4px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
}

.section-title a {
  color: var(--cyan);
  font-weight: 700;
}

.compact-title h2 {
  font-size: 30px;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.56);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  box-shadow: 0 18px 50px rgba(34, 211, 238, 0.13);
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(8, 47, 73, 0.72));
}

.poster img,
.rank-thumb img,
.related-card img,
.detail-poster img,
.mini-feature img,
.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .poster img,
.related-card:hover img,
.mini-feature:hover img,
.category-tile:hover img {
  transform: scale(1.08);
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.9) 0%, transparent 48%);
}

.poster-year {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  border-radius: 999px;
  padding: 4px 9px;
  color: #ffffff;
  background: rgba(6, 182, 212, 0.9);
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  padding: 14px;
}

.card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.45;
  transition: color 0.2s ease;
}

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

.card-meta,
.card-desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  padding: 4px 8px;
  color: #bae6fd;
  font-size: 11px;
}

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

.category-tile {
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(8, 47, 73, 0.5));
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.tile-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 102px;
  margin-bottom: 16px;
}

.tile-covers img {
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.8);
}

.category-tile strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.category-tile em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  font-style: normal;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 52px 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.58);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.rank-thumb {
  width: 76px;
  height: 96px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.9);
}

.rank-title {
  color: #ffffff;
  font-weight: 900;
}

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

.rank-info span {
  color: #67e8f9;
  font-size: 12px;
}

.heat-score {
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.85);
  font-weight: 900;
}

.side-panel,
.detail-panel,
.info-panel {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  padding: 26px;
  background: rgba(15, 23, 42, 0.66);
  box-shadow: var(--shadow);
}

.side-panel h2,
.detail-panel h2,
.info-panel h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.side-panel p,
.detail-panel p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.85;
}

.panel-search,
.large-search {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.panel-search input,
.large-search input {
  min-width: 0;
  flex: 1;
  padding: 13px 16px;
}

.year-cloud {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.year-cloud a {
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  color: #a5f3fc;
  background: rgba(8, 145, 178, 0.12);
  font-size: 13px;
}

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

.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 76px 24px 34px;
}

.small-hero,
.category-hero {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.85;
}

.mini-feature-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mini-feature {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.62);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mini-feature img {
  width: 72px;
  height: 92px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.9);
}

.mini-feature span {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.45;
}

.filter-bar {
  margin-bottom: 22px;
  display: flex;
  gap: 12px;
}

.filter-bar input,
.filter-bar select {
  padding: 12px 16px;
}

.filter-bar input {
  min-width: 0;
  flex: 1;
}

.filter-bar select {
  color: #ffffff;
}

.full-rank {
  gap: 10px;
}

.detail-main {
  background: radial-gradient(circle at 70% 0%, rgba(34, 211, 238, 0.12), transparent 26rem);
}

.detail-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px 32px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #94a3b8;
  font-size: 14px;
}

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

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

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(8, 47, 73, 0.72));
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.detail-one {
  max-width: 820px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.85;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: 26px;
  align-items: start;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: #020617;
  box-shadow: var(--shadow);
}

.player-card video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
}

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 211, 238, 0.18), transparent 14rem),
    linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.28));
  cursor: pointer;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
}

.play-cover.is-hidden {
  display: none;
}

.play-cover span {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan-strong), #2563eb);
  box-shadow: 0 12px 34px rgba(34, 211, 238, 0.36);
  font-size: 32px;
}

.play-cover strong {
  font-size: 18px;
}

.detail-panel {
  margin-top: 22px;
}

.info-panel {
  position: sticky;
  top: 92px;
}

.info-panel dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.info-panel dt {
  color: #67e8f9;
  font-size: 13px;
  font-weight: 800;
}

.info-panel dd {
  margin: 4px 0 0;
  color: #e2e8f0;
}

.info-panel a {
  color: var(--cyan);
}

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

.related-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.58);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 13px;
  background: rgba(30, 41, 59, 0.9);
}

.related-card span {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.related-card em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.76);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

.footer-brand {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.75;
}

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

.site-footer a {
  display: block;
  margin-top: 8px;
  transition: color 0.2s ease;
}

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

.copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 30px;
  font-size: 13px;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.09);
  }
}

@media (max-width: 1180px) {
  .movie-grid,
  .compact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .top-search {
    display: none;
  }
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    height: 680px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .intro-strip,
  .two-column,
  .detail-layout,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .info-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    height: 64px;
    padding: 0 16px;
  }

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

  .hero {
    height: 720px;
  }

  .hero-content,
  .section-wrap,
  .page-hero,
  .detail-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

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

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

  .hero p:not(.eyebrow),
  .page-hero p:not(.eyebrow),
  .detail-one {
    font-size: 16px;
  }

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

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

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

  .rank-thumb {
    width: 62px;
    height: 82px;
  }

  .heat-score {
    display: none;
  }

  .filter-bar,
  .panel-search,
  .large-search,
  .mobile-panel form {
    flex-direction: column;
  }

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