:root {
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: #111827;
  --card: #1e293b;
  --line: #1f2937;
  --muted: #94a3b8;
  --text: #f8fafc;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --orange: #fb923c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.12), transparent 32rem), var(--bg);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(14px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00131a;
  background: linear-gradient(135deg, var(--cyan), #67e8f9);
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(34, 211, 238, 0.3);
  font-size: 14px;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

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

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

.desktop-nav > a,
.nav-dropdown > a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.nav-dropdown > a.is-active {
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  width: 190px;
  display: grid;
  padding: 10px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.dropdown-panel a {
  padding: 10px 12px;
  color: #cbd5e1;
  border-radius: 10px;
}

.dropdown-panel a:hover {
  color: #fff;
  background: rgba(148, 163, 184, 0.12);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search,
.mobile-panel form,
.search-panel,
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search input,
.mobile-panel input,
.search-panel input,
.search-panel select,
.filter-bar input,
.filter-bar select {
  height: 40px;
  color: #fff;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  outline: none;
  padding: 0 14px;
  transition: 0.2s ease;
}

.header-search input:focus,
.mobile-panel input:focus,
.search-panel input:focus,
.search-panel select:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.header-search button,
.mobile-panel button,
.search-panel button {
  height: 40px;
  padding: 0 18px;
  color: #00131a;
  font-weight: 700;
  background: var(--cyan);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
}

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

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

.mobile-panel-inner {
  padding: 14px 0 20px;
}

.mobile-panel form {
  width: 100%;
  margin-bottom: 14px;
}

.mobile-panel input {
  flex: 1;
}

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

.mobile-panel nav a {
  padding: 10px 12px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.7);
  border-radius: 12px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #020617 3%, rgba(2, 6, 23, 0.74) 46%, rgba(2, 6, 23, 0.18));
}

.hero-content {
  position: absolute;
  inset: auto 0 0;
  padding-bottom: 88px;
  max-width: 1180px;
}

.pill,
.detail-tags a,
.tag-row span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #a5f3fc;
  background: rgba(6, 182, 212, 0.16);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
}

.pill {
  padding: 6px 12px;
  margin-bottom: 18px;
  font-size: 14px;
}

.hero-content h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

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

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  color: #cbd5e1;
}

.hero-meta span,
.detail-meta span {
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.primary-action,
.side-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: #00131a;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), #67e8f9);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(34, 211, 238, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-action:hover,
.side-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(34, 211, 238, 0.36);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  color: #fff;
  background: rgba(2, 6, 23, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  font-size: 38px;
  line-height: 1;
  transition: 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(2, 6, 23, 0.82);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.home-stack,
.page-main {
  padding-bottom: 70px;
}

.home-stack {
  display: grid;
  gap: 70px;
  padding-top: 70px;
}

.content-section,
.player-section,
.detail-layout {
  margin-top: 56px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.section-heading span {
  color: var(--cyan);
}

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

.split-heading {
  justify-content: space-between;
}

.split-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.split-heading a {
  color: var(--cyan);
  font-weight: 700;
}

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

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

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

.movie-card {
  min-width: 0;
}

.poster-card {
  position: relative;
  display: block;
  transform: translateY(0);
  transition: transform 0.24s ease;
}

.poster-card:hover {
  transform: translateY(-6px);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.poster-frame img,
.large-card img,
.horizontal-thumb img,
.rank-thumb img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.poster-card:hover img,
.large-card:hover img,
.horizontal-card:hover img {
  transform: scale(1.08);
}

.poster-shade,
.large-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.34) 48%, transparent);
}

.poster-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(2, 6, 23, 0.74);
  border-radius: 9px;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.poster-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.poster-info strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.poster-info small {
  display: -webkit-box;
  overflow: hidden;
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.tag-row span,
.detail-tags a {
  padding: 3px 8px;
  font-size: 12px;
}

.feature-panel,
.category-panel,
.ranking-box,
.player-panel,
.side-card,
.search-panel {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.82));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-panel,
.category-panel,
.ranking-box {
  padding: clamp(24px, 4vw, 44px);
}

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

.horizontal-card {
  display: flex;
  gap: 16px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.64);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 18px;
  transition: 0.2s ease;
}

.horizontal-card:hover {
  background: rgba(30, 41, 59, 0.86);
}

.horizontal-thumb {
  width: 150px;
  flex: 0 0 150px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111827;
  border-radius: 14px;
}

.horizontal-copy {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
}

.horizontal-copy strong,
.rank-copy strong {
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.horizontal-copy small,
.rank-copy em,
.horizontal-copy em {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.category-card {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 22px;
  background: radial-gradient(circle at 10% 20%, rgba(34, 211, 238, 0.22), transparent 42%), rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  transition: 0.24s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.46);
}

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

.category-card span {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.65;
}

.two-column-showcase {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 30px;
  align-items: start;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 44px 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  transition: 0.2s ease;
}

.rank-item:hover {
  background: rgba(30, 41, 59, 0.88);
}

.rank-num {
  color: var(--cyan);
  font-weight: 900;
  font-size: 18px;
  text-align: center;
}

.rank-thumb {
  width: 64px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111827;
  border-radius: 12px;
}

.rank-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 36px;
  background: radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.16), transparent 34rem), linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0));
}

.slim-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.slim-hero p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.eyebrow {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.filter-bar,
.search-panel {
  padding: 18px;
  margin-bottom: 26px;
}

.filter-bar input,
.search-panel input {
  flex: 1;
  min-width: 180px;
}

.search-panel {
  flex-wrap: wrap;
}

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

.large-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 34px;
}

.large-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  display: block;
  background: #111827;
  border-radius: 24px;
}

.large-card img {
  position: absolute;
  inset: 0;
}

.large-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 10px;
  padding: 26px;
}

.large-copy strong {
  font-size: 26px;
}

.large-copy em,
.large-copy small {
  color: #cbd5e1;
  font-style: normal;
  line-height: 1.55;
}

.rank-page-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
  background: #020617;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.58)), var(--poster-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.15);
  transform: scale(1.05);
}

.detail-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #111827;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.breadcrumb a:hover {
  color: var(--cyan);
}

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-copy p {
  max-width: 820px;
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.75;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.player-panel {
  padding: clamp(18px, 3vw, 32px);
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), rgba(2, 6, 23, 0.78));
  border: 0;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-pulse {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00131a;
  background: var(--cyan);
  border-radius: 999px;
  font-size: 30px;
  box-shadow: 0 0 0 16px rgba(34, 211, 238, 0.16), 0 18px 42px rgba(34, 211, 238, 0.3);
}

.player-cover strong {
  font-size: 20px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.detail-article {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
}

.detail-article h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.detail-article p {
  margin: 0 0 28px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 2;
}

.detail-article p:last-child {
  margin-bottom: 0;
}

.side-card {
  padding: 24px;
  position: sticky;
  top: 92px;
}

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

.side-card dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 16px;
  margin: 0 0 22px;
}

.side-card dt {
  color: var(--muted);
}

.side-card dd {
  margin: 0;
  color: #fff;
}

.side-link {
  width: 100%;
}

.site-footer {
  margin-top: 70px;
  background: rgba(15, 23, 42, 0.92);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 46px 0;
}

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

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

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #cbd5e1;
}

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

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

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

.empty-results {
  grid-column: 1 / -1;
  padding: 34px;
  color: #cbd5e1;
  text-align: center;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 22px;
}

@media (max-width: 1100px) {
  .header-search {
    display: none;
  }

  .poster-grid,
  .catalog-grid,
  .search-results {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .two-column-showcase,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }
}

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

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    height: 78vh;
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .hero-arrow {
    display: none;
  }

  .poster-grid,
  .catalog-grid,
  .movie-grid,
  .search-results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .horizontal-grid,
  .rank-page-list,
  .large-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero-inner {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 22px;
  }

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

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

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

  .brand-copy em {
    display: none;
  }

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

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

  .poster-grid,
  .catalog-grid,
  .movie-grid,
  .search-results,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .horizontal-card {
    gap: 12px;
  }

  .horizontal-thumb {
    width: 112px;
    flex-basis: 112px;
  }

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

  .detail-poster {
    width: 210px;
  }

  .detail-copy p {
    font-size: 16px;
  }

  .filter-bar,
  .search-panel {
    display: grid;
  }

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