:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --secondary: #ec4899;
  --accent: #facc15;
  --text: #111827;
  --muted: #6b7280;
  --soft: #f9fafb;
  --line: #e5e7eb;
  --dark: #111827;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--soft);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.header-inner {
  max-width: 1200px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.32);
  font-size: 13px;
}

.brand-text {
  font-size: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: #374151;
  font-weight: 700;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link.is-active {
  color: var(--primary);
}

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

.nav-search input,
.mobile-search input,
.hero-search input,
.filter-panel input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-search input {
  width: 190px;
  padding: 10px 16px;
}

.nav-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-panel input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.13);
}

.nav-search button,
.mobile-search button,
.hero-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  cursor: pointer;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #374151;
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 20px 18px;
  background: #ffffff;
}

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

.mobile-nav-link {
  display: block;
  padding: 12px 10px;
  color: #374151;
  font-weight: 700;
  border-radius: 12px;
}

.mobile-nav-link:hover {
  background: #fff7ed;
  color: var(--primary);
}

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

.mobile-search input {
  padding: 10px 14px;
}

.hero,
.sub-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c 0%, #ec4899 52%, #ef4444 100%);
}

.hero-pattern,
.detail-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30px 30px, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px);
  background-size: 58px 58px;
  opacity: 0.52;
}

.hero::after,
.sub-hero::after,
.detail-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(to top, var(--soft), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  min-height: 620px;
  margin: 0 auto;
  padding: 92px 20px 132px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  max-width: 680px;
}

.hero-kicker,
.sub-hero span,
.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero h1 strong {
  background: linear-gradient(135deg, #fef3c7, #fde047);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p,
.sub-hero p,
.detail-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
}

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

.primary-button,
.secondary-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.28);
}

.hero .primary-button {
  color: var(--primary);
  background: #ffffff;
}

.secondary-button {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.primary-button:hover,
.secondary-button:hover,
.light-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.18);
}

.secondary-button:hover {
  color: var(--primary);
  background: #ffffff;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 560px;
  margin-top: 26px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero-search input {
  padding: 13px 18px;
  border-color: transparent;
}

.hero-search button {
  padding: 13px 20px;
  color: var(--primary);
  background: #ffffff;
}

.hero-carousel {
  position: relative;
  min-height: 450px;
  border-radius: 32px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.28);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.08));
}

.hero-slide-text {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.hero-slide-text span {
  color: #fed7aa;
  font-size: 14px;
  font-weight: 800;
}

.hero-slide-text strong {
  display: block;
  margin: 6px 0;
  color: #ffffff;
  font-size: 28px;
}

.hero-slide-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
}

.feature-section,
.page-section,
.detail-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}

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

.feature-card,
.movie-card,
.overview-card,
.content-card,
.sidebar-card,
.category-card {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.07);
}

.feature-card {
  padding: 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.movie-card:hover,
.overview-card:hover,
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--primary);
  background: linear-gradient(135deg, #ffedd5, #fce7f3);
  font-weight: 900;
}

.feature-card h3,
.movie-card h3,
.overview-card h2,
.content-card h2,
.sidebar-card h2 {
  margin: 0;
}

.feature-card p,
.movie-card p,
.overview-card p,
.content-card p,
.sidebar-card,
.category-card p {
  color: var(--muted);
}

.alt-section {
  max-width: none;
  background: #ffffff;
}

.alt-section > .section-heading,
.alt-section > .movie-grid,
.alt-section > .ranking-grid,
.alt-section > .category-grid,
.alt-section > .center-actions {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading span {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.section-heading p {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--muted);
}

.compact-heading {
  margin-bottom: 22px;
  text-align: left;
}

.compact-heading h2 {
  font-size: 26px;
}

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

.category-card {
  min-height: 160px;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c, #ec4899);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:nth-child(2n) {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, #34d399, #059669);
}

.category-card:nth-child(4n) {
  background: linear-gradient(135deg, #f472b6, #db2777);
}

.category-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

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

.movie-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

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

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

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.year-badge {
  right: 12px;
  background: var(--primary);
}

.rank-badge {
  left: 12px;
  background: #ef4444;
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.card-meta span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #f3f4f6;
}

.movie-card h3 {
  overflow: hidden;
  color: var(--text);
  font-size: 19px;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}

.movie-card:hover h3 {
  color: var(--primary);
}

.movie-card .genre-line {
  margin: 7px 0;
  color: #9ca3af;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-card-body p:last-child {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

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

.landscape-card .poster-frame {
  aspect-ratio: 16 / 10;
}

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

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

.wide-card .poster-frame {
  aspect-ratio: 16 / 10;
}

.center-actions {
  margin-top: 34px;
  text-align: center;
}

.cta-section {
  max-width: 1200px;
  margin: 0 auto 70px;
  padding: 0 20px;
}

.cta-section > div {
  padding: 48px;
  border-radius: 32px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow);
}

.cta-section h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 48px);
}

.cta-section p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.light-button {
  color: var(--primary);
  background: #ffffff;
}

.sub-hero {
  padding: 92px 20px 110px;
  text-align: center;
}

.sub-hero > div {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.sub-hero span {
  background: rgba(255, 255, 255, 0.2);
}

.sub-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
}

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

.overview-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.overview-posters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 210px;
  background: #f3f4f6;
}

.overview-posters img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-card > div:last-child {
  padding: 24px;
}

.overview-card span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.06);
}

.filter-panel input {
  padding: 15px 18px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  color: #374151;
  background: #f3f4f6;
  cursor: pointer;
  font-weight: 800;
}

.filter-chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.empty-state {
  display: none;
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
  background: #ffffff;
}

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

.detail-hero {
  padding: 34px 20px 92px;
}

.detail-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

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

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

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.32);
  background: rgba(255, 255, 255, 0.22);
}

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

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
}

.detail-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-meta-list span,
.tag-row span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 800;
}

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

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

.detail-content {
  display: grid;
  gap: 24px;
}

.content-card,
.sidebar-card {
  padding: 28px;
}

.content-card > p {
  margin: 0;
  font-size: 17px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.28), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  font-weight: 900;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  color: var(--primary);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  font-size: 28px;
}

.player-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-sidebar {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 22px;
}

.sidebar-card dl {
  margin: 0;
}

.sidebar-card dt {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 800;
}

.sidebar-card dd {
  margin: 4px 0 14px;
  color: #374151;
  font-weight: 700;
}

.compact-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.compact-card:last-child {
  border-bottom: 0;
}

.compact-card img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  background: #f3f4f6;
}

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

.compact-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 54px 20px 34px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 14px;
  font-size: 22px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #d1d5db;
}

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

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

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

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9ca3af;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 48px;
  height: 48px;
  display: none;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

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

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

  .nav-toggle {
    display: block;
  }

  .hero-inner,
  .detail-layout,
  .detail-main {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    min-height: 360px;
  }

  .feature-grid,
  .movie-grid,
  .category-grid,
  .full-ranking,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-grid,
  .overview-grid,
  .landscape-grid {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

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

@media (max-width: 640px) {
  .header-inner {
    height: 62px;
    padding: 0 14px;
  }

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

  .hero-inner {
    min-height: auto;
    padding: 58px 16px 92px;
    gap: 34px;
  }

  .hero p,
  .sub-hero p,
  .detail-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .hero-search {
    grid-template-columns: 1fr;
  }

  .hero-search {
    border-radius: 24px;
  }

  .hero-carousel {
    min-height: 310px;
  }

  .feature-section,
  .page-section,
  .detail-main {
    padding: 46px 14px;
  }

  .feature-grid,
  .movie-grid,
  .category-grid,
  .full-ranking,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    padding: 26px 14px 78px;
  }

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

  .content-card,
  .sidebar-card,
  .feature-card,
  .overview-card > div:last-child {
    padding: 20px;
  }

  .overview-posters {
    height: 150px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
