:root {
  color-scheme: light;
  --bg: #f7fbf8;
  --surface: #ffffff;
  --surface-soft: #ecfdf5;
  --text: #111827;
  --muted: #64748b;
  --line: #dbe6df;
  --brand: #059669;
  --brand-dark: #047857;
  --brand-soft: #d1fae5;
  --accent: #0f766e;
  --warning: #f59e0b;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(16, 185, 129, 0.14), transparent 28rem),
    linear-gradient(180deg, #f8fffb 0%, #f5fbf8 46%, #ffffff 100%);
  color: var(--text);
  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 {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(16, 185, 129, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.08);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 16px 28px rgba(5, 150, 105, 0.24);
}

.brand-text {
  font-size: clamp(20px, 2.5vw, 28px);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #334155;
  font-weight: 700;
  transition: 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--brand-soft);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  border-radius: 99px;
  background: var(--brand-dark);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #061b16;
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 23, 18, 0.94) 0%, rgba(3, 23, 18, 0.78) 38%, rgba(3, 23, 18, 0.42) 100%),
    radial-gradient(circle at 82% 18%, rgba(16, 185, 129, 0.45), transparent 24rem);
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  opacity: 0.62;
}

.hero-background img.is-missing {
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding: 72px 0 112px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  color: #ffffff;
  max-width: 760px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-kicker {
  color: #a7f3d0;
  background: rgba(6, 95, 70, 0.55);
  border: 1px solid rgba(167, 243, 208, 0.3);
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.hero-desc {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-tags span,
.tag-list span {
  border: 1px solid rgba(5, 150, 105, 0.18);
  color: var(--brand-dark);
  background: rgba(209, 250, 229, 0.86);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #ecfdf5;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-actions,
.card-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.22s ease;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 16px 28px rgba(5, 150, 105, 0.28);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(5, 150, 105, 0.36);
}

.button-ghost {
  color: var(--brand-dark);
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.18);
}

.button-ghost:hover {
  color: #ffffff;
  background: var(--brand-dark);
}

.hero .button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-poster {
  justify-self: end;
  width: min(100%, 420px);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(1.2deg);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: 0.22s ease;
}

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

.hero-search,
.page-search {
  display: flex;
  align-items: center;
  width: min(100%, 540px);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.hero-search input,
.page-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  padding: 0 16px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search button,
.page-search button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 900;
}

.section {
  padding: 74px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(209, 250, 229, 0.46), rgba(255, 255, 255, 0.72));
}

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.filter-panel h1 {
  margin: 12px 0 8px;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading p,
.page-hero p,
.filter-panel p {
  max-width: 720px;
  color: var(--muted);
}

.section-more,
.text-link {
  color: var(--brand-dark);
  font-weight: 900;
}

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

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

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

.movie-card,
.category-card,
.category-large-card,
.rank-card,
.detail-main-card,
.detail-side-card,
.rank-panel,
.filter-panel,
.text-page {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(5, 150, 105, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

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

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

.movie-poster-link,
.rank-card-poster {
  position: relative;
  display: block;
  overflow: hidden;
}

.poster-box {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(16, 185, 129, 0.35), transparent 14rem),
    linear-gradient(135deg, #064e3b, #111827 70%);
}

.poster-box::after {
  content: attr(data-title);
  position: absolute;
  inset: auto 12px 12px;
  display: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.poster-box.poster-missing::after {
  display: block;
}

.poster-portrait {
  aspect-ratio: 3 / 4.1;
}

.poster-wide {
  aspect-ratio: 16 / 10;
}

.poster-image,
.category-visual img,
.category-large-cover img,
.rank-card-poster img,
.detail-bg img,
.category-large-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.poster-image.is-missing,
.category-visual img.is-missing,
.category-large-cover img.is-missing,
.detail-bg img.is-missing {
  opacity: 0;
}

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

.play-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: #ffffff;
  background: rgba(5, 150, 105, 0.92);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

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

.movie-meta-line,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.movie-meta-line span,
.detail-meta span {
  display: inline-flex;
  border-radius: 999px;
  background: #f1f5f9;
  padding: 3px 8px;
}

.movie-card h3,
.rank-card h2 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.movie-card h3 a:hover,
.rank-card h2 a:hover,
.category-large-card h2 a:hover {
  color: var(--brand-dark);
}

.movie-one-line,
.rank-card p {
  color: var(--muted);
  font-size: 14px;
}

.card-actions {
  justify-content: space-between;
  margin-top: 16px;
}

.text-link.muted {
  color: var(--muted);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #ffffff;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.category-card > div:not(.category-visual) {
  position: relative;
  z-index: 2;
}

.category-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #064e3b, #111827);
}

.category-visual img {
  opacity: 0.72;
}

.category-card h3 {
  margin: 0 0 7px;
  font-size: 20px;
}

.category-card p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.category-card span {
  font-weight: 900;
  color: #a7f3d0;
}

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

.rank-panel {
  position: sticky;
  top: 100px;
  padding: 22px;
}

.rank-panel-head span {
  color: var(--brand-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.rank-panel-head h2 {
  margin: 6px 0 8px;
  font-size: 28px;
}

.rank-panel-head p {
  color: var(--muted);
  font-size: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.rank-num,
.rank-score,
.rank-medal {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
}

.rank-num {
  padding: 5px 0;
}

.rank-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.rank-score {
  padding: 4px 10px;
  font-size: 12px;
}

.rank-more {
  width: 100%;
  margin-top: 18px;
}

.page-hero {
  padding: 72px 0 24px;
}

.text-center {
  text-align: center;
}

.center-actions {
  justify-content: center;
}

.category-large-grid,
.rank-list {
  display: grid;
  gap: 20px;
}

.category-large-card,
.rank-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  overflow: hidden;
}

.category-large-cover,
.rank-card-poster {
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b, #111827);
}

.category-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.category-mini-list a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel {
  padding: 22px;
  margin-bottom: 24px;
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px 160px 160px;
  gap: 12px;
  margin-top: 18px;
}

.filter-input,
.filter-controls select,
.page-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  padding: 0 14px;
  outline: 0;
}

.filter-input:focus,
.filter-controls select:focus,
.page-search input:focus {
  border-color: rgba(5, 150, 105, 0.56);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.13);
}

.filter-count,
.search-status {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.rank-card {
  grid-template-columns: 140px minmax(0, 1fr);
}

.rank-card-poster {
  min-height: 190px;
}

.rank-medal {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  min-width: 34px;
  padding: 5px 8px;
}

.rank-card-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  font-weight: 900;
  color: var(--brand-dark);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #061b16;
}

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

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 23, 18, 0.95), rgba(3, 23, 18, 0.72), rgba(3, 23, 18, 0.38));
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.12) blur(1px);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 66px 0;
}

.detail-poster-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #a7f3d0;
  font-weight: 900;
}

.detail-copy h1 {
  color: #ffffff;
}

.detail-one-line {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.detail-meta span {
  color: #ecfdf5;
  background: rgba(255, 255, 255, 0.12);
}

.detail-tags span {
  color: #ecfdf5;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.player-shell {
  background: #071812;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 45%, rgba(16, 185, 129, 0.32), transparent 18rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.58));
  text-align: center;
}

.player-shell.is-playing .player-overlay {
  display: none;
}

.player-play-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 18px 44px rgba(5, 150, 105, 0.42);
  font-size: 34px;
}

.player-overlay strong {
  font-size: 28px;
}

.player-overlay em {
  color: #a7f3d0;
  font-style: normal;
  font-weight: 800;
}

.player-message {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  pointer-events: none;
}

.source-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
  background: #061b16;
}

.source-tabs button {
  border: 1px solid rgba(167, 243, 208, 0.24);
  color: #a7f3d0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 900;
}

.source-tabs button.is-active {
  color: #ffffff;
  background: var(--brand);
}

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

.detail-main-card,
.detail-side-card,
.text-page {
  padding: 28px;
}

.detail-main-card h2,
.detail-side-card h2,
.text-page h2 {
  margin: 12px 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.detail-main-card p,
.text-page p {
  color: #334155;
  font-size: 17px;
}

.section-kicker.mt {
  margin-top: 28px;
}

.detail-side-card dl {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px 14px;
}

.detail-side-card dt {
  color: var(--muted);
  font-weight: 900;
}

.detail-side-card dd {
  margin: 0;
  font-weight: 800;
}

.page-search {
  margin-top: 24px;
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
}

.page-search input {
  border: 0;
}

.site-footer {
  margin-top: 60px;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, #061b16, #111827);
}

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

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

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

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: #a7f3d0;
}

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

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

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

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

  .rank-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(5, 150, 105, 0.14);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: 700px;
    grid-template-columns: 1fr;
    padding-top: 52px;
    gap: 26px;
  }

  .hero-poster {
    justify-self: start;
    width: min(100%, 340px);
  }

  .hero-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search {
    width: 100%;
  }

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

  .section-heading {
    display: block;
  }

  .section-more {
    display: inline-flex;
    margin-top: 16px;
  }

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

  .category-large-card,
  .rank-card,
  .detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .detail-poster-wrap {
    max-width: 280px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .hero h1,
  .page-hero h1,
  .detail-copy h1,
  .filter-panel h1 {
    font-size: 38px;
  }

  .movie-grid-5,
  .movie-grid-4,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .filter-controls,
  .detail-side-card dl {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 190px;
  }

  .player-overlay strong {
    font-size: 22px;
  }
}
