:root {
  --ash-950: #08090b;
  --ash-900: #0d0f12;
  --ash-850: #15191f;
  --ash-800: #212529;
  --ash-700: #343a40;
  --ash-600: #495057;
  --ash-500: #6c757d;
  --ash-400: #adb5bd;
  --ash-300: #ced4da;
  --ash-200: #dee2e6;
  --ash-100: #f1f3f5;
  --ash-50: #f8f9fa;
  --lava-500: #ffb81a;
  --lava-600: #e68a00;
  --volcanic-500: #f07f4a;
  --volcanic-600: #ee692c;
  --volcanic-700: #d9501f;
  --volcanic-800: #c03711;
  --volcanic-900: #8f260a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(13, 15, 18, 0.14);
  --shadow-soft: 0 10px 30px rgba(13, 15, 18, 0.10);
  --radius: 22px;
  --radius-sm: 14px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ash-50);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ash-900);
  background: linear-gradient(180deg, var(--ash-50), #ffffff 420px);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  min-height: 70vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--volcanic-800), var(--volcanic-900));
  box-shadow: 0 14px 38px rgba(13, 15, 18, 0.18);
}

.site-nav {
  width: min(1280px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--ash-900);
  background: linear-gradient(135deg, var(--lava-500), #ffe6b3);
  font-weight: 900;
  box-shadow: 0 0 32px rgba(255, 184, 26, 0.36);
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  margin-top: 4px;
  color: #fbd5c3;
  font-size: 12px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-weight: 700;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link-active {
  color: var(--lava-500);
}

.nav-link-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: var(--lava-500);
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ash-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 184, 26, 0.24), transparent 26%),
    linear-gradient(90deg, rgba(8, 9, 11, 0.92), rgba(13, 15, 18, 0.64) 48%, rgba(13, 15, 18, 0.18)),
    linear-gradient(0deg, rgba(13, 15, 18, 0.92), rgba(13, 15, 18, 0.05) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 145px;
  color: var(--white);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
  color: #fff8e7;
  background: rgba(240, 127, 74, 0.84);
  box-shadow: 0 14px 30px rgba(240, 127, 74, 0.24);
  font-weight: 800;
}

.hero-content h1,
.hero-content h2 {
  width: min(820px, 100%);
  margin: 0;
  font-size: clamp(34px, 7vw, 72px);
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: -0.045em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.hero-movie-title {
  margin-top: 14px !important;
  font-size: clamp(30px, 5vw, 54px) !important;
  color: var(--lava-500);
}

.hero-content p {
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.75;
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

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

.hero-meta span,
.detail-meta span,
.card-meta span {
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

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

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(90deg, var(--volcanic-600), var(--volcanic-800));
  box-shadow: 0 16px 42px rgba(238, 105, 44, 0.34);
}

.secondary-button {
  color: var(--ash-900);
  background: linear-gradient(90deg, var(--lava-500), #ffe6b3);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px) scale(1.02);
}

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

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

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

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 76px;
  z-index: 5;
  width: min(720px, calc(100% - 32px));
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.hero-search input,
.site-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 16px 20px;
  color: var(--ash-900);
  background: var(--white);
}

.hero-search input {
  color: var(--white);
  background: transparent;
}

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

.hero-search button,
.site-search button {
  border: 0;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(90deg, var(--volcanic-600), var(--volcanic-800));
  font-weight: 900;
}

.hero-categories {
  position: absolute;
  left: 50%;
  bottom: 128px;
  z-index: 5;
  width: min(900px, calc(100% - 32px));
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-categories a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

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

.content-section {
  padding: 70px 0;
}

.category-feature {
  padding: 70px 0;
  background: linear-gradient(135deg, #fff8ef, #fef5f1 48%, #ffffff);
}

.category-feature > * {
  width: min(1280px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading h2,
.compact-heading h2 {
  margin: 0;
  color: var(--ash-900);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.section-heading p,
.compact-heading p {
  margin: 10px 0 0;
  color: var(--ash-600);
  line-height: 1.7;
}

.section-heading > span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--volcanic-600), transparent);
}

.compact-heading a {
  flex: 0 0 auto;
  color: var(--volcanic-700);
  font-weight: 900;
}

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

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

.movie-card {
  min-width: 0;
}

.movie-link {
  display: block;
  height: 100%;
}

.poster-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  background: var(--ash-200);
  box-shadow: var(--shadow-soft);
}

.poster-frame img,
.wide-rank-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 56%);
  opacity: 0.9;
}

.poster-year {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--volcanic-600);
  box-shadow: 0 18px 42px rgba(238, 105, 44, 0.36);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-frame img,
.movie-card-wide:hover img,
.category-overview-card:hover img {
  transform: scale(1.06);
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.card-body h2,
.wide-card-body h2 {
  margin: 0;
  color: var(--ash-900);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

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

.card-body .card-meta,
.wide-card-body .card-meta {
  margin-top: 10px;
}

.card-body .card-meta span,
.wide-card-body .card-meta span,
.detail-meta span {
  color: var(--ash-600);
  background: var(--ash-100);
}

.movie-card:hover h2,
.movie-card-wide:hover h2 {
  color: var(--volcanic-700);
}

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

.movie-card-wide .movie-link {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 164px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.wide-rank-image {
  position: relative;
  overflow: hidden;
  background: var(--ash-200);
}

.rank-badge {
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 10px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ash-900);
  background: linear-gradient(135deg, var(--lava-500), #ffe6b3);
  font-size: 14px;
  font-weight: 950;
}

.wide-card-body {
  padding: 18px;
  min-width: 0;
}

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

.tag-row span {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--volcanic-700);
  background: #fdeae1;
  font-size: 12px;
  font-weight: 800;
}

.wide-card-body .tag-row {
  margin-top: 12px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 184, 26, 0.28), transparent 28%),
    linear-gradient(135deg, var(--volcanic-800), var(--ash-900));
}

.page-hero > div {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.page-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--ash-900);
  background: var(--lava-500);
  font-weight: 950;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.page-hero p:last-child {
  width: min(780px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

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

.category-overview-card a {
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
  min-height: 270px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.category-overview-card div {
  padding: 28px;
}

.category-overview-card h2 {
  margin: 0;
  color: var(--ash-900);
  font-size: 28px;
  font-weight: 950;
}

.category-overview-card p {
  margin: 12px 0 18px;
  color: var(--ash-600);
  line-height: 1.7;
}

.category-overview-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.category-overview-card li a {
  display: inline;
  color: var(--volcanic-700);
  font-weight: 800;
}

.tool-panel {
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid rgba(206, 212, 218, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.site-search {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--ash-200);
  border-radius: 999px;
  background: var(--white);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ash-700);
  background: var(--ash-100);
  font-weight: 850;
  transition: color 0.2s ease, background 0.2s ease;
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--white);
  background: var(--volcanic-700);
}

.movie-card.is-hidden,
.movie-card-wide.is-hidden {
  display: none;
}

.player-section {
  padding: 34px 16px;
  background: #000000;
}

.player-shell {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000000;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.44);
}

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

.player-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  color: var(--white);
  background: #000000;
}

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

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

.player-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.24));
}

.player-icon {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--volcanic-600), var(--volcanic-800));
  box-shadow: 0 20px 54px rgba(238, 105, 44, 0.42);
  font-size: 30px;
}

.player-title {
  position: absolute;
  left: 32px;
  bottom: 28px;
  z-index: 2;
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 950;
  text-align: left;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
}

.player-state {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  transform: translate(-50%, -50%);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  padding: 48px 0 20px;
}

.detail-main,
.side-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.detail-main {
  padding: 32px;
}

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

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

.detail-main h1 {
  margin: 0;
  color: var(--ash-900);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.detail-one-line {
  margin: 16px 0 0;
  color: var(--ash-700);
  font-size: 20px;
  line-height: 1.7;
  font-style: italic;
}

.detail-meta {
  margin-top: 20px;
}

.detail-tags {
  margin-top: 20px;
}

.detail-block {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--ash-200);
}

.detail-block h2,
.side-card h2 {
  margin: 0 0 16px;
  color: var(--ash-900);
  font-size: 22px;
  font-weight: 950;
}

.detail-block p {
  margin: 0 0 14px;
  color: var(--ash-700);
  line-height: 1.9;
  font-size: 16px;
}

.review-block {
  padding: 28px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--ash-50);
}

.detail-side {
  display: grid;
  align-content: start;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.detail-cover {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.side-card {
  padding: 24px;
}

.side-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.side-card div {
  display: grid;
  gap: 5px;
}

.side-card dt {
  color: var(--ash-500);
  font-size: 12px;
  font-weight: 850;
}

.side-card dd {
  margin: 0;
  color: var(--ash-900);
  font-weight: 900;
}

.side-card a {
  color: var(--volcanic-700);
}

.related-section {
  padding-top: 36px;
}

.site-footer {
  margin-top: 20px;
  color: var(--ash-300);
  background: var(--ash-900);
}

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

.footer-logo {
  color: var(--white);
  font-size: 24px;
  font-weight: 950;
}

.footer-brand p {
  width: min(520px, 100%);
  color: var(--ash-400);
  line-height: 1.8;
}

.footer-links h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

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

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

.footer-links a:hover {
  color: var(--lava-500);
}

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid var(--ash-800);
  color: var(--ash-500);
  text-align: center;
  font-size: 14px;
}

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

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

  .category-overview-card a {
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 900px) {
  .site-nav {
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

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

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px 0 4px;
  }

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

  .nav-link {
    padding: 11px 0;
  }

  .nav-link-active::after {
    display: none;
  }

  .hero-carousel {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero-search {
    bottom: 86px;
  }

  .hero-categories {
    bottom: 144px;
  }

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

  .detail-side {
    position: static;
  }

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

@media (max-width: 680px) {
  .brand-title {
    font-size: 18px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-carousel {
    min-height: 760px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-meta span {
    font-size: 12px;
  }

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

  .hero-search,
  .site-search {
    border-radius: 18px;
    flex-direction: column;
  }

  .hero-search button,
  .site-search button {
    min-height: 48px;
  }

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

  .movie-card-wide .movie-link {
    grid-template-columns: 104px 1fr;
    min-height: 142px;
  }

  .wide-card-body {
    padding: 14px;
  }

  .tag-row {
    display: none;
  }

  .section-heading,
  .compact-heading {
    display: grid;
  }

  .section-heading > span {
    display: none;
  }

  .category-overview-card a {
    grid-template-columns: 1fr;
  }

  .category-overview-card img {
    height: 220px;
  }

  .detail-main,
  .side-card {
    padding: 22px;
  }

  .player-section {
    padding: 16px;
  }

  .player-shell,
  .detail-main,
  .side-card,
  .detail-cover {
    border-radius: 16px;
  }

  .player-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .player-title {
    left: 18px;
    bottom: 18px;
  }
}
