:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.86);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.18);
  --text: #ffffff;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 158, 11, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(59, 130, 246, 0.14), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand:hover {
  color: var(--accent);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #111827;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.32);
  font-size: 14px;
}

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

.nav-link {
  padding: 9px 12px;
  border-radius: 999px;
  color: #d1d5db;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
}

.header-search {
  position: relative;
  margin-left: auto;
  width: min(280px, 28vw);
}

.global-search-input,
.header-search input,
.wide-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #e5e7eb;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.52);
  outline: none;
}

.header-search input {
  padding: 10px 16px;
}

.global-search-input:focus,
.header-search input:focus,
.wide-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(245, 158, 11, 0.66);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.global-search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(420px, calc(100vw - 32px));
  max-height: 430px;
  overflow: auto;
  padding: 10px;
  display: none;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.global-search-panel.active {
  display: block;
}

.search-result-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 9px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.search-result-item:hover {
  background: rgba(148, 163, 184, 0.12);
}

.search-result-item img {
  width: 54px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
}

.search-result-item strong {
  display: block;
  color: #f8fafc;
  font-size: 14px;
  line-height: 1.3;
}

.search-result-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.mobile-nav.open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: #d1d5db;
}

.mobile-link.active,
.mobile-link:hover {
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-layer-side {
  background: linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.92) 28%, rgba(2, 6, 23, 0.36) 62%, rgba(2, 6, 23, 0.06) 100%);
}

.hero-layer-bottom {
  background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.84) 7%, transparent 48%);
}

.hero-content {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 760px;
  padding-top: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d1d5db;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

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

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.13);
  border: 1px solid rgba(245, 158, 11, 0.24);
  font-size: 12px;
}

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

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.primary-btn {
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.28);
}

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

.ghost-btn,
.section-link {
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.42);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.68);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

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

.content-section,
.panel-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.search-hero {
  margin-top: -54px;
  position: relative;
  z-index: 8;
}

.search-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-card span {
  color: #fbbf24;
  font-weight: 800;
  font-size: 13px;
}

.search-card h2 {
  grid-column: 1;
  margin: 6px 0 0;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.14;
}

.search-card p {
  grid-column: 1;
  margin: 12px 0 0;
  color: var(--muted-strong);
  line-height: 1.8;
}

.wide-search {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 3;
}

.wide-search input {
  min-height: 54px;
  padding: 0 18px;
}

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

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

.section-heading p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-link {
  min-width: 116px;
  min-height: 40px;
  color: #fbbf24;
}

.movie-grid {
  display: grid;
  gap: 20px;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: transform 0.22s ease, border 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.38);
  background: rgba(15, 23, 42, 0.92);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.movie-card:hover .poster-link img,
.category-tile:hover img,
.category-cover:hover img {
  transform: scale(1.08);
}

.poster-shade,
.tile-shade,
.category-cover span {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.02) 58%);
}

.poster-meta {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.35;
}

.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 34px;
  min-height: 34px;
  display: grid;
  place-items: center;
  color: #111827;
  background: #fbbf24;
  border-radius: 12px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.card-body {
  padding: 13px;
}

.card-body h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 16px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: #fbbf24;
}

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

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: #0f172a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-tile strong,
.category-tile small {
  position: relative;
  z-index: 2;
}

.category-tile strong {
  font-size: 22px;
  margin-bottom: 8px;
}

.category-tile small {
  color: #d1d5db;
  line-height: 1.55;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: stretch;
}

.compact-card .poster-link {
  aspect-ratio: auto;
  height: 100%;
  min-height: 156px;
}

.compact-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.page-main {
  padding-top: 96px;
}

.page-hero {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  min-height: 360px;
  margin: 0 auto 34px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 42px;
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.82));
  box-shadow: var(--shadow);
}

.small-hero {
  min-height: 280px;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.66), rgba(2, 6, 23, 0.12));
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.02;
}

.page-hero p {
  margin: 16px 0 0;
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 17px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 14px;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.filter-bar input,
.filter-bar select {
  min-height: 46px;
  padding: 0 16px;
}

.filter-bar select {
  appearance: none;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.category-cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
}

.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.category-overview-card h2 a:hover {
  color: #fbbf24;
}

.category-overview-card p {
  color: var(--muted);
  line-height: 1.7;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mini-links a {
  padding: 7px 10px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
  border-radius: 999px;
  font-size: 13px;
}

.breadcrumb {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: center;
  padding: 26px;
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: var(--shadow);
}

.detail-cover {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

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

.detail-info h1 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.05;
}

.detail-line {
  margin: 18px 0 20px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}

.large-tags span {
  min-height: 32px;
  padding-inline: 12px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.detail-meta div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.46);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.detail-meta small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.detail-meta strong {
  display: block;
  color: #ffffff;
  line-height: 1.35;
}

.player-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background: #000;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow);
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.34));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.34);
  font-size: 30px;
}

.player-overlay strong {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
}

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

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

.text-panel {
  padding: 24px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.text-panel h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.text-panel p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.9;
}

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

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 34px;
}

.footer-brand p {
  max-width: 540px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.1);
}

.footer-links a:hover {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
}

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

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

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

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

  .hero-copy {
    padding-top: 74px;
  }

  .hero-arrow {
    display: none;
  }

  .search-card,
  .footer-inner,
  .detail-text,
  .detail-hero,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .wide-search {
    grid-column: 1;
    grid-row: auto;
  }

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

  .rank-list {
    grid-template-columns: 1fr;
  }

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

  .detail-cover {
    max-width: 340px;
  }

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

@media (max-width: 560px) {
  .header-inner {
    height: 62px;
  }

  .brand span:last-child {
    max-width: 7em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 76vh;
  }

  .hero h1,
  .page-hero h1,
  .detail-info h1 {
    letter-spacing: -0.02em;
  }

  .hero p,
  .detail-line,
  .page-hero p {
    font-size: 15px;
  }

  .content-section,
  .panel-section,
  .page-hero,
  .detail-hero,
  .player-section,
  .breadcrumb {
    width: min(100% - 22px, 1240px);
  }

  .page-hero,
  .detail-hero,
  .search-card {
    padding: 18px;
    border-radius: 22px;
  }

  .category-grid,
  .six-grid,
  .category-movie-grid {
    gap: 12px;
  }

  .movie-card {
    border-radius: 15px;
  }

  .card-body {
    padding: 11px;
  }

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

  .card-body p {
    font-size: 12px;
  }

  .compact-card {
    grid-template-columns: 92px 1fr;
  }

  .compact-card .poster-link {
    min-height: 134px;
  }

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

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

  .player-overlay span {
    width: 66px;
    height: 66px;
  }
}
