:root {
  --orange: #ea580c;
  --orange-soft: #fb923c;
  --red: #ef4444;
  --pink: #ec4899;
  --text: #1f2937;
  --muted: #6b7280;
  --soft: #f9fafb;
  --line: #e5e7eb;
  --dark: #111827;
  --shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 20px 55px rgba(15, 23, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f9fafb;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: #fff;
  background: linear-gradient(90deg, #f97316 0%, #ef4444 50%, #ec4899 100%);
  box-shadow: 0 10px 26px rgba(239, 68, 68, 0.28);
}

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

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

.brand {
  flex: 0 0 auto;
  font-size: 24px;
}

.brand-icon,
.footer-brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a,
.mobile-panel a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.mobile-panel a:hover {
  color: #ffedd5;
}

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

.header-search input,
.mobile-search input {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  outline: none;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.header-search input {
  width: 256px;
  padding: 10px 42px 10px 18px;
  border-radius: 999px;
}

.header-search button {
  position: absolute;
  right: 12px;
  color: #fff;
  border: 0;
  background: transparent;
  font-size: 22px;
}

.menu-toggle {
  display: none;
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.17);
}

.mobile-panel {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-search {
  gap: 10px;
}

.mobile-search input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
}

.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: #ef4444;
  background: #fff;
  font-weight: 700;
}

.mobile-panel nav {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  font-weight: 650;
}

.hero-carousel {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #000;
}

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

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

.hero-slide img,
.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 74px;
}

.hero-copy {
  max-width: 760px;
  color: #fff;
}

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

.hero-kicker {
  margin-bottom: 14px;
}

.hero-kicker span,
.badge-hot {
  border-radius: 999px;
  padding: 5px 12px;
  background: #dc2626;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.hero-kicker em {
  color: #fdba74;
  font-style: normal;
  font-size: 14px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 18px;
  color: #e5e7eb;
  font-size: 18px;
}

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

.hero-tags span,
.detail-tags span {
  border-radius: 999px;
  padding: 5px 11px;
  color: #fed7aa;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.btn-primary,
.btn-ghost,
.text-link,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 800;
}

.btn-primary {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: #ea580c;
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #c2410c;
}

.btn-ghost {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-dots {
  position: absolute;
  right: max(32px, calc((100vw - 1280px) / 2 + 32px));
  bottom: 32px;
  display: flex;
  gap: 8px;
}

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

.hero-dot.is-active {
  width: 34px;
  background: #f97316;
}

.quick-search-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.quick-search-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 28px;
  padding: 28px 0;
}

.quick-search-inner h2 {
  margin: 0 0 4px;
  font-size: 24px;
}

.quick-search-inner p {
  margin: 0;
  color: var(--muted);
}

.wide-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 126px 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: #f9fafb;
}

.wide-search button {
  position: absolute;
  right: 4px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(90deg, #f97316, #ef4444);
  font-weight: 800;
}

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

.content-section.container {
  padding-left: 0;
  padding-right: 0;
}

.soft-panel {
  width: min(1280px, calc(100% - 32px));
  margin: 24px auto;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff7ed 0%, #fdf2f8 100%);
}

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

.section-head h2,
.ranking-box h2,
.detail-side h2,
.text-card h2,
.player-card h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section-more,
.text-link {
  color: #ea580c;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111827;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 45%);
  opacity: 0.8;
}

.play-chip,
.rank-badge {
  position: absolute;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.play-chip {
  right: 10px;
  bottom: 10px;
  padding: 5px 10px;
  background: rgba(249, 115, 22, 0.95);
}

.rank-badge {
  left: 10px;
  top: 10px;
  padding: 5px 10px;
  background: rgba(220, 38, 38, 0.95);
}

.card-body {
  padding: 15px;
}

.meta-row {
  justify-content: space-between;
  color: #ea580c;
  font-size: 12px;
  font-weight: 800;
}

.movie-card h3 {
  margin: 8px 0 8px;
  color: #111827;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 850;
}

.movie-card h3 a:hover {
  color: #ea580c;
}

.movie-card p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: #6b7280;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.tag-row span {
  border-radius: 999px;
  padding: 3px 8px;
  color: #ea580c;
  background: #fff7ed;
  font-size: 12px;
}

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

.compact-card h3 {
  font-size: 15px;
}

.compact-card p,
.compact-card .tag-row {
  display: none;
}

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

.category-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 22px;
  padding: 20px;
  color: #fff;
  box-shadow: var(--shadow);
}

.category-card img,
.category-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-card img {
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.category-mask {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(239, 68, 68, 0.25));
}

.category-card strong,
.category-card em {
  position: relative;
  display: block;
}

.category-card strong {
  margin-top: 72px;
  font-size: 22px;
  font-weight: 900;
}

.category-card em {
  margin-top: 6px;
  color: #f3f4f6;
  font-style: normal;
  font-size: 13px;
}

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

.ranking-box {
  position: sticky;
  top: 92px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.rank-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.rank-item,
.ranking-row {
  display: grid;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item {
  grid-template-columns: 38px 58px 1fr;
  padding: 8px;
}

.rank-item:hover,
.ranking-row:hover {
  background: #fff7ed;
  transform: translateX(2px);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ef4444);
  font-weight: 900;
  font-size: 12px;
}

.rank-item img {
  width: 58px;
  height: 78px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-item strong,
.rank-item em,
.ranking-row strong,
.ranking-row em {
  display: block;
}

.rank-item strong,
.ranking-row strong {
  color: #111827;
  font-weight: 850;
}

.rank-item em,
.ranking-row em {
  color: #6b7280;
  font-style: normal;
  font-size: 12px;
}

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

.page-hero {
  margin-top: 34px;
  padding: 42px;
  border-radius: 30px;
  color: #fff;
  background: radial-gradient(circle at 15% 20%, rgba(255, 237, 213, 0.4), transparent 28%), linear-gradient(135deg, #f97316 0%, #ef4444 52%, #db2777 100%);
  box-shadow: var(--shadow);
}

.page-hero span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

.page-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #fff7ed;
  font-size: 18px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.category-overview-media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border-radius: 18px;
  background: #111827;
}

.category-overview-media img {
  width: 100%;
  height: 108px;
  object-fit: cover;
}

.category-overview-media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #fff;
  background: rgba(234, 88, 12, 0.92);
  font-weight: 900;
}

.category-overview-card h2 {
  margin: 2px 0 8px;
  font-size: 24px;
  font-weight: 900;
}

.category-overview-card p {
  color: #6b7280;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: #111827;
  outline: none;
  background: #f9fafb;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: #fb923c;
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.18);
}

.empty-state {
  display: none;
  margin-top: 20px;
  padding: 36px;
  border-radius: 20px;
  color: #6b7280;
  text-align: center;
  background: #fff;
}

.empty-state.is-visible {
  display: block;
}

.is-hidden {
  display: none !important;
}

.ranking-top {
  margin-bottom: 24px;
}

.ranking-table {
  display: grid;
  gap: 10px;
  border-radius: 22px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ranking-row {
  grid-template-columns: 52px 58px 1fr minmax(200px, 0.8fr);
  padding: 10px;
}

.ranking-row span {
  color: #ea580c;
  font-size: 18px;
  font-weight: 950;
}

.ranking-row img {
  width: 58px;
  height: 78px;
  border-radius: 10px;
  object-fit: cover;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  color: #fff;
  background: #111827;
}

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

.detail-bg {
  filter: blur(2px) saturate(1.1);
  transform: scale(1.02);
}

.detail-bg-mask {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0.78) 46%, rgba(17, 24, 39, 0.34) 100%), linear-gradient(0deg, rgba(17, 24, 39, 1), transparent 45%);
}

.detail-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  padding: 54px 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

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

.breadcrumb {
  margin-bottom: 16px;
  color: #fed7aa;
  font-size: 14px;
}

.detail-info h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-info p {
  max-width: 830px;
  margin: 0 0 18px;
  color: #e5e7eb;
  font-size: 18px;
}

.detail-meta {
  margin-bottom: 18px;
}

.detail-meta span {
  border-radius: 999px;
  padding: 6px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

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

.player-card,
.text-card,
.detail-side {
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
  margin-bottom: 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #000;
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  padding-left: 5px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 18px 45px rgba(239, 68, 68, 0.38);
  font-size: 34px;
}

.play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.text-card {
  margin-bottom: 24px;
}

.text-card h2,
.detail-side h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.text-card p {
  margin: 0;
  color: #374151;
  white-space: pre-wrap;
}

.accent-card {
  border-left: 5px solid #f97316;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%);
}

.detail-side {
  position: sticky;
  top: 92px;
}

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

.side-grid .movie-card h3 {
  font-size: 14px;
}

.site-footer {
  margin-top: 36px;
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #030712);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand {
  margin-bottom: 14px;
  color: #fff;
  font-size: 20px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  color: #d1d5db;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fb923c;
}

.footer-bottom {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 70;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: var(--shadow);
  font-size: 20px;
  font-weight: 900;
}

.back-to-top.is-visible {
  display: block;
}

@media (min-width: 768px) {
  .hero-carousel {
    height: 600px;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 14px;
    font-size: 14px;
  }

  .header-search input {
    width: 210px;
  }

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

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

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

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

  .ranking-box,
  .detail-side {
    position: static;
  }
}

@media (max-width: 860px) {
  .main-nav,
  .header-search {
    display: none;
  }

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

  .brand {
    font-size: 20px;
  }

  .hero-carousel {
    height: 540px;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 86px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-dots {
    left: 16px;
    right: auto;
  }

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

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

  .detail-poster {
    width: min(220px, 70vw);
  }

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

  .ranking-row {
    grid-template-columns: 42px 52px 1fr;
  }

  .ranking-row em {
    grid-column: 3;
  }
}

@media (max-width: 640px) {
  .container,
  .mobile-panel,
  .soft-panel {
    width: min(100% - 24px, 1280px);
  }

  .hero-copy h1,
  .detail-info h1,
  .page-hero h1 {
    letter-spacing: -0.04em;
  }

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

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

  .soft-panel,
  .page-hero {
    padding: 22px;
    border-radius: 22px;
  }

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

  .movie-grid.six-cols,
  .movie-grid.four-cols,
  .movie-grid.three-cols,
  .category-grid,
  .side-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .movie-card h3 {
    font-size: 15px;
  }

  .movie-card p {
    min-height: auto;
  }

  .tag-row {
    display: none;
  }

  .category-card {
    min-height: 150px;
  }

  .category-card strong {
    margin-top: 62px;
    font-size: 18px;
  }

  .category-overview-media img {
    height: 94px;
  }

  .detail-hero {
    min-height: auto;
  }

  .detail-hero-inner {
    padding: 36px 0;
  }

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

  .text-card,
  .detail-side {
    padding: 18px;
  }
}
