:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --rose-600: #e11d48;
  --blue-600: #2563eb;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-800);
  background: linear-gradient(180deg, var(--slate-50), #ffffff 36%, var(--slate-50));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  box-shadow: 0 10px 35px rgba(2, 6, 23, 0.25);
}

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

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(52, 211, 153, 0.36);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.25);
}

.brand-mark span {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--emerald-400);
  margin-left: 3px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.brand-text small {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 0.76rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-link {
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-link:hover {
  color: var(--emerald-400);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  color: var(--white);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 8px 0 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.14);
}

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

.mobile-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
}

.hero-section {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: var(--slate-950);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-tile {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms ease, filter 700ms ease;
}

.hero-tile:hover img {
  transform: scale(1.1);
  filter: saturate(1.08);
}

.hero-tile span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-tile:hover span {
  opacity: 1;
  transform: translateY(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(16, 185, 129, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.48), rgba(2, 6, 23, 0.2) 38%, rgba(2, 6, 23, 0.72)),
    linear-gradient(90deg, rgba(2, 6, 23, 0.35), transparent, rgba(2, 6, 23, 0.35));
}

.hero-content {
  position: relative;
  z-index: 5;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 100px 0 72px;
}

.hero-content h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.8rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  max-width: 790px;
  margin: 24px 0 0;
  color: #e5e7eb;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
}

.hero-actions,
.hero-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.hero-chips {
  margin-top: 24px;
}

.hero-chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ecfeff;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
}

.primary-button,
.secondary-button,
.ghost-link,
.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-button {
  padding: 12px 26px;
  color: var(--white);
  background: var(--emerald-600);
  box-shadow: 0 18px 35px rgba(5, 150, 105, 0.34);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--emerald-700);
}

.secondary-button {
  padding: 10px 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.secondary-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.search-section {
  margin-top: -34px;
  position: relative;
  z-index: 10;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 190px auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.filter-bar label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 800;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--slate-800);
  background: var(--white);
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.ghost-link,
.more-link {
  color: var(--emerald-700);
  font-size: 0.95rem;
}

.ghost-link {
  padding: 0 16px;
  border: 1px solid rgba(5, 150, 105, 0.2);
  background: rgba(16, 185, 129, 0.08);
}

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

.wide-section {
  padding: 72px 0;
  background: var(--slate-100);
}

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

.section-heading h2 {
  margin: 0;
  color: var(--slate-800);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.15;
  font-weight: 900;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--slate-500);
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
}

.movie-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.movie-card:hover .movie-poster {
  transform: scale(1.1);
  filter: saturate(1.08);
}

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 999px;
}

.year-badge {
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  background: var(--emerald-600);
}

.rank-badge {
  top: 10px;
  left: 10px;
  width: 32px;
  height: 32px;
  background: var(--rose-600);
  box-shadow: 0 10px 24px rgba(225, 29, 72, 0.28);
}

.play-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 2rem;
  background: rgba(2, 6, 23, 0.42);
  opacity: 0;
  transition: opacity 220ms ease;
}

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

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

.movie-card-body h3 {
  margin: 0 0 8px;
  color: var(--slate-800);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.movie-card-body p {
  min-height: 46px;
  margin: 0 0 12px;
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.category-box,
.category-overview-main {
  display: flex;
  flex-direction: column;
  min-height: 142px;
  justify-content: space-between;
  padding: 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(37, 99, 235, 0.08)),
    var(--white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.category-box:hover,
.category-overview-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.14);
}

.category-box strong,
.category-overview-main strong {
  color: var(--slate-800);
  font-size: 1.15rem;
  font-weight: 900;
}

.category-box span,
.category-overview-main span {
  margin-top: 14px;
  color: var(--slate-600);
  font-size: 0.92rem;
}

.category-strip {
  padding: 30px 0;
  border-top: 1px solid var(--slate-200);
}

.category-strip:first-child {
  border-top: 0;
  padding-top: 0;
}

.strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.strip-head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--slate-800);
  font-size: 1.45rem;
  font-weight: 900;
}

.strip-head h3 span {
  width: 5px;
  height: 30px;
  border-radius: 999px;
  background: var(--emerald-600);
}

.strip-head a {
  color: var(--emerald-700);
  font-weight: 800;
}

.sub-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 25%, rgba(16, 185, 129, 0.32), transparent 32%),
    linear-gradient(135deg, var(--slate-900), var(--slate-800));
  padding: 82px 0 96px;
}

.sub-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 900;
}

.sub-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #dbeafe;
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 10px !important;
  color: var(--emerald-400) !important;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

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

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

.category-overview-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.category-mini-list,
.side-list,
.ranking-spotlight {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 16px;
  background: var(--slate-50);
  border: 1px solid rgba(226, 232, 240, 0.82);
  transition: transform 180ms ease, background 180ms ease;
}

.mini-card:hover {
  transform: translateX(4px);
  background: #ecfdf5;
}

.mini-card img {
  width: 82px;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  background: var(--slate-800);
}

.mini-card-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mini-card-text strong {
  color: var(--slate-800);
  font-size: 0.95rem;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card-text em {
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 0.78rem;
  font-style: normal;
}

.mini-rank {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--white);
  background: var(--rose-600);
  font-size: 0.72rem;
  font-weight: 900;
}

.ranking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 44px;
  align-items: center;
}

.ranking-spotlight {
  padding: 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background: var(--slate-950);
}

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

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.52;
}

.detail-overlay {
  background:
    radial-gradient(circle at 76% 20%, rgba(16, 185, 129, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.92));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  min-height: 540px;
  padding: 88px 0 56px;
}

.detail-cover {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  background: var(--slate-800);
}

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

.detail-intro {
  color: var(--white);
}

.detail-intro h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 1.08;
  font-weight: 900;
}

.detail-intro p {
  max-width: 820px;
  margin: 0;
  color: #e2e8f0;
  font-size: 1.1rem;
}

.detail-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-tags {
  margin: 22px 0 28px;
}

.detail-tags span,
.tag-cloud span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.detail-tags span {
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 56px 0 0;
}

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.player-card,
.content-card,
.side-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--slate-950);
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: var(--slate-950);
}

.player-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.64));
  cursor: pointer;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.player-trigger span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  padding-left: 5px;
  border-radius: 999px;
  background: var(--emerald-600);
  box-shadow: 0 18px 42px rgba(5, 150, 105, 0.36);
  font-size: 2rem;
}

.player-trigger strong {
  font-size: 1rem;
}

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

.content-card,
.side-card {
  padding: 24px;
}

.content-card h2,
.side-card h2 {
  margin: 0 0 14px;
  color: var(--slate-800);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 900;
}

.content-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 1rem;
}

.meta-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.meta-card dl div {
  padding: 14px;
  border-radius: 14px;
  background: var(--slate-50);
}

.meta-card dt {
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 900;
}

.meta-card dd {
  margin: 4px 0 0;
  color: var(--slate-800);
  font-weight: 800;
}

.tag-cloud span {
  color: var(--emerald-700);
  background: rgba(16, 185, 129, 0.09);
}

.side-category {
  min-height: 112px;
}

.site-footer {
  margin-top: 72px;
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-800), var(--slate-950));
}

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

.footer-brand {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer p {
  max-width: 430px;
  margin: 12px 0 0;
}

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

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

.footer-bottom {
  padding: 18px 16px;
  text-align: center;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

[data-movie-card].is-filtered {
  display: none;
}

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

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

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

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

  .menu-toggle {
    display: inline-flex;
  }

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

  .hero-tile:nth-child(n + 2) {
    display: none;
  }

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

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

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

  .detail-cover {
    width: min(260px, 72vw);
  }

  .detail-hero-inner {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-container {
    width: min(100% - 22px, 1180px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 1.08rem;
  }

  .brand-text small {
    display: none;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-actions,
  .hero-chips {
    justify-content: flex-start;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading .more-link {
    margin-top: 12px;
  }

  .movie-grid,
  .movie-grid-dense,
  .movie-grid-small,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .movie-card-body p {
    min-height: 42px;
    font-size: 0.82rem;
  }

  .sub-hero {
    padding: 58px 0 78px;
  }

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

  .mini-card {
    grid-template-columns: 70px 1fr;
  }

  .mini-card img {
    width: 70px;
  }
}
