:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: rgba(15, 23, 42, 0.76);
  --panel-strong: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --gold: #facc15;
  --red: #ef4444;
  --green: #22c55e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 36rem),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.14), transparent 42rem),
    linear-gradient(180deg, #020617 0%, #07111f 38%, #020617 100%);
  color: var(--text);
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 138, 0.92), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.nav-shell,
.footer-grid,
.footer-bottom,
.hero-inner,
.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.32);
}

.brand-text {
  font-size: 24px;
  background: linear-gradient(90deg, #60a5fa, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link,
.mobile-link {
  color: #dbeafe;
  font-weight: 650;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #60a5fa;
}

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

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

.top-search input,
.mobile-search input,
.search-panel input {
  border: 1px solid rgba(148, 163, 184, 0.18);
  outline: none;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.88);
  border-radius: 999px;
  padding: 12px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.top-search input {
  width: 220px;
}

.top-search input:focus,
.mobile-search input:focus,
.search-panel input:focus {
  border-color: rgba(59, 130, 246, 0.75);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
  background: rgba(15, 23, 42, 1);
}

.top-search button,
.mobile-search button,
.search-panel button,
.button,
.play-button {
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #2563eb);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.top-search button {
  width: 42px;
  height: 42px;
}

.top-search button:hover,
.mobile-search button:hover,
.search-panel button:hover,
.button:hover,
.play-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.42);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: none;
  background: transparent;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

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

.mobile-panel.open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.mobile-search input {
  flex: 1;
}

.mobile-search button {
  padding: 12px 18px;
}

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

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.03);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 25%, rgba(34, 211, 238, 0.18), transparent 28rem),
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.68) 45%, rgba(2, 6, 23, 0.3) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.1) 42%, rgba(2, 6, 23, 0.62) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 72px 0 88px;
}

.hero-content {
  max-width: 780px;
}

.kicker,
.section-kicker,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #60a5fa;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 16px 0;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero p {
  margin: 0;
  max-width: 680px;
  color: #d1d5db;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-meta,
.detail-meta,
.card-meta,
.page-meta {
  color: var(--muted);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.hero-meta span,
.pill,
.tag-row span,
.filter-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  background: rgba(15, 23, 42, 0.65);
  color: #dbeafe;
}

.hero-meta span,
.pill {
  padding: 8px 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 800;
}

.button.secondary {
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow: none;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.page-shell {
  padding: 64px 0;
}

.page-hero {
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.72), rgba(15, 23, 42, 0.92));
  border-radius: 32px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -35% -10% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.24), transparent 68%);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 14px 0;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 850px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.75;
}

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

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

.section-title a {
  color: #60a5fa;
  font-weight: 800;
}

.section-title a span {
  font-size: 20px;
}

.section-block {
  margin-top: 64px;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.movie-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(59, 130, 246, 0.38);
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.18);
}

.movie-card-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
}

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

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 55%);
  transition: opacity 0.3s ease;
}

.movie-card:hover .poster-link img,
.compact-card:hover img,
.rank-item:hover img,
.detail-related a:hover img {
  transform: scale(1.09);
  filter: saturate(1.08);
}

.movie-card:hover .poster-link::after {
  opacity: 1;
}

.rating {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  padding: 6px 9px;
  color: white;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.play-float {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.88);
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  opacity: 0;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.42);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.movie-card:hover .play-float {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-body {
  padding: 14px;
}

.card-body h2 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: #60a5fa;
}

.card-meta {
  margin: 0 0 10px;
  font-size: 13px;
}

.card-desc {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.6;
}

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

.tag-row span {
  padding: 4px 8px;
  font-size: 12px;
}

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

.category-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 13rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.55));
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.42);
}

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

.category-card strong {
  margin: 14px 0;
  color: #dbeafe;
  line-height: 1.65;
}

.category-card em {
  color: #67e8f9;
  font-style: normal;
  font-weight: 800;
}

.scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
}

.compact-card {
  flex: 0 0 180px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.compact-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.compact-card span {
  display: block;
  padding: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.rank-panel {
  border-radius: 30px;
  padding: clamp(20px, 4vw, 34px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.8));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: var(--shadow);
}

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

.rank-item {
  display: grid;
  grid-template-columns: 44px 78px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.rank-item:hover {
  background: rgba(30, 41, 59, 0.88);
  transform: translateX(4px);
  border-color: rgba(96, 165, 250, 0.36);
}

.rank-no {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 900;
}

.rank-item img {
  width: 78px;
  height: 112px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.rank-content {
  min-width: 0;
}

.rank-content strong,
.rank-content em,
.rank-content b {
  display: block;
}

.rank-content strong {
  color: white;
  font-size: 18px;
  margin-bottom: 6px;
}

.rank-content em {
  color: #cbd5e1;
  font-style: normal;
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-content b {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
}

.rank-score {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 28px;
  max-width: 760px;
}

.search-panel button {
  padding: 0 24px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.filter-chip {
  padding: 9px 14px;
  cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
  background: rgba(59, 130, 246, 0.9);
  border-color: rgba(147, 197, 253, 0.72);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 1));
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.24;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(1.2);
  transform: scale(1.06);
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.72) 52%, rgba(2, 6, 23, 0.94) 100%);
}

.detail-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 68px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #93c5fd;
  margin-bottom: 28px;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: white;
}

.player-card {
  border-radius: 30px;
  overflow: hidden;
  background: black;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow);
}

.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-stage video,
.video-stage .player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-stage video {
  z-index: 1;
  background: #000;
}

.player-cover {
  z-index: 2;
  opacity: 0.72;
  transition: opacity 0.25s ease;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.16), rgba(0, 0, 0, 0.26));
  cursor: pointer;
}

.play-overlay.hidden,
.player-cover.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: 18px;
  font-weight: 900;
}

.detail-main {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 340px;
  gap: 28px;
  margin-top: 32px;
}

.detail-info,
.side-panel,
.text-panel {
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.detail-info {
  padding: clamp(22px, 4vw, 36px);
}

.detail-info h1 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.86);
}

.detail-info p {
  color: #d1d5db;
  line-height: 1.85;
  font-size: 17px;
}

.side-panel {
  padding: 18px;
}

.side-panel img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 20px;
}

.side-panel h2 {
  margin: 18px 0 12px;
}

.side-panel .tag-row {
  margin-top: 14px;
}

.text-panel {
  padding: clamp(22px, 4vw, 34px);
  margin-top: 28px;
}

.text-panel h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.text-panel p {
  margin: 0;
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.9;
}

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

.detail-related a {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.detail-related img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.detail-related span {
  display: block;
  padding: 12px;
  font-weight: 800;
}

.site-footer {
  margin-top: 60px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.7), #020617);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  padding: 44px 0 28px;
}

.footer-grid p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

.footer-grid a:not(.footer-brand) {
  display: block;
  color: var(--muted);
  margin: 10px 0;
}

.footer-grid a:hover {
  color: #60a5fa;
}

.footer-bottom {
  padding: 18px 0 30px;
  color: #64748b;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

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

.empty-state {
  display: none;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.75);
}

.empty-state.show {
  display: block;
}

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

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

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

  .menu-toggle {
    display: block;
  }

  .brand-text {
    font-size: 20px;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-inner {
    padding-bottom: 100px;
  }

  .hero-dots {
    left: 24px;
    right: auto;
  }

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

  .movie-card-wide {
    grid-column: span 2;
  }

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

  .side-panel {
    max-width: 380px;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .footer-grid,
  .footer-bottom,
  .hero-inner,
  .page-shell,
  .detail-shell {
    width: min(100% - 24px, 1180px);
  }

  .hero h1,
  .detail-info h1,
  .page-hero h1 {
    letter-spacing: -0.03em;
  }

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

  .movie-card-wide {
    grid-column: span 2;
  }

  .card-body {
    padding: 12px;
  }

  .card-body h2 {
    font-size: 15px;
  }

  .card-desc {
    display: none;
  }

  .rank-item {
    grid-template-columns: 34px 64px 1fr;
  }

  .rank-score {
    display: none;
  }

  .rank-item img {
    width: 64px;
    height: 92px;
  }

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

  .search-panel button {
    min-height: 46px;
  }

  .page-shell {
    padding: 42px 0;
  }
}
