:root {
  --bg: #fff7ed;
  --surface: #ffffff;
  --surface-soft: #fffaf2;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: rgba(251, 146, 60, 0.18);
  --brand: #f97316;
  --brand-deep: #ea580c;
  --brand-soft: #fed7aa;
  --rose: #fb7185;
  --amber: #f59e0b;
  --shadow: 0 22px 70px rgba(154, 52, 18, 0.16);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(251, 146, 60, 0.18), transparent 32rem),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 34%, #fff7ed 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 237, 0.86);
  border-bottom: 1px solid rgba(251, 146, 60, 0.16);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c, #f43f5e);
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.28);
}

.logo-text {
  font-size: 1.12rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #4b5563;
  font-weight: 700;
  transition: all 0.25s ease;
}

.nav-link {
  padding: 10px 18px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c, #f43f5e);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(154, 52, 18, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #ea580c;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

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

.mobile-link {
  padding: 12px;
}

.hero-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: 58px 0 36px;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.34;
  pointer-events: none;
}

.hero-glow-one {
  top: 28px;
  left: -120px;
  background: #fb923c;
}

.hero-glow-two {
  right: -140px;
  bottom: 40px;
  background: #fb7185;
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

.hero-slider {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  background: #111827;
  box-shadow: 0 36px 90px rgba(124, 45, 18, 0.26);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 38px;
  padding: 58px;
  opacity: 0;
  transform: translateX(26px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.28)),
    radial-gradient(circle at 25% 20%, rgba(251, 146, 60, 0.56), transparent 30rem);
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) blur(1px);
  transform: scale(1.04);
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #ea580c;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #fed7aa;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

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

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-tags span {
  color: #fff7ed;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.tag-row span {
  color: #9a3412;
  background: #ffedd5;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c, #f43f5e);
  box-shadow: 0 16px 36px rgba(244, 63, 94, 0.28);
}

.btn-ghost {
  color: #fff7ed;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.category-hero .btn-ghost,
.slim-hero .btn-ghost {
  color: #9a3412;
  border-color: rgba(251, 146, 60, 0.25);
  background: rgba(255, 255, 255, 0.74);
}

.hero-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 8px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.38);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  left: 58px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

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

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

.hero-side {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.side-title {
  margin-bottom: 14px;
  color: #9a3412;
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-mini-list {
  display: grid;
  gap: 12px;
}

.hero-mini,
.compact-card,
.rank-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(251, 146, 60, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  transition: all 0.25s ease;
}

.hero-mini:hover,
.compact-card:hover,
.rank-item:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 18px 40px rgba(154, 52, 18, 0.12);
}

.hero-mini img,
.compact-card img,
.rank-item img {
  width: 70px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
}

.hero-mini strong,
.compact-card strong,
.rank-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #1f2937;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-mini em,
.compact-card em,
.rank-copy em {
  display: block;
  margin-top: 5px;
  color: #9a3412;
  font-size: 0.82rem;
  font-style: normal;
}

.compact-card small {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.compact-card small span {
  padding: 2px 7px;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 0.72rem;
  font-weight: 800;
}

.side-link,
.text-link,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ea580c;
  font-weight: 900;
}

.side-link {
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  border-radius: 16px;
  background: #ffedd5;
}

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

.pt-0 {
  padding-top: 0;
}

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

.section-header h2,
.page-hero h1,
.detail-intro h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-header p,
.page-hero p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
}

.section-link {
  min-width: 112px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffedd5;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(251, 146, 60, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(154, 52, 18, 0.08);
}

.search-field,
.select-field {
  display: grid;
  gap: 6px;
  color: #9a3412;
  font-size: 0.82rem;
  font-weight: 900;
}

.search-field input,
.select-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(251, 146, 60, 0.2);
  border-radius: 18px;
  color: #1f2937;
  background: #fffaf2;
  outline: none;
}

.search-field input {
  padding: 0 16px;
}

.select-field select {
  padding: 0 12px;
}

.search-field input:focus,
.select-field select:focus {
  border-color: rgba(249, 115, 22, 0.65);
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.14);
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(251, 146, 60, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(154, 52, 18, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: 0 26px 60px rgba(154, 52, 18, 0.16);
}

.poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #ffedd5, #ffe4e6);
}

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

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

.poster::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.72));
}

.poster-type {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.55);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9a3412;
  font-size: 0.78rem;
  font-weight: 900;
}

.movie-card h3 {
  margin: 8px 0 6px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.movie-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 48px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-small .movie-card-body {
  padding: 14px;
}

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

.category-movie-grid {
  margin-top: 28px;
}

.warm-section {
  background: linear-gradient(180deg, rgba(255, 237, 213, 0.45), rgba(255, 255, 255, 0.75));
}

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

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  border: 1px solid rgba(251, 146, 60, 0.16);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.rank-panel-head span {
  color: #ea580c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.rank-panel-head h2 {
  margin: 4px 0 16px;
  font-size: 2rem;
}

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

.rank-item {
  grid-template-columns: 40px 58px minmax(0, 1fr);
}

.rank-item img {
  width: 58px;
  height: 76px;
}

.rank-no {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c, #f43f5e);
  font-weight: 900;
}

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

.category-tile {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(251, 146, 60, 0.15);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(154, 52, 18, 0.08);
  transition: all 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.36);
  box-shadow: 0 24px 54px rgba(154, 52, 18, 0.14);
}

.tile-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.tile-images img {
  aspect-ratio: 2 / 3;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.category-tile strong {
  font-size: 1.08rem;
}

.category-tile em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 82% 20%, rgba(251, 113, 133, 0.18), transparent 28rem),
    linear-gradient(135deg, #fff7ed, #ffffff 46%, #ffedd5);
}

.slim-hero {
  padding: 86px 0 70px;
}

.category-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.cover-stack {
  position: relative;
  min-height: 330px;
}

.cover-stack img {
  position: absolute;
  width: 190px;
  aspect-ratio: 2 / 3;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(154, 52, 18, 0.18);
}

.cover-stack img:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
}

.cover-stack img:nth-child(2) {
  top: 36px;
  left: 118px;
  z-index: 2;
}

.cover-stack img:nth-child(3) {
  top: 88px;
  right: 0;
  transform: rotate(8deg);
}

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

.category-card-large {
  overflow: hidden;
  border: 1px solid rgba(251, 146, 60, 0.15);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(154, 52, 18, 0.1);
}

.category-cover-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, #ffedd5, #ffe4e6);
}

.category-cover-row img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  object-fit: cover;
}

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

.category-card-body span {
  color: #ea580c;
  font-size: 0.82rem;
  font-weight: 900;
}

.category-card-body h2 {
  margin: 8px 0;
  font-size: 1.6rem;
}

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

.ranking-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 70px 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(251, 146, 60, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(154, 52, 18, 0.08);
}

.ranking-no {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c, #f43f5e);
  font-weight: 900;
}

.ranking-poster img {
  width: 86px;
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.ranking-copy h2 {
  margin: 0 0 6px;
  font-size: 1.18rem;
}

.ranking-copy p {
  margin: 0 0 10px;
  color: var(--muted);
}

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

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

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.42)),
    radial-gradient(circle at 20% 18%, rgba(251, 146, 60, 0.42), transparent 30rem);
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) saturate(1.15);
  transform: scale(1.04);
}

.detail-top {
  position: relative;
  z-index: 1;
  padding: 52px 0 74px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

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

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

.detail-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 8px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.32);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-intro .section-kicker {
  color: #fed7aa;
}

.detail-intro h1 {
  color: #ffffff;
}

.lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
  font-weight: 900;
}

.player-section {
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.video-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background: #111827;
  box-shadow: 0 34px 90px rgba(17, 24, 39, 0.28);
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #020617;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(251, 146, 60, 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-symbol {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c, #f43f5e);
  box-shadow: 0 22px 50px rgba(244, 63, 94, 0.35);
  font-size: 2.4rem;
  line-height: 1;
}

.play-overlay span:last-child {
  font-size: 1.05rem;
  font-weight: 900;
}

.detail-content-section {
  padding-top: 52px;
}

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

.detail-article,
.detail-side-card {
  border: 1px solid rgba(251, 146, 60, 0.15);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(154, 52, 18, 0.08);
}

.detail-article {
  padding: 30px;
}

.detail-article h2,
.detail-side-card h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.detail-article p {
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 1.02rem;
}

.detail-article p:last-child {
  margin-bottom: 0;
}

.detail-side-card {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.detail-side-card dl {
  margin: 0;
}

.detail-side-card div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(251, 146, 60, 0.13);
}

.detail-side-card div:last-child {
  border-bottom: 0;
}

.detail-side-card dt {
  color: #9a3412;
  font-weight: 900;
}

.detail-side-card dd {
  margin: 0;
  color: #4b5563;
}

[data-movie-card].is-hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .hero-shell,
  .split-layout,
  .category-hero-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .hero-side,
  .rank-panel,
  .detail-side-card {
    position: static;
  }

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

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 240px;
    padding: 42px;
  }

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

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

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

  .menu-toggle {
    display: block;
  }

  .hero-section {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-slider {
    min-height: 720px;
    border-radius: 28px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
    padding: 32px 24px 58px;
  }

  .hero-poster {
    width: min(230px, 68vw);
    margin: 0 auto;
    order: -1;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-dots {
    left: 24px;
    bottom: 24px;
  }

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

  .section-header {
    display: grid;
  }

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

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

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

  .detail-poster {
    width: min(260px, 72vw);
  }

  .ranking-row {
    grid-template-columns: 54px 72px minmax(0, 1fr);
    gap: 12px;
  }

  .ranking-poster img {
    width: 72px;
  }
}

@media (max-width: 520px) {
  .container,
  .header-inner,
  .hero-shell,
  .mobile-nav {
    width: min(100% - 22px, 1180px);
  }

  .movie-grid,
  .compact-grid,
  .category-grid,
  .category-large-grid {
    grid-template-columns: 1fr;
  }

  .category-cover-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-hero {
    padding: 64px 0 54px;
  }

  .ranking-copy p {
    display: none;
  }
}
