:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --yellow-300: #fde047;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.18);
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-900);
  background: linear-gradient(135deg, #fff7ed 0%, #f8fafc 38%, #fee2e2 100%);
  font-family: 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,
video {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.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);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red-600), var(--orange-500));
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.26);
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong,
.footer-brand strong {
  color: var(--slate-900);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--slate-500);
  font-size: 12px;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--slate-600);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--red-600);
  transform: translateY(-1px);
}

.nav-divider {
  width: 1px;
  height: 18px;
  background: var(--slate-200);
}

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

.nav-search input,
.filter-bar input,
.big-search input {
  width: 260px;
  border: 1px solid var(--slate-300);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--slate-800);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-search input:focus,
.filter-bar input:focus,
.big-search input:focus {
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.nav-search button,
.filter-bar button,
.big-search button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--red-600), var(--orange-500));
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.18);
  cursor: pointer;
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--slate-700);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.34), transparent 35%), linear-gradient(135deg, #7f1d1d 0%, #111827 52%, #431407 100%);
}

.hero-track {
  position: relative;
  min-height: 680px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 50px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 92px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-image {
  order: 2;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
}

.hero-image::after,
.poster-wrap::after,
.detail-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.54));
  pointer-events: none;
}

.hero-image img,
.poster-wrap img,
.detail-poster img,
.category-thumbs img,
.wide-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, opacity 0.2s ease;
}

.image-missing {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-kicker,
.detail-kicker,
.section-heading p,
.page-hero p {
  margin: 0 0 12px;
  color: var(--yellow-300);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1,
.hero-main-title {
  max-width: 780px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 950;
  color: transparent;
  background: linear-gradient(90deg, #fef3c7, #ffffff, #fde047);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-content h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
}

.hero-summary {
  max-width: 640px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #fee2e2;
  background: rgba(255, 255, 255, 0.12);
}

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

.primary-btn,
.ghost-btn,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--orange-500));
  box-shadow: 0 18px 38px rgba(220, 38, 38, 0.28);
}

.ghost-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
  transform: translateY(-2px);
}

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

.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(--white);
}

.quick-panel,
.section-block,
.footer-shell,
.detail-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -48px;
  position: relative;
  z-index: 6;
}

.quick-card,
.text-card,
.category-card,
.player-card,
.movie-card,
.wide-card,
.filter-panel {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.quick-card {
  padding: 24px;
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 6px;
  backdrop-filter: blur(14px);
}

.quick-card strong {
  color: var(--red-600);
  font-size: 28px;
  font-weight: 950;
}

.quick-card span {
  color: var(--slate-600);
  font-weight: 700;
}

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

.section-heading {
  margin: 0 0 28px;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.inline-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-more {
  min-height: 42px;
  color: var(--red-600);
  background: #fee2e2;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--slate-800);
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.category-buttons a:hover {
  color: var(--red-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.movie-card {
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-card:hover img,
.wide-card:hover img,
.category-card:hover img,
.hero-slide.is-active .hero-image:hover img {
  transform: scale(1.07);
}

.movie-link {
  display: grid;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fee2e2 55%, #e2e8f0);
}

.poster-region,
.card-rank {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  background: rgba(220, 38, 38, 0.92);
}

.poster-region {
  top: 12px;
  left: 12px;
}

.card-rank {
  right: 12px;
  bottom: 12px;
  background: rgba(15, 23, 42, 0.78);
}

.movie-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.movie-body h3,
.wide-body h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.movie-card:hover h3,
.wide-card:hover h3 {
  color: var(--red-600);
}

.movie-body p,
.wide-body p {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 800;
}

.tag-row span {
  color: var(--red-700);
  background: #fee2e2;
}

.warm-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1240px) / 2));
  padding-right: max(16px, calc((100% - 1240px) / 2));
  padding-bottom: 72px;
  background: linear-gradient(90deg, rgba(254, 242, 242, 0.92), rgba(255, 247, 237, 0.92));
}

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

.wide-card {
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.wide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.wide-card a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  min-height: 160px;
  padding: 16px;
}

.wide-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #fed7aa, #fee2e2, #e2e8f0);
}

.wide-body {
  display: grid;
  align-content: center;
  gap: 10px;
}

.wide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 900;
}

.wide-rank {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--orange-500));
  border-radius: 999px;
  padding: 5px 10px;
}

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

.category-card {
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 170px;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #fed7aa);
}

.category-card-body {
  padding: 24px;
}

.category-card-body h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-card-body p {
  margin: 0 0 18px;
  color: var(--slate-600);
}

.category-card-body span {
  color: var(--red-600);
  font-weight: 900;
}

.page-hero {
  color: var(--white);
  background: radial-gradient(circle at 18% 20%, rgba(253, 224, 71, 0.24), transparent 28%), linear-gradient(135deg, #7f1d1d, #9a3412 46%, #111827);
}

.small-hero {
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 76px 16px;
}

.small-hero h1 {
  color: var(--white);
  font-size: clamp(38px, 7vw, 72px);
}

.small-hero span {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.filter-panel {
  padding: 28px;
}

.filter-bar,
.big-search {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-bar input,
.big-search input {
  width: min(680px, 100%);
  flex: 1;
}

.empty-state {
  display: none;
  margin: 36px 0 0;
  padding: 28px;
  border-radius: var(--radius-md);
  color: var(--slate-600);
  text-align: center;
  background: var(--slate-100);
}

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

.detail-main {
  background: linear-gradient(135deg, #fff7ed 0%, #f8fafc 45%, #fee2e2 100%);
}

.detail-hero {
  padding: 44px 0 72px;
  color: var(--white);
  background: radial-gradient(circle at 80% 15%, rgba(253, 224, 71, 0.22), transparent 30%), linear-gradient(135deg, #111827, #7f1d1d 50%, #431407);
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: var(--yellow-300);
}

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

.detail-poster {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #fed7aa, #fee2e2, #e2e8f0);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

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

.player-section {
  margin-top: -48px;
  position: relative;
  z-index: 3;
}

.player-card {
  position: relative;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(220, 38, 38, 0.16), rgba(0, 0, 0, 0.46));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding-left: 5px;
  font-size: 38px;
  background: linear-gradient(135deg, var(--red-600), var(--orange-500));
  box-shadow: 0 20px 54px rgba(220, 38, 38, 0.46);
}

.player-card.is-playing .player-start {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.text-card {
  padding: 34px;
}

.text-card h2 {
  margin: 0 0 14px;
  color: var(--slate-900);
  font-size: 28px;
}

.text-card p {
  margin: 0 0 28px;
  color: var(--slate-700);
  font-size: 17px;
}

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

.info-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  padding: 16px 18px;
  background: var(--slate-100);
}

.info-list strong {
  color: var(--slate-900);
}

.info-list span {
  color: var(--red-600);
  font-weight: 900;
  text-align: right;
}

.site-footer {
  margin-top: 84px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-950), #172554 52%, #7f1d1d);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand p {
  max-width: 680px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .nav-shell {
    align-items: flex-start;
    padding: 16px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    border: 1px solid var(--slate-200);
    border-radius: 0 0 22px 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
  }

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

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .nav-divider {
    width: 100%;
    height: 1px;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 60px;
  }

  .hero-image {
    order: 0;
  }

  .quick-panel {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 760px) {
  .nav-shell,
  .quick-panel,
  .section-block,
  .footer-shell,
  .detail-shell {
    width: min(100% - 24px, 1240px);
  }

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

  .hero,
  .hero-track {
    min-height: 760px;
  }

  .hero-slide {
    min-height: 760px;
    padding: 44px 0 82px;
  }

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

  .hero-content h2 {
    font-size: 30px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .quick-panel,
  .movie-grid,
  .featured-grid,
  .compact-grid,
  .wide-grid,
  .category-overview-grid,
  .detail-layout,
  .info-list,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    margin-top: 18px;
  }

  .wide-card a {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
  }

  .wide-card figure {
    min-height: 150px;
  }

  .detail-layout {
    gap: 26px;
  }

  .detail-poster {
    width: min(280px, 100%);
  }

  .inline-heading,
  .filter-bar,
  .big-search {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (max-width: 460px) {
  .wide-card a {
    grid-template-columns: 1fr;
  }

  .poster-wrap {
    aspect-ratio: 4 / 5;
  }

  .filter-panel {
    padding: 18px;
  }

  .text-card {
    padding: 24px;
  }
}
