:root {
  --bg: #07090f;
  --bg-soft: #111827;
  --bg-card: #18202d;
  --bg-card-strong: #1f2937;
  --text: #f8fafc;
  --muted: #9ca3af;
  --muted-strong: #d1d5db;
  --line: rgba(148, 163, 184, 0.2);
  --red: #dc2626;
  --red-light: #ef4444;
  --orange: #f97316;
  --blue: #38bdf8;
  --green: #34d399;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.18), transparent 34rem),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.13), transparent 30rem),
    linear-gradient(180deg, #111827 0%, #020617 42%, #111827 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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 {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(31, 41, 55, 0.96), rgba(17, 24, 39, 0.96));
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header-shell,
.footer-shell,
.content-section,
.detail-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 26px rgba(220, 38, 38, 0.34);
  font-size: 15px;
}

.brand-text {
  font-size: 24px;
  background: linear-gradient(90deg, #ef4444, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.site-nav-link,
.mobile-nav-link {
  color: var(--muted-strong);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav-link:hover,
.mobile-nav-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.header-search,
.mobile-search,
.intro-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search input,
.mobile-search input,
.intro-search input,
.search-page-form input,
.filter-bar input,
.filter-bar select {
  color: #ffffff;
  background: rgba(31, 41, 55, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
  width: 260px;
  padding: 11px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.intro-search input:focus,
.search-page-form input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(239, 68, 68, 0.82);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.16);
  background: rgba(17, 24, 39, 0.96);
}

.header-search button,
.mobile-search button,
.intro-search button,
.search-page-form button,
.primary-button {
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.intro-search button:hover,
.search-page-form button:hover,
.primary-button:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.08);
  box-shadow: 0 18px 42px rgba(220, 38, 38, 0.38);
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  color: #ffffff;
  background: rgba(31, 41, 55, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  padding: 8px 12px;
}

.mobile-nav {
  display: none;
  padding: 16px;
  background: rgba(17, 24, 39, 0.98);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

.mobile-search input {
  width: 100%;
  padding: 11px 16px;
}

.hero {
  position: relative;
  height: 72vh;
  min-height: 560px;
  overflow: hidden;
  background: #000000;
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1f2937, #111827);
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.32) 52%, rgba(2, 6, 23, 0.1) 100%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 64px;
  width: min(720px, calc(100% - 48px));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.16);
  border: 1px solid rgba(248, 113, 113, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.hero-content h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-content p {
  margin: 0 0 24px;
  color: #d1d5db;
  font-size: clamp(17px, 2vw, 21px);
  max-width: 680px;
}

.hero-tags,
.movie-meta-row,
.movie-stat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.hero-tags span,
.movie-meta-row span,
.movie-stat-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fecaca;
  border: 1px solid rgba(252, 165, 165, 0.34);
  background: rgba(15, 23, 42, 0.45);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  transition: border 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.ghost-button:hover,
.section-more:hover {
  color: #ffffff;
  border-color: rgba(248, 113, 113, 0.78);
  background: rgba(220, 38, 38, 0.16);
  transform: translateY(-1px);
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  display: flex;
  gap: 9px;
  z-index: 2;
}

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

.hero-dot.active {
  width: 34px;
  background: var(--red-light);
}

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

.intro-panel,
.soft-panel,
.detail-card,
.sidebar-card,
.ranking-panel,
.category-panel,
.info-block,
.search-page-panel {
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.86), rgba(15, 23, 42, 0.88));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-panel {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  margin-top: 40px;
}

.intro-copy h2,
.section-heading h2,
.category-panel h2,
.detail-card h2,
.sidebar-card h2,
.info-block h2 {
  margin: 12px 0 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
}

.intro-copy p,
.category-panel p,
.info-block p,
.detail-card p,
.sidebar-card p {
  color: var(--muted-strong);
}

.intro-search input,
.search-page-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
}

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

.compact-heading {
  align-items: center;
}

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

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

.movie-card,
.horizontal-card {
  overflow: hidden;
  background: rgba(31, 41, 55, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease, background 0.25s ease;
}

.movie-card:hover,
.horizontal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.78);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
  background: rgba(31, 41, 55, 1);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(239, 68, 68, 0.24), transparent 40%),
    linear-gradient(135deg, #1f2937, #0f172a);
}

.poster-frame img,
.horizontal-poster img,
.poster-detail-card img,
.category-poster-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.66));
}

.poster-category,
.poster-duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
  backdrop-filter: blur(10px);
}

.poster-category {
  top: 10px;
  left: 10px;
  background: rgba(220, 38, 38, 0.92);
}

.poster-duration {
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.72);
}

.rank-badge {
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

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

.movie-card h3,
.horizontal-content h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a,
.horizontal-content h3 a {
  transition: color 0.2s ease;
}

.movie-card h3 a:hover,
.horizontal-content h3 a:hover {
  color: #f87171;
}

.movie-card p,
.horizontal-content p {
  min-height: 46px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.movie-meta-row,
.movie-stat-row {
  font-size: 13px;
}

.movie-stat-row {
  margin-top: 9px;
}

.horizontal-list,
.ranking-list {
  display: grid;
  gap: 16px;
}

.horizontal-card {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 12px;
}

.horizontal-poster {
  flex: 0 0 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #111827;
}

.horizontal-content {
  flex: 1;
  min-width: 0;
}

.horizontal-rank {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 19px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.split-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.ranking-panel,
.category-panel,
.soft-panel {
  padding: 30px;
}

.category-entry-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.category-entry {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.14);
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.category-entry:hover {
  transform: translateX(4px);
  border-color: rgba(239, 68, 68, 0.62);
  background: rgba(127, 29, 29, 0.2);
}

.category-entry span {
  display: block;
  font-weight: 900;
}

.category-entry small {
  color: var(--muted);
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 260px;
  padding: 42px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.24), transparent 34%),
    radial-gradient(circle at 80% 40%, rgba(249, 115, 22, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(31, 41, 55, 0.88), rgba(2, 6, 23, 0.82));
  box-shadow: var(--shadow);
}

.compact-page-hero {
  min-height: 220px;
}

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

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 18px;
}

.page-hero-stat {
  min-width: 160px;
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(248, 113, 113, 0.22);
}

.page-hero-stat strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  background: linear-gradient(90deg, #ef4444, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero-stat span {
  color: var(--muted);
}

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

.category-card-large {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(31, 41, 55, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.16);
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.category-card-large:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.64);
  box-shadow: var(--shadow);
}

.category-poster-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  aspect-ratio: 16 / 9;
  background: #111827;
}

.category-card-body {
  padding: 18px;
}

.category-card-body span {
  color: #fca5a5;
  font-size: 13px;
  font-weight: 800;
}

.category-card-body h2 {
  margin: 8px 0;
}

.category-card-body p {
  margin: 0;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
}

.filter-input-wrap {
  flex: 1;
  min-width: 0;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  padding: 12px 15px;
}

.filter-bar select {
  max-width: 190px;
}

.filter-count {
  color: var(--muted);
  white-space: nowrap;
}

.detail-main {
  padding-bottom: 48px;
}

.detail-shell {
  padding-top: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: #f87171;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.92fr);
  gap: 26px;
  align-items: start;
}

.detail-primary,
.detail-sidebar {
  display: grid;
  gap: 22px;
}

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

.player-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #000000;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.72)),
    rgba(0, 0, 0, 0.2);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-card.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
}

.player-play-button {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 20px 48px rgba(220, 38, 38, 0.42);
  font-size: 28px;
  transition: transform 0.2s ease;
}

.player-play-button:hover {
  transform: scale(1.06);
}

.player-overlay strong,
.player-overlay span {
  display: block;
}

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

.player-overlay span {
  color: var(--muted-strong);
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  margin: 0;
  color: #fecaca;
  font-size: 14px;
  pointer-events: none;
}

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

.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.detail-title-row h1 {
  margin: 12px 0 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
}

.compact-button {
  padding: 9px 15px;
  white-space: nowrap;
}

.detail-one-line {
  font-size: 18px;
  color: #e5e7eb;
}

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

.detail-meta-grid span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.detail-meta-grid strong {
  color: #fca5a5;
  font-size: 12px;
}

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

.tag-row span {
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.26);
  background: rgba(127, 29, 29, 0.22);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 13px;
}

.poster-detail-card {
  overflow: hidden;
  padding: 0;
}

.poster-detail-card img {
  aspect-ratio: 16 / 9;
  background: #111827;
}

.poster-detail-card div {
  padding: 18px;
}

.poster-detail-card strong,
.poster-detail-card span {
  display: block;
}

.poster-detail-card span {
  color: var(--muted);
}

.related-list .horizontal-card {
  padding: 9px;
}

.related-list .horizontal-poster {
  flex-basis: 112px;
}

.related-list .horizontal-content p,
.related-list .movie-meta-row {
  display: none;
}

.watch-tips ul {
  padding-left: 20px;
  color: var(--muted-strong);
}

.search-page-panel {
  padding: 26px;
}

.search-page-form {
  margin-bottom: 20px;
}

.search-summary {
  margin-bottom: 22px;
  color: var(--muted-strong);
}

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

.info-block {
  padding: 26px;
}

.site-footer {
  margin-top: 44px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92), #020617);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  padding: 46px 0;
}

.footer-brand p {
  color: var(--muted);
  max-width: 360px;
}

.footer-column h2 {
  font-size: 18px;
  margin: 0 0 14px;
}

.footer-column a {
  display: block;
  color: var(--muted);
  margin: 8px 0;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  color: #6b7280;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 14px;
}

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

  .mobile-menu-button {
    display: inline-flex;
  }

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

  .split-section,
  .detail-layout,
  .intro-panel,
  .footer-shell,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .header-shell,
  .footer-shell,
  .content-section,
  .detail-shell,
  .page-hero {
    width: min(100% - 22px, 1180px);
  }

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

  .hero {
    height: 70vh;
    min-height: 520px;
  }

  .hero-content {
    left: 18px;
    bottom: 78px;
    width: calc(100% - 36px);
  }

  .hero-dots {
    left: 18px;
    right: auto;
    bottom: 34px;
  }

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

  .intro-panel,
  .soft-panel,
  .ranking-panel,
  .category-panel,
  .detail-card,
  .sidebar-card,
  .search-page-panel {
    padding: 20px;
  }

  .section-heading,
  .page-hero,
  .detail-title-row,
  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero {
    padding: 26px;
  }

  .page-hero-stat {
    min-width: 100%;
    min-height: 90px;
  }

  .movie-grid,
  .small-grid,
  .category-overview-grid,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-card {
    gap: 12px;
  }

  .horizontal-poster {
    flex-basis: 120px;
  }

  .horizontal-rank {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .player-overlay {
    flex-direction: column;
    text-align: center;
  }

  .player-play-button {
    width: 64px;
    height: 64px;
  }
}
