:root {
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --blue-50: #eff6ff;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 10px 28px rgba(8, 145, 178, 0.14);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--cyan-50) 42%, #ffffff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(236, 254, 255, 0.94), rgba(239, 246, 255, 0.94), rgba(236, 254, 255, 0.94));
  border-bottom: 1px solid rgba(8, 145, 178, 0.14);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  box-shadow: 0 14px 24px rgba(6, 182, 212, 0.25);
}

.brand-mark.small {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--cyan-600), var(--blue-600));
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text small {
  color: var(--gray-500);
  font-size: 0.78rem;
}

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

.desktop-nav a,
.mobile-nav a {
  padding: 10px 14px;
  color: var(--gray-700);
  border-radius: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: #ffffff;
  background: var(--cyan-500);
  box-shadow: 0 10px 24px rgba(6, 182, 212, 0.24);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.header-search input,
.mobile-search input,
.filter-controls input,
.filter-controls select {
  border: 2px solid rgba(6, 182, 212, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--gray-800);
  outline: none;
  transition: 0.25s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 16px;
}

.header-search button,
.mobile-search button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-500));
  cursor: pointer;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: none;
  background: transparent;
  color: var(--gray-800);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.mobile-search input {
  min-width: 0;
  flex: 1;
  padding: 10px 14px;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--gray-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-image:
    linear-gradient(90deg, rgba(3, 7, 18, 0.88), rgba(3, 7, 18, 0.55), rgba(3, 7, 18, 0.2)),
    var(--hero-image),
    linear-gradient(135deg, #0f172a, #0891b2);
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 36%, rgba(34, 211, 238, 0.35), transparent 22rem),
    linear-gradient(180deg, transparent, rgba(3, 7, 18, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
  padding: 76px 0;
}

.hero-copy {
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--cyan-600);
  background: rgba(236, 254, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 24px 0 18px;
  font-size: clamp(2.7rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.8;
}

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

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

.hero-tags span,
.detail-tags span,
.chip-row span {
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-500));
  box-shadow: 0 18px 34px rgba(6, 182, 212, 0.28);
}

.btn.ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.btn.light {
  color: var(--cyan-600);
  background: #ffffff;
}

.btn:hover,
.movie-card:hover,
.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(59, 130, 246, 0.18));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: 0.45s ease;
}

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

.hero-poster span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(6, 182, 212, 0.92);
  font-weight: 900;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

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

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

.stats-strip {
  width: min(var(--container), calc(100% - 32px));
  margin: -48px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.stat-card strong {
  display: block;
  color: var(--gray-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--gray-500);
  font-weight: 800;
}

.content-section,
.category-section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 0;
}

.category-section {
  width: 100%;
  padding: 78px max(16px, calc((100% - var(--container)) / 2));
  background: linear-gradient(90deg, var(--blue-50), var(--cyan-50));
}

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

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.section-heading h2,
.filter-title h2,
.page-hero h1,
.detail-info h1 {
  margin: 10px 0 8px;
  color: var(--gray-900);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-heading p,
.page-hero p,
.filter-title p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.8;
}

.section-heading > a {
  color: var(--cyan-600);
  font-weight: 900;
}

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

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

.movie-grid.large-list {
  margin-top: 24px;
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(8, 145, 178, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
}

.movie-card.featured {
  background: linear-gradient(135deg, #ffffff, var(--cyan-50));
  box-shadow: var(--shadow-card);
}

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(59, 130, 246, 0.22)),
    linear-gradient(135deg, var(--gray-100), #ffffff);
}

.poster-frame img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.48s ease;
}

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

.score-badge,
.type-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

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

.score-badge.big {
  top: 18px;
  right: 18px;
  font-size: 1.1rem;
}

.type-badge {
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: rgba(6, 182, 212, 0.92);
}

.rank-badge {
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  background: rgba(17, 24, 39, 0.86);
}

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

.movie-meta-line,
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--gray-500);
  font-size: 0.82rem;
  font-weight: 700;
}

.movie-card h3 {
  margin: 10px 0 8px;
  color: var(--gray-900);
  font-size: 1.1rem;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--cyan-600);
}

.movie-card p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
}

.chip-row {
  min-height: 31px;
  margin-bottom: 14px;
}

.chip-row span,
.detail-tags span {
  color: var(--cyan-600);
  background: var(--cyan-50);
}

.card-foot a {
  color: var(--cyan-600);
}

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

.category-tile,
.category-overview-card {
  display: block;
  padding: 26px;
  border: 1px solid rgba(8, 145, 178, 0.12);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
}

.category-tile span,
.category-overview-main span {
  color: var(--cyan-600);
  font-weight: 900;
}

.category-tile h3,
.category-overview-main h2 {
  margin: 10px 0;
  color: var(--gray-900);
}

.category-tile p,
.category-tile small,
.category-overview-main p {
  color: var(--gray-600);
  line-height: 1.7;
}

.category-tile small {
  display: block;
  margin-top: 14px;
}

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

.category-overview-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.category-overview-card li + li {
  margin-top: 8px;
}

.category-overview-card li a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--gray-50);
}

.category-overview-card li a:hover {
  color: var(--cyan-600);
  background: var(--cyan-50);
}

.callout-band {
  width: min(var(--container), calc(100% - 32px));
  margin: 76px auto 0;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 18rem),
    linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  box-shadow: var(--shadow-soft);
}

.callout-band span {
  font-weight: 900;
  opacity: 0.9;
}

.callout-band h2 {
  margin: 8px 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}

.callout-band p {
  margin: 0;
  opacity: 0.88;
}

.page-hero {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 24px;
}

.page-hero.compact {
  text-align: center;
}

.page-hero.compact .section-kicker {
  margin: 0 auto;
}

.ranking-hero {
  padding-bottom: 10px;
}

.filter-panel {
  padding: 22px;
  border: 1px solid rgba(8, 145, 178, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.filter-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.filter-title h2 {
  margin: 0;
  font-size: 1.5rem;
}

.filter-controls {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--gray-900);
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 7, 18, 0.92), rgba(3, 7, 18, 0.68), rgba(3, 7, 18, 0.46)),
    var(--detail-image),
    linear-gradient(135deg, #0f172a, #164e63);
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.1);
  transform: scale(1.03);
}

.detail-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 58px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

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

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.2));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

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

.detail-info .section-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.detail-info h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
}

.one-line {
  max-width: 860px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  line-height: 1.9;
}

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

.meta-table div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.meta-table dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.meta-table dd {
  margin: 4px 0 0;
  color: #ffffff;
  font-weight: 800;
}

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

.player-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow-soft);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffffff;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(6, 182, 212, 0.22), transparent 18rem),
    rgba(0, 0, 0, 0.44);
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.player-panel.is-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-500));
  box-shadow: 0 18px 40px rgba(6, 182, 212, 0.35);
}

.detail-article {
  margin-top: 34px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.detail-article h2 {
  margin: 0 0 12px;
  color: var(--gray-900);
}

.detail-article h2:not(:first-child) {
  margin-top: 28px;
}

.detail-article p {
  margin: 0;
  color: var(--gray-700);
  font-size: 1.04rem;
  line-height: 2;
}

.site-footer {
  margin-top: 88px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--gray-800), var(--gray-900));
}

.footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--cyan-400);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

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

.copyright {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.hidden-by-filter {
  display: none !important;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px;
  border-radius: 18px;
  color: var(--gray-600);
  text-align: center;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

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

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

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

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

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

  .filter-controls,
  .meta-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 68px;
  }

  .brand-text strong {
    font-size: 1.05rem;
  }

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

  .stats-strip,
  .movie-grid,
  .movie-grid.featured-grid,
  .category-grid,
  .category-overview-grid,
  .footer-inner,
  .detail-layout,
  .filter-controls,
  .meta-table {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    margin-top: 16px;
  }

  .section-heading,
  .filter-title,
  .callout-band {
    align-items: stretch;
    flex-direction: column;
  }

  .content-section,
  .category-section {
    padding-top: 46px;
  }

  .detail-layout {
    gap: 24px;
  }

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

  .poster-frame img {
    height: 220px;
  }
}
