:root {
  color-scheme: light;
  --bg: #fff8ed;
  --bg-soft: #fffbf2;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: #ffffff;
  --text: #3f2208;
  --muted: #8a5a25;
  --line: rgba(245, 158, 11, 0.25);
  --brand: #d97706;
  --brand-dark: #92400e;
  --brand-soft: #fef3c7;
  --shadow: 0 22px 55px rgba(146, 64, 14, 0.16);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(251, 191, 36, 0.28), transparent 34rem),
    linear-gradient(180deg, #fff7ed 0%, #fffdf7 42%, #fff8ed 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(255, 237, 213, 0.94));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(146, 64, 14, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  background: linear-gradient(135deg, #f59e0b, #ea580c 54%, #92400e);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 21px;
  color: var(--brand-dark);
  letter-spacing: 0.02em;
}

.brand-text em {
  margin-top: 4px;
  color: var(--brand);
  font-size: 12px;
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #78350f;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--brand);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search label {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search label span,
.large-search label span,
.filter-panel label span,
.search-filter label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.header-search input {
  width: 250px;
  border: 1px solid rgba(217, 119, 6, 0.28);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--text);
  outline: none;
  background: rgba(255, 255, 255, 0.72);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input:focus,
.large-search input:focus,
.filter-panel input:focus,
.search-filter input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.header-search button,
.large-search button,
.search-filter button {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 14px 28px rgba(234, 88, 12, 0.24);
  padding: 10px 18px;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  color: var(--brand-dark);
  background: rgba(253, 230, 138, 0.55);
  font-weight: 800;
}

.mobile-nav {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: #78350f;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 119, 6, 0.14);
}

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

.hero-shell {
  position: relative;
  max-width: var(--max);
  margin: 34px auto 0;
  padding: 0 22px 28px;
}

.hero-glow {
  position: absolute;
  inset: 28px 48px auto auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.24);
  filter: blur(75px);
  pointer-events: none;
}

.hero-slider {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(120, 53, 15, 0.95), rgba(194, 65, 12, 0.9) 44%, rgba(251, 191, 36, 0.72)),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.34), transparent 32rem);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 58px;
  opacity: 0;
  transform: translateX(22px) scale(0.99);
  pointer-events: none;
  transition: opacity 0.48s ease, transform 0.48s ease;
}

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

.hero-copy {
  color: #fff7ed;
  max-width: 620px;
}

.hero-kicker,
.detail-kicker,
.page-hero span,
.home-rank-strip span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 13px;
  color: #fff7ed;
  background: rgba(251, 191, 36, 0.24);
  border: 1px solid rgba(253, 230, 138, 0.36);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 251, 235, 0.88);
  font-size: 19px;
  line-height: 1.8;
}

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

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

.hero-tags span,
.card-tags span {
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #78350f;
  background: rgba(255, 247, 237, 0.84);
}

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

.primary-action,
.secondary-action,
.section-more,
.strip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-action {
  padding: 14px 26px;
  color: #78350f;
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.secondary-action {
  padding: 14px 24px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.primary-action:hover,
.secondary-action:hover,
.section-more:hover,
.strip-link:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  justify-self: end;
  width: min(420px, 100%);
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.35);
  transform: rotate(2.5deg);
}

.hero-poster::after,
.poster::after,
.detail-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.hero-poster img,
.poster img,
.detail-cover img,
.compact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

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

.hero-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #78350f;
  background: #fff7ed;
  font-size: 28px;
  line-height: 1;
}

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

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

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

.hero-search-panel {
  position: relative;
  margin: -46px auto 0;
  width: calc(100% - 64px);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 45px rgba(146, 64, 14, 0.13);
  backdrop-filter: blur(18px);
}

.large-search,
.search-filter form {
  display: flex;
  gap: 12px;
}

.large-search label,
.search-filter label {
  flex: 1;
}

.large-search input,
.search-filter input,
.filter-panel input {
  width: 100%;
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 999px;
  outline: none;
  color: var(--text);
  background: #ffffff;
  padding: 14px 18px;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.category-chips a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #78350f;
  font-weight: 800;
  background: var(--brand-soft);
  border: 1px solid rgba(217, 119, 6, 0.16);
}

.home-rank-strip,
.content-section,
.page-main,
.detail-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 22px;
}

.home-rank-strip {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}

.home-rank-strip span {
  color: var(--brand-dark);
  background: #ffedd5;
  border-color: rgba(217, 119, 6, 0.18);
}

.home-rank-strip h2 {
  margin: 10px 0 0;
  font-size: 23px;
  line-height: 1.25;
}

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

.compact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 9px;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(146, 64, 14, 0.08);
}

.compact-card img {
  width: 52px;
  height: 70px;
  border-radius: 13px;
  flex: 0 0 auto;
}

.compact-card span:last-child {
  min-width: 0;
}

.compact-card strong,
.compact-card em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-card strong {
  color: #78350f;
  font-size: 14px;
}

.compact-card em {
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.compact-rank {
  position: absolute;
  top: -7px;
  left: -7px;
  min-width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  font-weight: 900;
  font-size: 12px;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.24);
}

.strip-link,
.section-more {
  padding: 11px 17px;
  color: #78350f;
  background: #ffedd5;
  border: 1px solid rgba(217, 119, 6, 0.16);
}

.content-section {
  padding-top: 40px;
}

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

.section-heading h2,
.page-hero h1,
.story-section h2 {
  margin: 0;
  color: var(--brand-dark);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-heading h2 {
  font-size: clamp(27px, 4vw, 40px);
}

.section-heading p,
.page-hero p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 119, 6, 0.13);
  box-shadow: 0 15px 36px rgba(146, 64, 14, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.32);
  box-shadow: 0 24px 52px rgba(146, 64, 14, 0.18);
}

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

.poster img {
  transition: transform 0.45s ease;
}

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

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.32);
  z-index: 1;
}

.card-body {
  padding: 18px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.card-meta a {
  border-radius: 999px;
  padding: 5px 9px;
  background: #ffedd5;
}

.card-body h3 {
  margin: 12px 0 9px;
  color: #78350f;
  font-size: 20px;
  line-height: 1.32;
}

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

.card-tags span {
  color: #92400e;
  background: #fef3c7;
}

.page-main {
  padding-top: 38px;
}

.page-hero {
  border-radius: 32px;
  padding: 48px;
  margin-bottom: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 237, 213, 0.9)),
    radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.25), transparent 28rem);
  border: 1px solid rgba(217, 119, 6, 0.16);
  box-shadow: var(--shadow);
}

.page-hero.compact {
  padding: 40px;
}

.page-hero span {
  color: var(--brand-dark);
  background: #ffedd5;
  border-color: rgba(217, 119, 6, 0.18);
}

.page-hero h1 {
  margin-top: 16px;
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
}

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

.category-card {
  border-radius: 26px;
  border: 1px solid rgba(217, 119, 6, 0.15);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(146, 64, 14, 0.1);
  overflow: hidden;
}

.category-card > a {
  display: block;
  padding: 24px;
  background: linear-gradient(135deg, #fffbeb, #ffedd5);
}

.category-card > a span {
  display: block;
  margin-bottom: 9px;
  color: #78350f;
  font-size: 24px;
  font-weight: 900;
}

.category-card > a strong {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.category-samples {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.filter-panel,
.search-filter {
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 119, 6, 0.14);
  box-shadow: 0 14px 32px rgba(146, 64, 14, 0.08);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--brand-dark);
}

.detail-main {
  padding-top: 32px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  align-content: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-start span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding-left: 6px;
  color: #78350f;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  font-size: 32px;
}

.player-start strong {
  font-size: 18px;
  letter-spacing: 0.06em;
}

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

.detail-panel {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 119, 6, 0.14);
  box-shadow: 0 18px 42px rgba(146, 64, 14, 0.12);
}

.detail-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fed7aa;
}

.detail-copy {
  padding: 24px;
}

.detail-kicker {
  color: var(--brand-dark);
  background: #ffedd5;
  border-color: rgba(217, 119, 6, 0.18);
}

.detail-copy h1 {
  margin: 14px 0 10px;
  color: #78350f;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-one-line {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.detail-meta div {
  padding: 12px;
  border-radius: 16px;
  background: #fff7ed;
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.detail-meta dt {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.detail-meta dd {
  margin: 5px 0 0;
  color: #78350f;
  font-weight: 800;
}

.story-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.story-section article {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 119, 6, 0.14);
  box-shadow: 0 16px 38px rgba(146, 64, 14, 0.1);
}

.story-section h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.story-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.related-section {
  padding-left: 0;
  padding-right: 0;
}

.site-footer {
  margin-top: 52px;
  border-top: 1px solid rgba(217, 119, 6, 0.18);
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.78), rgba(254, 243, 199, 0.72));
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 22px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer-links h2 {
  margin: 0 0 14px;
  color: #78350f;
  font-size: 17px;
}

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

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

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

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 22px 30px;
  border-top: 1px solid rgba(217, 119, 6, 0.14);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
  }

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

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

  .hero-slide {
    grid-template-columns: 1fr 0.72fr;
    padding: 44px;
  }

  .home-rank-strip {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px;
  }

  .hero-poster {
    justify-self: center;
    width: min(310px, 80vw);
    transform: rotate(0);
  }

  .hero-search-panel {
    width: calc(100% - 24px);
  }

  .large-search,
  .search-filter form {
    flex-direction: column;
  }

  .movie-grid,
  .category-grid,
  .story-section,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .compact-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .hero-shell,
  .home-rank-strip,
  .content-section,
  .page-main,
  .detail-main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-slider {
    border-radius: 24px;
    min-height: 710px;
  }

  .hero-slide {
    padding: 24px;
  }

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

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

  .page-hero,
  .page-hero.compact {
    padding: 28px;
    border-radius: 24px;
  }

  .movie-grid {
    gap: 16px;
  }

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

  .player-start span {
    width: 70px;
    height: 70px;
  }
}
