:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --teal-500: #14b8a6;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.08);
  --shadow-md: 0 10px 25px rgb(15 23 42 / 0.10);
  --shadow-xl: 0 25px 50px rgb(15 23 42 / 0.20);
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--gray-50);
  color: var(--gray-800);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 0.92);
  border-bottom: 1px solid rgb(226 232 240 / 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.nav-container {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--gray-900);
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue-600), var(--teal-500));
  box-shadow: 0 14px 28px rgb(37 99 235 / 0.22);
}

.logo-icon svg {
  width: 25px;
  height: 25px;
  fill: #ffffff;
}

.logo-icon .logo-play {
  fill: var(--cyan-400);
}

.logo-text {
  font-size: 1.25rem;
  background: linear-gradient(90deg, var(--blue-600), var(--teal-500));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

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

.nav-link,
.nav-drop-button {
  padding: 9px 13px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: var(--gray-700);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-drop-button:hover {
  color: var(--blue-600);
  background: var(--blue-50);
  box-shadow: var(--shadow-sm);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 168px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--gray-700);
}

.nav-drop-menu a:hover {
  color: var(--blue-600);
  background: var(--blue-50);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--gray-100);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gray-800);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #0e7490);
}

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

.hero-slide {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 1.6s ease;
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(30 64 175 / 0.86), rgb(14 116 144 / 0.72), rgb(15 23 42 / 0.16));
}

.hero-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 190px;
  background: linear-gradient(180deg, transparent, var(--gray-50));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 620px;
}

.hero-copy {
  width: min(720px, 100%);
  color: #ffffff;
}

.hero-eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--blue-600);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .hero-eyebrow {
  color: #a5f3fc;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: #67e8f9;
}

.hero h2 {
  margin: 24px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.hero p,
.page-hero p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgb(255 255 255 / 0.92);
  font-size: 1.12rem;
}

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

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

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
}

.btn-ghost {
  color: #ffffff;
  background: rgb(255 255 255 / 0.18);
  border-color: rgb(255 255 255 / 0.42);
  backdrop-filter: blur(6px);
}

.btn-soft {
  color: var(--blue-700);
  background: var(--blue-50);
  border-color: var(--blue-100);
}

.btn.full {
  width: 100%;
}

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

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

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

.stat-section {
  position: relative;
  z-index: 5;
  margin-top: -42px;
  padding-bottom: 26px;
}

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

.stat-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover,
.movie-card:hover,
.category-card:hover,
.type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.stat-card strong {
  display: block;
  color: var(--gray-900);
  font-size: 2rem;
}

.stat-card span {
  display: block;
  color: var(--gray-700);
  font-weight: 800;
}

.stat-card em {
  color: var(--gray-500);
  font-style: normal;
  font-size: 0.9rem;
}

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

.section-tint {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

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

.section-header h2,
.filter-title-row h2,
.rank-panel h2,
.side-card h2,
.detail-block h2,
.narrow-content h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.2;
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-600);
  font-weight: 800;
}

.section-more span {
  transition: transform 0.2s ease;
}

.section-more:hover span {
  transform: translateX(4px);
}

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1d4ed8, #06b6d4);
}

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

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

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgb(0 0 0 / 0.72));
}

.poster-play,
.big-play {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.22);
  color: #ffffff;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgb(0 0 0 / 0.28);
}

.poster-play {
  position: absolute;
  inset: 50% auto auto 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: 0.22s ease;
}

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

.poster-year,
.rank-number {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.poster-year {
  left: 12px;
  bottom: 12px;
  background: var(--blue-600);
}

.rank-number {
  right: 12px;
  top: 12px;
  background: rgb(15 23 42 / 0.72);
}

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

.movie-meta-line,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 8px;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.movie-card h3 {
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 1.12rem;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.ranking-title:hover,
.mini-card:hover strong {
  color: var(--blue-600);
}

.movie-card p {
  min-height: 52px;
  margin: 0 0 12px;
  color: var(--gray-600, #4b5563);
  font-size: 0.94rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.category-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background: linear-gradient(135deg, rgb(30 64 175 / 0.85), rgb(8 145 178 / 0.82)), var(--category-image) center / cover;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card.tall {
  min-height: 260px;
}

.category-card span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.18);
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.category-card h3 {
  margin: 46px 0 10px;
  font-size: 1.45rem;
}

.category-card p {
  margin: 0;
  color: rgb(255 255 255 / 0.86);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.rank-panel,
.side-card,
.detail-card,
.filter-panel,
.narrow-content,
.table-wrap,
.search-app {
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.rank-panel,
.side-card,
.detail-card,
.filter-panel,
.narrow-content {
  padding: 24px;
}

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

.mini-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: var(--gray-50);
}

.mini-poster {
  height: 64px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
}

.mini-info strong,
.mini-info em {
  display: block;
}

.mini-info strong {
  overflow: hidden;
  color: var(--gray-900);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-info em {
  color: var(--gray-500);
  font-size: 0.82rem;
  font-style: normal;
}

.mini-rank {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue-600);
  font-weight: 800;
  font-size: 0.8rem;
}

.page-hero {
  color: #ffffff;
  background: radial-gradient(circle at 20% 10%, rgb(34 211 238 / 0.32), transparent 28%), linear-gradient(135deg, #1e3a8a, #0f766e 72%, #0f172a);
}

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

.compact-hero p {
  margin-top: 14px;
}

.filter-panel {
  margin: 32px 0;
}

.filter-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.result-count {
  color: var(--blue-700);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.filter-grid label span {
  display: block;
  margin-bottom: 6px;
  color: var(--gray-700);
  font-weight: 800;
  font-size: 0.88rem;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: #ffffff;
  outline: none;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.12);
}

.filter-reset {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: var(--gray-900);
  cursor: pointer;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.type-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.type-card strong {
  color: var(--blue-600);
  font-size: 2rem;
}

.type-card h3 {
  margin: 8px 0;
  color: var(--gray-900);
}

.type-card p {
  margin: 0;
  color: var(--gray-500);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
}

.tag-link span {
  color: var(--blue-600);
  font-weight: 800;
}

.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.podium-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background: linear-gradient(180deg, rgb(15 23 42 / 0.08), rgb(15 23 42 / 0.88)), var(--podium-image) center / cover;
  box-shadow: var(--shadow-xl);
}

.podium-card span,
.podium-card strong {
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.18);
  backdrop-filter: blur(8px);
}

.podium-card h2 {
  margin: 14px 0 8px;
}

.podium-card p {
  margin: 0 0 12px;
  color: rgb(255 255 255 / 0.84);
}

.table-wrap {
  overflow-x: auto;
  margin: 0 0 60px;
}

.ranking-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.ranking-table th,
.ranking-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
}

.ranking-table th {
  color: var(--gray-700);
  background: var(--gray-50);
}

.score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  font-weight: 900;
}

.score-pill.large {
  min-width: 60px;
  height: 60px;
  font-size: 1.2rem;
}

.detail-page {
  padding: 38px 0 76px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000000;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
}

.video-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgb(37 99 235 / 0.28), rgb(0 0 0 / 0.68));
  cursor: pointer;
}

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

.player-overlay strong {
  font-size: 1.35rem;
}

.player-overlay em {
  color: rgb(255 255 255 / 0.72);
  font-style: normal;
}

.player-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #ffffff;
  background: rgb(185 28 28 / 0.9);
}

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

.detail-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.detail-title-row h1 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.detail-tags {
  margin: 18px 0;
}

.detail-block {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--gray-200);
}

.detail-block p,
.narrow-content p {
  color: var(--gray-700);
  font-size: 1.02rem;
}

.review-block {
  padding: 22px;
  border: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.detail-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  object-fit: cover;
  margin-bottom: 16px;
}

.info-list {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
}

.info-list dt {
  color: var(--gray-500);
}

.info-list dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 700;
}

.search-app-section {
  padding: 40px 0 76px;
}

.search-app {
  padding: 1px 24px 24px;
}

.narrow-content {
  max-width: 820px;
  margin: 0 auto;
}

.site-footer {
  color: rgb(209 213 219);
  background: #111827;
}

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

.footer-logo {
  color: #ffffff;
  margin-bottom: 14px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  color: rgb(156 163 175);
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

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

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid rgb(255 255 255 / 0.10);
  color: rgb(156 163 175);
}

.image-missing {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
}

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

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

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

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

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

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-xl);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-drop-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 8px;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .stat-grid,
  .movie-grid,
  .two-columns,
  .podium-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-header,
  .filter-title-row,
  .detail-title-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-card {
    grid-template-columns: 84px minmax(0, 1fr) auto;
  }

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