:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.82);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --emerald: #34d399;
  --emerald-strong: #10b981;
  --cyan: #22d3ee;
  --amber: #f59e0b;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 8%, rgba(16, 185, 129, 0.18), transparent 26rem),
    radial-gradient(circle at 90% 18%, rgba(34, 211, 238, 0.12), transparent 28rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: var(--text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #ecfeff;
  background: linear-gradient(135deg, var(--emerald), #0f766e 56%, #164e63);
  box-shadow: 0 12px 34px rgba(16, 185, 129, 0.32);
}

.brand-text {
  font-size: 1.18rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted-strong);
  font-weight: 650;
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--emerald);
  transition: transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--emerald);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
}

.nav-search input,
.home-search-form input,
.filter-panel input,
.filter-panel select {
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.86);
  outline: none;
}

.nav-search input {
  width: 180px;
  border: 0;
  padding: 8px 4px 8px 12px;
  background: transparent;
}

.nav-search button,
.home-search-form button,
.filter-panel button,
.btn {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-search button,
.home-search-form button,
.filter-panel button,
.btn.primary {
  color: #022c22;
  background: linear-gradient(135deg, var(--emerald), #67e8f9);
  box-shadow: 0 14px 32px rgba(16, 185, 129, 0.22);
}

.nav-search button {
  padding: 8px 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
}

.btn.ghost {
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(15, 23, 42, 0.78);
}

.btn:hover,
.nav-search button:hover,
.home-search-form button:hover,
.filter-panel button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.88);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.hero-carousel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

.hero-slide {
  display: none;
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 46%, rgba(2, 6, 23, 0.32) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-slide.is-active {
  display: block;
  animation: heroFade 0.56s ease both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.92)),
    radial-gradient(circle at 75% 40%, rgba(52, 211, 153, 0.24), transparent 24rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 62px;
  padding: 84px 0 96px;
}

.hero-copy {
  max-width: 780px;
}

.hero-label,
.section-kicker,
.detail-category,
.subpage-hero span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 999px;
  color: #a7f3d0;
  background: rgba(6, 78, 59, 0.44);
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
}

.hero-copy p {
  max-width: 680px;
  margin: 28px 0 22px;
  color: #d1d5db;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.hero-tags span,
.tag-row span {
  padding: 6px 10px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(15, 23, 42, 0.66);
  font-size: 0.82rem;
}

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

.hero-poster {
  position: relative;
  isolation: isolate;
  display: block;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 6, 23, 0.9));
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-6px);
}

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

.hero-poster span,
.card-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #022c22;
  background: rgba(52, 211, 153, 0.94);
  box-shadow: 0 18px 46px rgba(16, 185, 129, 0.34);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.68);
  backdrop-filter: blur(12px);
}

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

.hero-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text);
  background: rgba(15, 23, 42, 0.86);
  font-size: 1.5rem;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.5);
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--emerald);
}

.home-search-panel,
.page-section,
.subpage-main,
.detail-main,
.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.home-search-panel {
  position: relative;
  z-index: 5;
  margin-top: -44px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.home-search-panel h2 {
  margin: 0;
  font-size: 1.45rem;
}

.home-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.home-search-form input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 16px;
}

.home-search-form button,
.filter-panel button {
  padding: 0 24px;
}

.page-section {
  padding: 74px 0 0;
}

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

.section-heading h2,
.subpage-hero h1,
.detail-info h1 {
  margin: 0;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

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

.section-link {
  color: var(--emerald);
  font-weight: 800;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: var(--bg-card);
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(52, 211, 153, 0.42);
  box-shadow: 0 26px 62px rgba(2, 6, 23, 0.34);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111827;
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.05);
}

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.82));
}

.score-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.score-badge {
  right: 12px;
  color: #1f2937;
  background: #fbbf24;
}

.rank-badge {
  left: 12px;
  color: #ecfeff;
  background: rgba(15, 23, 42, 0.84);
}

.card-play {
  width: 54px;
  height: 54px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.movie-card:hover .card-play {
  opacity: 1;
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

.movie-card h3 {
  margin: 10px 0 8px;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.32;
}

.movie-card h3 a:hover {
  color: var(--emerald);
}

.movie-card p {
  display: -webkit-box;
  min-height: 3.2em;
  margin: 0 0 14px;
  overflow: hidden;
  color: #cbd5e1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.8);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.06);
  opacity: 0.58;
}

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.94));
}

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

.category-card strong {
  font-size: 1.4rem;
}

.category-card small {
  color: #d1d5db;
}

.highlight-section {
  padding-bottom: 82px;
}

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

.compact-card {
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.compact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 211, 153, 0.36);
}

.compact-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  object-fit: cover;
}

.compact-card span,
.compact-card small {
  display: block;
}

.compact-card span {
  margin-top: 10px;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-card small {
  color: var(--muted);
}

.subpage-main,
.detail-main {
  padding: 34px 0 88px;
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
  padding: 68px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 18%, rgba(52, 211, 153, 0.18), transparent 26rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.86));
  box-shadow: var(--shadow);
}

.subpage-hero h1 {
  font-size: clamp(2rem, 6vw, 4.8rem);
}

.subpage-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #cbd5e1;
  font-size: 1.08rem;
}

.filter-panel {
  margin-bottom: 32px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.78);
}

.filter-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-panel select {
  min-width: 150px;
}

.empty-state {
  display: none;
  margin: 28px 0;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.72);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.78);
}

.category-thumb-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-thumb-stack img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  object-fit: cover;
}

.category-overview-card span {
  color: var(--emerald);
  font-weight: 850;
}

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

.category-overview-card p {
  color: var(--muted-strong);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 6px 0 22px;
  color: var(--muted);
}

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

.detail-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 34px;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.82)),
    var(--detail-image);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(8px);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.42);
}

.detail-info h1 {
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.04;
}

.detail-info p {
  max-width: 820px;
  color: #d1d5db;
  font-size: 1.08rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
  color: var(--muted-strong);
}

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

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

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 30px;
  background: #000;
  box-shadow: var(--shadow);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.6));
}

.player-overlay.is-hidden {
  display: none;
  pointer-events: none;
}

.player-button {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #022c22;
  background: linear-gradient(135deg, var(--emerald), #67e8f9);
  font-size: 2rem;
  box-shadow: 0 18px 56px rgba(16, 185, 129, 0.32);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.detail-article {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.78);
}

.detail-article h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.detail-article p {
  margin: 0;
  color: #d1d5db;
}

.related-section {
  padding-bottom: 0;
}

.site-footer {
  margin-top: 28px;
  padding: 44px 0 34px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

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

.site-footer p,
.site-footer a {
  color: var(--muted-strong);
}

.footer-brand {
  margin-bottom: 12px;
  color: var(--text) !important;
  font-size: 1.35rem;
}

.site-footer h3 {
  margin: 0 0 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-mini-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.site-footer a:hover {
  color: var(--emerald);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--muted);
  text-align: center;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: scale(1.015);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .nav-search {
    display: none;
  }

  .site-nav.is-open,
  .nav-search.is-open {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-nav.is-open {
    flex-wrap: wrap;
    padding-top: 12px;
  }

  .nav-search.is-open {
    width: 100%;
    margin-bottom: 12px;
  }

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

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

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

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

@media (max-width: 860px) {
  .hero-carousel,
  .hero-track,
  .hero-slide,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 72px 0 112px;
  }

  .hero-poster {
    width: min(320px, 80vw);
    justify-self: center;
  }

  .home-search-panel,
  .filter-panel,
  .section-heading,
  .detail-hero,
  .detail-content-grid,
  .footer-grid,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

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

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

  .subpage-hero,
  .detail-hero {
    padding: 28px;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .home-search-panel,
  .page-section,
  .subpage-main,
  .detail-main,
  .site-footer {
    width: min(100% - 22px, 1240px);
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 16vw, 4.4rem);
  }

  .home-search-form,
  .movie-grid,
  .category-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .filter-selects,
  .detail-actions,
  .hero-actions {
    flex-direction: column;
  }

  .filter-panel button,
  .home-search-form button,
  .btn {
    width: 100%;
  }

  .category-mini-links {
    grid-template-columns: 1fr;
  }

  .player-button {
    width: 68px;
    height: 68px;
  }
}
