:root {
  color-scheme: light;
  --bg: #f8fafc;
  --bg-soft: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --card: #ffffff;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --blue: #2563eb;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

img.is-missing {
  opacity: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.12);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35);
}

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

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0.04em;
}

.brand-text small {
  color: #cbd5e1;
  font-size: 12px;
}

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

.nav-link,
.mobile-link {
  color: #cbd5e1;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.active,
.mobile-link.active {
  color: #ffffff;
  background: rgba(245, 158, 11, 0.95);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-search,
.mobile-search {
  display: flex;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(226, 232, 240, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.header-search input,
.mobile-search input {
  width: 210px;
  padding: 11px 14px;
  color: #ffffff;
  background: transparent;
  border: 0;
  outline: 0;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: #94a3b8;
}

.header-search button,
.mobile-search button {
  padding: 0 16px;
  border: 0;
  color: #ffffff;
  background: var(--primary);
  cursor: pointer;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
}

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

.mobile-nav {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.9s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-bg,
.detail-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(245, 158, 11, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.68), rgba(15, 23, 42, 0.92)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.92), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  align-items: center;
  gap: 64px;
  padding: 80px 0 110px;
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 7px 13px;
  margin-bottom: 16px;
  color: #fff7ed;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.92), rgba(249, 115, 22, 0.9));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 700px;
  color: #dbeafe;
  font-size: clamp(18px, 2vw, 24px);
}

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

.hero-tags span,
.detail-meta span,
.tag-row span,
.meta-row span {
  color: #475569;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span,
.detail-meta span {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

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

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

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.3);
}

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

.btn.reset {
  color: #0f172a;
  background: #e2e8f0;
}

.btn.full {
  width: 100%;
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(15, 23, 42, 0.4));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 28px;
  backdrop-filter: blur(12px);
}

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

.hero-dot {
  width: 34px;
  height: 7px;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 999px;
}

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

.section-block {
  padding: 64px 0;
}

.section-stack {
  display: grid;
  gap: 48px;
  padding-bottom: 80px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-more {
  color: var(--blue);
  font-weight: 800;
}

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

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

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

.movie-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(245, 158, 11, 0.22), transparent 34%),
    linear-gradient(135deg, #1e293b, #0f172a);
}

.poster-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.play-mark,
.rank-badge {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  font-weight: 900;
}

.play-mark {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: rgba(245, 158, 11, 0.9);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  left: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: #0f172a;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.tag-row {
  gap: 6px;
  margin-bottom: 12px;
}

.tag-row span {
  color: #92400e;
  background: #fffbeb;
}

.meta-row {
  justify-content: space-between;
  color: #64748b;
  font-size: 12px;
}

.meta-row span {
  color: #64748b;
  background: transparent;
  padding: 0;
}

.category-band {
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 158, 11, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #f1f5f9);
}

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

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 22px;
  color: #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%);
}

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-icon {
  display: block;
  font-size: 34px;
  margin-bottom: 12px;
}

.category-card strong,
.category-card small,
.category-card em {
  display: block;
}

.category-card strong {
  font-size: 22px;
}

.category-card small {
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, 0.86);
}

.category-card em {
  font-style: normal;
  font-weight: 900;
}

.from-amber { background: linear-gradient(135deg, #f59e0b, #f97316); }
.from-blue { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.from-red { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.from-purple { background: linear-gradient(135deg, #7c3aed, #c026d3); }
.from-slate { background: linear-gradient(135deg, #334155, #0f172a); }
.from-pink { background: linear-gradient(135deg, #ec4899, #fb7185); }
.from-cyan { background: linear-gradient(135deg, #0891b2, #0ea5e9); }
.from-orange { background: linear-gradient(135deg, #f97316, #dc2626); }
.from-green { background: linear-gradient(135deg, #16a34a, #059669); }
.from-gold { background: linear-gradient(135deg, #ca8a04, #92400e); }

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.rank-panel,
.prose-card,
.filter-toolbar,
.table-wrap,
.player-shell {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.rank-panel h2 {
  margin: 0 0 8px;
}

.rank-panel p {
  color: var(--muted);
}

.rank-panel ol {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0;
}

.rank-panel a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.rank-panel b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  background: #0f172a;
  border-radius: 10px;
}

.rank-panel span {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-panel em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.25), transparent 28%),
    linear-gradient(135deg, #0f172a, #1e293b 60%, #111827);
}

.small-hero .container {
  padding: 76px 0;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  max-width: 780px;
  color: #cbd5e1;
  font-size: 18px;
}

.category-hero {
  background-blend-mode: overlay;
}

.filter-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(130px, 160px)) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  margin-bottom: 20px;
}

.filter-toolbar:has([data-filter-select="category"]) {
  grid-template-columns: minmax(220px, 1fr) repeat(4, minmax(130px, 150px)) auto;
}

.filter-toolbar label {
  display: grid;
  gap: 6px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.filter-toolbar input,
.filter-toolbar select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  outline: 0;
}

.filter-toolbar input:focus,
.filter-toolbar select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.filter-count {
  margin: -6px 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.table-section {
  padding-top: 0;
}

.table-wrap {
  overflow: auto;
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.rank-table th,
.rank-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.rank-table th {
  color: #475569;
  background: #f8fafc;
  font-size: 13px;
}

.rank-table a {
  color: #0f172a;
  font-weight: 900;
}

.rank-table a:hover {
  color: var(--primary-dark);
}

.detail-hero {
  min-height: 620px;
}

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

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.72)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.98), transparent 45%);
  backdrop-filter: blur(8px);
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  padding: 34px 0 78px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  color: #cbd5e1;
  font-weight: 700;
}

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

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

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

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

.detail-copy .lead {
  max-width: 820px;
  color: #dbeafe;
  font-size: 20px;
}

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

.player-section {
  padding-bottom: 34px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #020617;
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 42%, rgba(245, 158, 11, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.86));
  border: 0;
  cursor: pointer;
}

.player-overlay.hidden {
  display: none;
}

.player-play {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: #111827;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  font-size: 34px;
}

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

.player-overlay small {
  color: #cbd5e1;
}

.player-message {
  position: absolute;
  left: 18px;
  bottom: 12px;
  margin: 0;
  color: #fef3c7;
  font-size: 13px;
}

.prose-card {
  padding: 30px;
}

.prose-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.prose-card p {
  color: #334155;
  font-size: 17px;
}

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

.info-list div {
  padding: 14px;
  background: #f8fafc;
  border-radius: 14px;
}

.info-list dt {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.info-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
}

.sitemap-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.sitemap-list a {
  font-weight: 900;
}

.sitemap-list span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 56px 0 24px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

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

.footer-grid p {
  color: #94a3b8;
}

.footer-stat {
  color: #fbbf24 !important;
  font-weight: 800;
}

.footer-grid h3 {
  color: #ffffff;
  margin-top: 0;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid rgba(226, 232, 240, 0.12);
  color: #94a3b8;
}

.hidden-by-filter {
  display: none !important;
}

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

  .menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-poster {
    width: min(320px, 75vw);
    transform: none;
  }

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

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

  .rank-panel {
    position: static;
  }

  .filter-toolbar,
  .filter-toolbar:has([data-filter-select="category"]) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  .brand-text small {
    display: none;
  }

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

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

  .hero-content {
    padding: 54px 0 96px;
  }

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

  .section-heading,
  .footer-bottom {
    display: block;
  }

  .catalog-grid,
  .movie-grid,
  .featured-grid,
  .category-grid,
  .category-grid.large,
  .sitemap-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .card-title {
    min-height: 42px;
    font-size: 15px;
  }

  .filter-toolbar,
  .filter-toolbar:has([data-filter-select="category"]),
  .info-list {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    gap: 24px;
  }

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

  .prose-card {
    padding: 20px;
  }

  .mobile-search input {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .catalog-grid,
  .movie-grid,
  .featured-grid,
  .category-grid,
  .category-grid.large,
  .sitemap-list {
    grid-template-columns: 1fr;
  }
}
