:root {
  --page-bg: #f8fafc;
  --panel-bg: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --text-soft: #9ca3af;
  --line: #e5e7eb;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: #eff6ff;
  --green: #22c55e;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background: var(--page-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.image-hidden {
  opacity: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

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

.desktop-nav a,
.mobile-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #4b5563;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--primary);
  background: var(--primary-soft);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #eef2ff;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
}

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

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.52), rgba(2, 6, 23, 0.12));
}

.hero-slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 1180px;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 660px;
  margin: 0 0 22px;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 16px !important;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #bfdbfe !important;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-size: 14px !important;
  font-weight: 800;
}

.hero-meta,
.detail-meta,
.card-tags,
.mini-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-meta span,
.detail-meta span,
.detail-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-weight: 700;
}

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

.btn {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.32);
}

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

.btn-glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
}

.hero-search-card {
  position: absolute;
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 72px;
  z-index: 5;
  width: min(420px, calc(100% - 32px));
  padding: 20px;
  border-radius: 26px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
}

.hero-search-card label {
  display: block;
  margin-bottom: 10px;
  color: #dbeafe;
  font-weight: 800;
}

.hero-search-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.hero-search-line input,
.filter-panel input,
.filter-panel select,
.search-panel input,
.search-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 14px;
  color: var(--text-main);
  background: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-search-line input:focus,
.filter-panel input:focus,
.filter-panel select:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.hero-search-line button,
.filter-panel button {
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--primary);
  font-weight: 800;
  cursor: pointer;
}

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

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

.hero-dot.is-active {
  width: 28px;
  background: #ffffff;
}

.content-section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
}

.section-raised {
  margin-top: -18px;
  position: relative;
  z-index: 3;
}

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

.section-heading span,
.page-hero-inner p {
  display: inline-flex;
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.page-hero-inner h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.section-heading a {
  color: var(--primary);
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: var(--radius-xl);
  background: var(--panel-bg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-lg);
}

.poster-link,
.poster-frame {
  display: block;
}

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0));
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.92);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.34);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  min-width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  font-weight: 900;
}

.card-body {
  padding: 16px;
}

.card-tags {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.card-tags a {
  color: var(--primary);
}

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

.card-body h3 a:hover {
  color: var(--primary);
}

.card-body p {
  min-height: 45px;
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #475569;
  background: #f1f5f9;
  font-size: 12px;
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.wide-category-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.category-tile {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.86);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-cover {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.category-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.14));
}

.category-cover span {
  position: relative;
  font-size: 24px;
  font-weight: 900;
}

.category-body {
  padding: 18px;
}

.category-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.category-body p {
  margin: 0 0 12px;
  color: var(--text-muted);
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-samples a {
  padding: 6px 10px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.55), transparent 36%), linear-gradient(135deg, #0f172a, #1e3a8a 55%, #0369a1);
}

.compact-hero {
  padding: 72px 0;
}

.category-page-hero {
  background: radial-gradient(circle at 15% 10%, rgba(56, 189, 248, 0.36), transparent 35%), linear-gradient(135deg, #111827, #1d4ed8);
}

.ranking-hero {
  background: radial-gradient(circle at 70% 0%, rgba(34, 197, 94, 0.34), transparent 32%), linear-gradient(135deg, #020617, #1e40af);
}

.page-hero-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.page-hero-inner p {
  color: #bfdbfe;
}

.page-hero-inner h1 {
  color: #ffffff;
}

.page-hero-inner span {
  display: block;
  max-width: 680px;
  margin-top: 16px;
  color: #dbeafe;
  font-size: 18px;
}

.filter-panel,
.search-panel {
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

.filter-panel label,
.search-panel label {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 800;
}

.filter-panel button {
  align-self: end;
}

.empty-state {
  display: none;
  padding: 36px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--text-muted);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

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

.ranking-card-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.ranking-list {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.86);
}

.ranking-row {
  display: grid;
  grid-template-columns: 54px 70px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.ranking-row:hover {
  background: #f8fafc;
}

.ranking-row:last-child {
  border-bottom: 0;
}

.ranking-number {
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
}

.ranking-thumb {
  width: 58px;
  height: 78px;
  overflow: hidden;
  border-radius: 14px;
  background: #0f172a;
}

.ranking-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-main {
  display: grid;
  gap: 4px;
}

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

.ranking-main em {
  color: var(--text-muted);
  font-style: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ranking-meta {
  min-width: 58px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #166534;
  background: #dcfce7;
  text-align: center;
  font-weight: 900;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  color: #ffffff;
  background: #020617;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.04);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.78));
}

.detail-layout {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  background: #111827;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #cbd5e1;
}

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

.breadcrumb em {
  color: #ffffff;
  font-style: normal;
}

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.detail-info p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: 19px;
}

.score-line {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 24px 0 16px;
  padding: 10px 16px;
  border-radius: 18px;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.14);
}

.score-line strong {
  font-size: 28px;
  line-height: 1;
}

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

.player-section {
  padding-top: 50px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background: #000000;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.26), rgba(2, 6, 23, 0.78));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.4);
  font-size: 28px;
}

.player-overlay strong {
  font-size: 22px;
}

.player-overlay em {
  max-width: 80%;
  color: #dbeafe;
  font-style: normal;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.7);
  font-size: 13px;
  pointer-events: none;
}

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

.detail-text-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.86);
  box-shadow: var(--shadow-sm);
}

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

.detail-text-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
}

.site-footer {
  margin-top: 38px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  color: #ffffff;
}

.footer-inner p {
  max-width: 560px;
  margin: 12px 0 0;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #94a3b8;
}

::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

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

  .menu-toggle {
    display: flex;
  }

  .hero-slider {
    height: 76vh;
    min-height: 620px;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 86px;
  }

  .hero-search-card {
    left: 16px;
    right: 16px;
    bottom: 62px;
    width: auto;
  }

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

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

  .detail-poster {
    width: min(260px, 72vw);
  }

  .detail-text-section {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 64px;
  }

  .site-logo,
  .footer-logo {
    font-size: 19px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

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

  .hero-content p {
    font-size: 16px;
  }

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

  .content-section {
    padding: 34px 0;
  }

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

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

  .card-body {
    padding: 12px;
  }

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

  .card-body p {
    min-height: 40px;
    font-size: 13px;
  }

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

  .ranking-row {
    grid-template-columns: 38px 52px 1fr;
    gap: 10px;
    padding: 12px;
  }

  .ranking-thumb {
    width: 48px;
    height: 64px;
  }

  .ranking-meta {
    display: none;
  }

  .player-shell {
    border-radius: 18px;
  }

  .player-play-icon {
    width: 62px;
    height: 62px;
  }
}
