:root {
  --bg: #f9fafb;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --orange: #f97316;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #059669;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100% - 32px, var(--container));
  height: 68px;
  margin: 0 auto;
  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;
}

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

.brand-text {
  font-size: 26px;
  line-height: 1;
  background: linear-gradient(90deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #374151;
  font-weight: 650;
}

.desktop-nav a,
.nav-dropdown > a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.nav-dropdown:hover > a {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 190px;
  padding: 8px 0;
  margin-top: 14px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #4b5563;
  font-size: 14px;
}

.dropdown-menu a:hover {
  color: var(--red);
  background: #fef2f2;
}

.top-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.toolbar input,
.toolbar select {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  padding: 11px 16px;
  outline: none;
  transition: 0.2s ease;
}

.top-search input {
  width: 210px;
}

.top-search input:focus,
.mobile-search input:focus,
.toolbar input:focus,
.toolbar select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.top-search button,
.mobile-search button {
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--red);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #111827;
  border-radius: 12px;
  background: #f3f4f6;
}

.mobile-panel {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-search {
  margin-bottom: 14px;
}

.mobile-search input {
  flex: 1;
}

.mobile-links {
  display: grid;
  gap: 8px;
}

.mobile-links a {
  padding: 10px 0;
  color: #374151;
  border-bottom: 1px solid #eef2f7;
}

.hero-carousel {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #020617;
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
}

.hero-content {
  width: min(100% - 32px, var(--container));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1180px;
}

.hero-content .eyebrow,
.page-hero .eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 16px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 14px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-actions,
.more-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.ghost-btn,
.more-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 750;
  transition: 0.2s ease;
}

.primary-btn {
  color: #ffffff;
  background: var(--blue);
}

.primary-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.26);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.42);
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

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

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

.content-section,
.section-inner,
.detail-main {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

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

.tinted-section {
  padding: 54px 0;
}

.blue-tint {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.green-tint {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.dark-section {
  padding: 54px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading > span {
  width: 5px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red), var(--orange));
  flex-shrink: 0;
  margin-top: 5px;
}

.section-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--muted);
}

.dark-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05);
  transition: 0.25s ease;
}

.movie-card:hover {
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.movie-link {
  display: block;
}

.poster-frame {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
  background: #111827;
}

.poster-frame img,
.category-tile img,
.category-card img,
.feature-card img,
.top-rank-card img,
.rank-poster img,
.wide-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-frame img,
.category-tile:hover img,
.category-card:hover img,
.feature-card:hover img,
.top-rank-card:hover img,
.horizontal-card:hover img {
  transform: scale(1.08);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.category-badge {
  color: #ffffff;
  background: var(--blue);
}

.score-badge {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.76);
}

.poster-frame .category-badge {
  position: absolute;
  left: 12px;
  top: 12px;
}

.poster-frame .score-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
}

.movie-card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.movie-card-body strong {
  display: -webkit-box;
  min-height: 54px;
  overflow: hidden;
  color: #111827;
  font-size: 18px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-body em,
.horizontal-body em,
.rank-body em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meta-line {
  color: #6b7280;
  font-size: 13px;
}

.tag-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-line span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  color: #2563eb;
  background: #eff6ff;
  font-size: 12px;
  font-weight: 700;
}

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

.category-tile,
.category-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111827;
  box-shadow: var(--soft-shadow);
}

.category-tile img,
.category-card img {
  position: absolute;
  inset: 0;
}

.category-tile::after,
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.category-tile span,
.category-card span,
.category-tile em,
.category-card p {
  position: relative;
  z-index: 2;
}

.category-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 18px;
}

.category-tile span,
.category-card span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.category-tile em,
.category-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 22px;
}

.editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 26px;
  background: #111827;
  box-shadow: var(--soft-shadow);
}

.feature-card a {
  display: flex;
  height: 100%;
  min-height: 430px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.feature-card img {
  position: absolute;
  inset: 0;
}

.feature-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.12));
}

.feature-card span,
.feature-card h2,
.feature-card p {
  position: relative;
  z-index: 2;
}

.feature-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  color: #ffffff;
  background: var(--red);
  font-weight: 800;
}

.feature-card h2 {
  max-width: 650px;
  margin: 16px 0 8px;
  color: #ffffff;
  font-size: 36px;
  line-height: 1.15;
}

.feature-card p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.horizontal-list,
.side-list {
  display: grid;
  gap: 14px;
}

.horizontal-card {
  background: #ffffff;
}

.horizontal-link {
  display: flex;
  gap: 14px;
  padding: 10px;
}

.wide-poster {
  width: 150px;
  height: 98px;
  border-radius: 14px;
  flex-shrink: 0;
}

.horizontal-body,
.rank-body {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
}

.horizontal-body strong,
.rank-body strong {
  overflow: hidden;
  color: #111827;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.more-panel {
  width: min(100% - 32px, var(--container));
  margin: 0 auto 60px;
}

.more-shell {
  border-radius: 32px;
  padding: 44px;
  color: #ffffff;
  background: linear-gradient(110deg, #7c3aed, #db2777);
}

.more-shell h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
}

.more-shell p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

.more-actions a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.page-hero {
  min-height: 300px;
  color: #ffffff;
  background: radial-gradient(circle at 20% 10%, rgba(249, 115, 22, 0.55), transparent 28%), linear-gradient(135deg, #111827, #581c87 55%, #991b1b);
}

.page-hero > div {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 76px 0;
}

.page-hero h1 {
  max-width: 820px;
  margin: 18px 0 10px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.toolbar input {
  flex: 1 1 280px;
}

.toolbar select {
  min-width: 160px;
}

.empty-result {
  display: block;
  padding: 26px;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: #ffffff;
}

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

.top-rank-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #111827;
  box-shadow: var(--soft-shadow);
}

.top-rank-card img {
  position: absolute;
  inset: 0;
}

.top-rank-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.18));
}

.top-rank-card span,
.top-rank-card h2,
.top-rank-card p {
  position: relative;
  z-index: 2;
}

.top-rank-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  color: #111827;
  background: #facc15;
  font-weight: 900;
}

.top-rank-card h2 {
  margin: 14px 0 8px;
  color: #ffffff;
  font-size: 26px;
}

.top-rank-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.rank-list > .rank-number {
  display: none;
}

.rank-row {
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05);
  transition: 0.2s ease;
}

.rank-row:hover {
  box-shadow: var(--soft-shadow);
  transform: translateY(-1px);
}

.rank-link {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
}

.rank-poster {
  height: 70px;
  overflow: hidden;
  border-radius: 12px;
  background: #111827;
}

.score-pill,
.rating-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 36px;
  border-radius: 999px;
  color: #111827;
  background: #facc15;
  font-weight: 900;
}

.detail-main {
  padding: 28px 0 58px;
}

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

.breadcrumb a:hover {
  color: var(--red);
}

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

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

.player-card,
.detail-card,
.side-card {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05);
}

.player-card {
  overflow: hidden;
  background: #000000;
}

.video-shell {
  position: relative;
  overflow: hidden;
  background: #000000;
}

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

.play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), rgba(0, 0, 0, 0.55));
}

.play-cover span {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.92);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.35);
  font-size: 30px;
}

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

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

.movie-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.movie-intro h1 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.lead-text {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 18px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  gap: 3px;
  border-radius: 14px;
  padding: 12px 14px;
  background: #f9fafb;
}

.info-list span {
  color: #6b7280;
  font-size: 13px;
}

.info-list strong {
  color: #111827;
}

.article-body h2,
.detail-card h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.25;
}

.article-body p {
  margin: 0 0 14px;
  color: #374151;
  font-size: 17px;
}

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

.detail-side {
  position: sticky;
  top: 90px;
  align-self: start;
}

.side-list .horizontal-link {
  padding: 0;
}

.side-list .horizontal-card {
  box-shadow: none;
}

.side-list .wide-poster {
  width: 112px;
  height: 76px;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #020617);
}

.footer-grid {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 38px;
}

.footer-brand {
  color: #ffffff;
  font-size: 22px;
}

.site-footer p {
  max-width: 430px;
  color: #9ca3af;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

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

.footer-bottom {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  font-size: 14px;
}

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

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

  .detail-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .hero-carousel {
    height: 560px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content p {
    font-size: 17px;
  }

  .movie-grid,
  .compact-grid,
  .related-grid,
  .top-rank-grid,
  .category-grid,
  .category-card-grid,
  .editor-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .poster-frame {
    height: 250px;
  }

  .rank-link {
    grid-template-columns: 82px 1fr;
  }

  .score-pill {
    grid-column: 2;
    width: fit-content;
  }

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

@media (max-width: 560px) {
  .nav-shell {
    width: min(100% - 24px, var(--container));
  }

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

  .hero-content {
    width: min(100% - 28px, var(--container));
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-actions,
  .more-actions {
    width: 100%;
  }

  .primary-btn,
  .ghost-btn,
  .more-actions a {
    width: 100%;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .content-section,
  .section-inner,
  .detail-main,
  .more-panel {
    width: min(100% - 24px, var(--container));
  }

  .more-shell {
    padding: 28px;
    border-radius: 24px;
  }

  .horizontal-link {
    align-items: center;
  }

  .wide-poster {
    width: 118px;
    height: 84px;
  }

  .detail-card,
  .side-card {
    padding: 18px;
  }
}
