:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --amber-500: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.10);
  --shadow-card: 0 10px 28px rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--emerald-700);
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.28);
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  border-left: 11px solid #ffffff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.brand-text {
  font-size: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.nav-link,
.mobile-link {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--emerald-700);
  background: var(--emerald-50);
}

.site-search,
.mobile-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  background: #ffffff;
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

.site-search input,
.mobile-search input {
  width: 190px;
  border: 0;
  outline: 0;
  padding: 8px 10px 8px 14px;
  color: var(--gray-700);
  background: transparent;
}

.site-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--emerald-600);
  color: #ffffff;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
  padding: 0 24px 18px;
  border-top: 1px solid var(--gray-100);
}

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.34), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(245, 158, 11, 0.24), transparent 28%),
    linear-gradient(135deg, #064e3b 0%, #047857 48%, #0f172a 100%);
  color: #ffffff;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(240deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
}

.hero-shell {
  position: relative;
  max-width: 1280px;
  min-height: 610px;
  margin: 0 auto;
  padding: 64px 24px 92px;
  display: flex;
  align-items: center;
}

.hero-slider {
  width: 100%;
  position: relative;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.74fr);
  align-items: center;
  gap: 58px;
  animation: fadeUp 0.5s ease both;
}

.hero-slide.is-active {
  display: grid;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(236, 253, 245, 0.92);
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.55;
}

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

.hero-tags {
  margin: 24px 0 30px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 650;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.primary-btn {
  background: #ffffff;
  color: var(--emerald-700);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.10);
}

.outline-btn {
  color: var(--emerald-700);
  border: 1px solid var(--emerald-100);
  background: var(--emerald-50);
}

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

.hero-poster {
  position: relative;
  min-height: 460px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.30);
  transform: rotate(1.5deg);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55));
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  left: 24px;
  bottom: 38px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #ffffff;
}

.quick-panel {
  max-width: 1180px;
  margin: -48px auto 56px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-card {
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.quick-card strong {
  display: block;
  font-size: 20px;
  color: var(--emerald-700);
  margin-bottom: 4px;
}

.quick-card span {
  color: var(--gray-600);
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.soft-section {
  max-width: none;
  padding-top: 62px;
  background: linear-gradient(180deg, #ffffff, var(--emerald-50));
}

.soft-section > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: var(--gray-900);
}

.section-head p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-more {
  flex: 0 0 auto;
  color: var(--emerald-700);
  font-weight: 800;
}

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

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

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

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

.movie-card {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
  border-color: var(--emerald-100);
}

.poster-link {
  display: block;
}

.poster-frame {
  display: block;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.35), transparent 26%),
    linear-gradient(135deg, #065f46, #111827);
}

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

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.72));
}

.play-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(16, 185, 129, 0.92);
  font-size: 12px;
  font-weight: 800;
}

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

.movie-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  color: var(--gray-500);
  font-size: 12px;
}

.movie-meta span {
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--gray-100);
}

.movie-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

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

.movie-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 76px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
}

.tag-row span {
  color: var(--emerald-700);
  background: var(--emerald-50);
}

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

.movie-card.is-small h2 {
  font-size: 15px;
}

.movie-card.is-small p,
.movie-card.is-small .tag-row {
  display: none;
}

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

.category-card,
.category-overview-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 231, 235, 0.86);
  box-shadow: var(--shadow-card);
}

.category-card {
  padding: 24px;
}

.category-card:hover,
.category-overview-card:hover {
  border-color: var(--emerald-100);
  box-shadow: var(--shadow-soft);
}

.category-icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--emerald-500), var(--amber-500));
}

.category-card h2,
.category-overview-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.category-card p,
.category-overview-card p {
  margin: 0;
  color: var(--gray-600);
}

.category-samples {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.category-samples a {
  color: var(--emerald-700);
  font-size: 14px;
  font-weight: 650;
}

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

.rank-panel,
.side-panel,
.cover-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(229, 231, 235, 0.85);
}

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

.rank-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.rank-panel-head h2,
.side-panel h2 {
  margin: 0;
  font-size: 22px;
}

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

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

.rank-line {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: var(--gray-50);
  border: 1px solid transparent;
}

.rank-line:hover {
  border-color: var(--emerald-100);
  background: var(--emerald-50);
}

.rank-number {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  font-weight: 900;
}

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

.rank-meta {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--gray-500);
  font-size: 13px;
}

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

.page-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.28), transparent 28%),
    linear-gradient(135deg, #064e3b, #047857 58%, #0f172a);
  color: #ffffff;
  padding: 82px 24px;
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero p {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.20);
  font-weight: 700;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.12;
}

.page-hero span {
  display: block;
  max-width: 780px;
  color: rgba(236, 253, 245, 0.88);
  font-size: 19px;
}

.category-overview-list {
  padding-top: 48px;
}

.category-overview-card {
  padding: 24px;
  margin-bottom: 24px;
}

.category-overview-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.filter-bar,
.search-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(229, 231, 235, 0.86);
}

.filter-bar label {
  font-weight: 800;
  color: var(--emerald-700);
}

.page-filter {
  width: min(520px, 100%);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 12px 16px;
  outline: none;
  background: var(--gray-50);
}

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

.large-filter {
  width: 100%;
}

.empty-state {
  text-align: center;
  color: var(--gray-600);
  padding: 38px 0;
  font-weight: 700;
}

.detail-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 76px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--gray-500);
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--emerald-700);
  font-weight: 700;
}

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

.player-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229, 231, 235, 0.86);
}

.player-shell {
  position: relative;
  background: #020617;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.10), rgba(2, 6, 23, 0.72)),
    radial-gradient(circle at center, rgba(16, 185, 129, 0.20), transparent 38%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

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

.big-play {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.92);
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.34);
  position: relative;
}

.big-play::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 27px;
  border-left: 24px solid #ffffff;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

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

.detail-content {
  padding: 30px;
}

.detail-tags span {
  background: var(--emerald-50);
  color: var(--emerald-700);
}

.detail-content h1 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
}

.detail-one-line {
  margin: 0 0 22px;
  color: var(--gray-600);
  font-size: 18px;
}

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

.detail-meta-grid span {
  border-radius: 16px;
  background: var(--gray-50);
  padding: 14px;
  color: var(--gray-700);
}

.detail-meta-grid b {
  display: block;
  color: var(--gray-500);
  margin-bottom: 4px;
  font-size: 13px;
}

.text-block {
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
  margin-top: 24px;
}

.text-block h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.text-block p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
}

.detail-side {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 96px;
}

.cover-card {
  padding: 18px;
}

.cover-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.30), transparent 26%),
    linear-gradient(135deg, #065f46, #111827);
  margin-bottom: 16px;
}

.full-btn {
  width: 100%;
  background: var(--emerald-600);
  color: #ffffff;
  box-shadow: none;
}

.side-panel {
  padding: 20px;
}

.side-panel h2 {
  margin-bottom: 14px;
}

.side-related {
  display: grid;
  gap: 14px;
}

.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 54px 24px 24px;
}

.footer-shell {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
}

.footer-brand p {
  max-width: 520px;
  margin: 16px 0 0;
  color: #9ca3af;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
}

.footer-column a:hover {
  color: #34d399;
}

.footer-bottom {
  max-width: 1280px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: #9ca3af;
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .rank-panel,
  .detail-side {
    position: static;
  }

  .detail-side {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

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

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-shell {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-poster {
    min-height: 380px;
    transform: none;
  }

  .hero-poster img {
    min-height: 380px;
  }

  .quick-panel,
  .category-grid,
  .footer-shell,
  .detail-meta-grid,
  .wide-rank-list {
    grid-template-columns: 1fr;
  }

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

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

  .cover-card {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand-text {
    font-size: 18px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p,
  .page-hero span {
    font-size: 16px;
  }

  .hero-shell,
  .content-section,
  .detail-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quick-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-head,
  .category-overview-head,
  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .page-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .movie-card h2 {
    font-size: 16px;
  }

  .movie-card p {
    min-height: 64px;
    font-size: 13px;
  }

  .page-hero {
    padding: 58px 16px;
  }

  .detail-content {
    padding: 20px;
  }

  .big-play {
    width: 72px;
    height: 72px;
  }

  .big-play::after {
    left: 30px;
    top: 23px;
    border-left-width: 20px;
    border-top-width: 13px;
    border-bottom-width: 13px;
  }
}
