:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 26px 70px rgba(15, 23, 42, 0.18);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  height: 64px;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500), var(--amber-600));
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.26);
}

.nav-inner {
  max-width: var(--container);
  height: 64px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-icon,
.footer-logo span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--amber-600);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.brand:hover .brand-icon {
  transform: rotate(12deg) scale(1.03);
}

.brand-icon {
  transition: transform 0.25s ease;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.desktop-nav a {
  padding: 8px 0;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--amber-100);
}

.nav-search,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search input {
  width: 230px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 10px 44px 10px 16px;
  background: rgba(255, 255, 255, 0.9);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.9);
}

.nav-search button {
  position: absolute;
  right: 5px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--amber-600);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 16px 18px 22px;
  background: linear-gradient(180deg, var(--amber-600), var(--orange-600));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.mobile-panel.is-open {
  display: grid;
  gap: 10px;
}

.mobile-panel a {
  color: var(--white);
  font-weight: 700;
  padding: 8px 0;
}

.mobile-search {
  gap: 8px;
}

.mobile-search input {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
}

.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--amber-700);
  background: var(--white);
  font-weight: 800;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-50), #fff7ed, #fefce8);
}

.hero-stage {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.38), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.86));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  min-height: 620px;
  margin: 0 auto;
  padding: 92px 18px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 46px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber-300);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.15;
}

.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-tags span,
.detail-tags span,
.card-tags span {
  border-radius: 999px;
  padding: 6px 12px;
  color: #92400e;
  background: var(--amber-100);
  font-size: 12px;
  font-weight: 800;
}

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

.primary-btn,
.ghost-btn,
.cta-block a {
  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-btn {
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.35);
}

.primary-btn:hover,
.cta-block a:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 45px rgba(217, 119, 6, 0.4);
}

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

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.23);
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  justify-self: center;
  width: min(360px, 100%);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  border: 8px solid rgba(255, 255, 255, 0.18);
}

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

.hero-poster span,
.play-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--amber-600);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  font-size: 28px;
}

.hero-poster:hover img {
  transform: scale(1.08);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(14px);
}

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

.hero-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  font-size: 26px;
  line-height: 1;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 28px;
  background: var(--amber-300);
}

.section-wrap,
.page-hero,
.detail-inner,
.detail-content,
.player-section,
.cta-block {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.section-wrap {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.section-title p {
  margin: 0 0 5px;
  color: var(--amber-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-title a {
  color: var(--amber-600);
  font-weight: 900;
}

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

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

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

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, var(--amber-100), #fed7aa);
}

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

.card-link:hover img {
  transform: scale(1.08);
}

.duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.play-mark {
  width: 52px;
  height: 52px;
  opacity: 0;
  color: var(--white);
  background: rgba(245, 158, 11, 0.88);
  font-size: 20px;
  transition: opacity 0.25s ease;
}

.card-link:hover .play-mark {
  opacity: 1;
}

.card-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-body h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.card-meta,
.card-foot,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--slate-500);
  font-size: 13px;
}

.card-foot {
  margin-top: auto;
  justify-content: space-between;
  color: var(--amber-700);
  font-weight: 800;
}

.category-section {
  background: linear-gradient(90deg, rgba(254, 243, 199, 0.9), rgba(255, 237, 213, 0.9));
  max-width: none;
  padding-left: max(18px, calc((100% - var(--container)) / 2));
  padding-right: max(18px, calc((100% - var(--container)) / 2));
}

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

.category-tile {
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
  color: var(--gray-900);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-tile span {
  color: var(--amber-600);
  font-size: 28px;
  font-weight: 900;
}

.category-tile h2 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.category-tile p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.7;
}

.ranking-band {
  padding: 70px max(18px, calc((100% - var(--container)) / 2));
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
  color: var(--white);
}

.light-title h2,
.light-title a {
  color: var(--white);
}

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

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

.compact-card .card-link {
  flex-direction: row;
  min-height: 170px;
}

.compact-card .poster-wrap {
  width: 126px;
  min-width: 126px;
  aspect-ratio: auto;
}

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

.compact-card .card-body p {
  -webkit-line-clamp: 2;
}

.rank-num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
  font-weight: 900;
}

.cta-block {
  margin-top: 36px;
  margin-bottom: 78px;
  padding-top: 54px;
  padding-bottom: 54px;
  border-radius: 32px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
  box-shadow: var(--shadow-lg);
}

.cta-block h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
}

.cta-block p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.cta-block a {
  color: var(--amber-700);
  background: var(--white);
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  padding-top: 86px;
  padding-bottom: 56px;
}

.small-hero {
  max-width: none;
  padding-left: max(18px, calc((100% - var(--container)) / 2));
  padding-right: max(18px, calc((100% - var(--container)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.38), transparent 30%),
    linear-gradient(135deg, var(--slate-900), var(--slate-950));
}

.small-hero h1 {
  max-width: 860px;
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.small-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

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

.filter-panel {
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 14px;
}

.filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 900;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 12px 14px;
  color: var(--gray-900);
  background: var(--gray-50);
  outline: 0;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--amber-400);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.22);
}

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

.detail-main {
  background: var(--gray-50);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.08);
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.92));
}

.detail-inner {
  position: relative;
  z-index: 1;
  padding-top: 46px;
  padding-bottom: 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 8px solid rgba(255, 255, 255, 0.18);
}

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

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 820px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.8;
}

.detail-meta {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.detail-tags {
  margin-bottom: 28px;
}

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

.video-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.video-player video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.42));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  font-size: 34px;
}

.video-player.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-message {
  position: absolute;
  left: 20px;
  bottom: 18px;
  right: 20px;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.player-message:empty {
  display: none;
}

.detail-content {
  padding-top: 20px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.story-panel {
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-panel h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.story-panel p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.9;
}

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

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

.site-footer {
  margin-top: 0;
  color: var(--white);
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 54px 18px 38px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--amber-400);
  font-size: 18px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: #94a3b8;
  line-height: 1.75;
}

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

.copyright {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 18px 30px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #64748b;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 12px;
    font-size: 14px;
  }

  .nav-search input {
    width: 190px;
  }

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

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

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

  .menu-toggle {
    display: block;
  }

  .hero-content,
  .detail-layout,
  .detail-content,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: 720px;
    padding-top: 86px;
  }

  .hero-poster {
    width: min(310px, 86vw);
  }

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

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

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

@media (max-width: 640px) {
  .brand {
    font-size: 20px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
  }

  .hero-stage,
  .hero-content {
    min-height: 760px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .hero-controls {
    bottom: 14px;
  }

  .section-wrap {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .all-movies-grid,
  .category-grid,
  .large-category-grid,
  .ranking-grid,
  .ranking-list,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .compact-card .card-link {
    min-height: 150px;
  }

  .compact-card .poster-wrap {
    width: 112px;
    min-width: 112px;
  }

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

  .detail-inner {
    padding-top: 34px;
  }

  .detail-copy h1 {
    font-size: 34px;
  }

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

  .video-player {
    border-radius: 16px;
  }

  .player-overlay span {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }

  .story-panel {
    padding: 22px;
  }
}
