:root {
  --bg: #fff8eb;
  --paper: #ffffff;
  --paper-soft: #fff3d6;
  --ink: #2f2012;
  --muted: #7a5a35;
  --brand: #d97706;
  --brand-strong: #f97316;
  --brand-dark: #78350f;
  --line: rgba(146, 64, 14, 0.16);
  --shadow: 0 22px 60px rgba(120, 53, 15, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.25), transparent 34rem),
    linear-gradient(180deg, #fff7ed 0%, #fffaf0 48%, #fff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(245, 158, 11, 0.07) 0 25%, transparent 25% 100%),
    radial-gradient(circle at 86% 8%, rgba(249, 115, 22, 0.22), transparent 22rem);
}

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;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 235, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(146, 64, 14, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

.brand-text {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #b45309, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  position: relative;
  padding: 9px 2px;
  color: #5f4425;
  font-weight: 700;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  transition: right 0.24s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  right: 0;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 999px;
  background: #fff;
}

.header-search input,
.mobile-search input {
  width: 210px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  padding: 9px 12px;
}

.header-search button,
.mobile-search button,
.filter-bar button,
.primary-button,
.ghost-button {
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.filter-bar button:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(249, 115, 22, 0.3);
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: var(--brand-dark);
  background: #ffedd5;
  font-size: 1.45rem;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-search {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 4px;
  display: flex;
  gap: 8px;
}

.mobile-search input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf0;
}

.mobile-links {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-links a {
  border-radius: 14px;
  background: #fff7ed;
  padding: 12px 14px;
  font-weight: 700;
  color: #6d4118;
}

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

.hero-section {
  position: relative;
  margin: 28px auto 34px;
}

.hero-shell {
  position: relative;
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(135deg, #7c2d12, #92400e 40%, #f59e0b);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  gap: 34px;
  align-items: center;
  padding: 70px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(67, 20, 7, 0.92), rgba(120, 53, 15, 0.78) 45%, rgba(249, 115, 22, 0.2)),
    radial-gradient(circle at 78% 18%, rgba(251, 191, 36, 0.38), transparent 23rem);
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: blur(1px) saturate(1.08);
}

.hero-backdrop img.is-missing {
  display: none;
}

.hero-content,
.hero-cover {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #fcd34d;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.hero-content p {
  max-width: 690px;
  margin: 24px 0 0;
  color: #ffedd5;
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  line-height: 1.85;
}

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

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

.hero-tags span,
.tag-row span,
.rank-tags span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.92);
  color: #8a4b12;
  padding: 6px 11px;
  font-size: 0.83rem;
  font-weight: 800;
}

.hero-tags span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  color: #fff7ed;
  backdrop-filter: blur(10px);
}

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

.ghost-button {
  color: #fff7ed;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.ghost-button.light {
  color: #8a4b12;
  border-color: rgba(217, 119, 6, 0.24);
  background: rgba(255, 255, 255, 0.74);
}

.hero-poster,
.detail-poster,
.poster,
.rank-poster {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fde68a, #fdba74 52%, #fb923c);
}

.hero-poster {
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 28px 80px rgba(67, 20, 7, 0.38);
}

.poster {
  height: 270px;
}

.rank-poster {
  flex: 0 0 86px;
  height: 116px;
  border-radius: 16px;
}

.detail-poster {
  width: min(340px, 100%);
  height: 456px;
  box-shadow: var(--shadow);
}

.poster img,
.hero-poster img,
.detail-poster img,
.rank-poster img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.poster img.is-missing,
.hero-poster img.is-missing,
.detail-poster img.is-missing,
.rank-poster img.is-missing {
  display: none;
}

.poster-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.25;
  background:
    linear-gradient(180deg, rgba(120, 53, 15, 0.05), rgba(120, 53, 15, 0.82)),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.42), transparent 9rem);
}

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

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

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

.quick-panel,
.page-hero,
.filter-bar,
.section-block,
.detail-section,
.player-card,
.breadcrumb {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(120, 53, 15, 0.08);
}

.quick-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  margin: 0 0 30px;
}

.quick-panel h2,
.section-head h2,
.page-hero h1,
.detail-copy h1,
.detail-section h2 {
  margin: 0;
  color: #442006;
  letter-spacing: -0.05em;
}

.quick-panel h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-actions a,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  background: #fff7ed;
  color: #9a4d09;
  padding: 10px 16px;
  font-weight: 900;
}

.section-block {
  padding: 30px;
  margin: 30px 0;
}

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

.section-head h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.4rem);
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 251, 235, 0.96), rgba(255, 237, 213, 0.92)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.24), transparent 9rem);
  padding: 22px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover,
.category-overview-card:hover,
.movie-card:hover,
.rank-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(146, 64, 14, 0.16);
}

.category-card span,
.category-main-link span {
  color: var(--brand);
  font-weight: 900;
}

.category-card strong,
.category-main-link h2 {
  display: block;
  margin: 8px 0 10px;
  color: #4a2707;
  font-size: 1.1rem;
}

.category-card p,
.category-main-link p {
  margin: 0;
  min-height: 78px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.category-card em {
  display: block;
  margin-top: 16px;
  color: #c2410c;
  font-style: normal;
  font-weight: 800;
}

.category-overview-card {
  min-height: 240px;
}

.category-highlights {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.category-highlights a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #7c2d12;
  font-weight: 700;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.16);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 32px rgba(120, 53, 15, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card-link {
  display: block;
  height: 100%;
}

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

.card-body {
  padding: 16px;
}

.card-meta,
.card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.card-body h2 {
  margin: 10px 0 8px;
  color: #3f2308;
  font-size: 1.08rem;
  line-height: 1.35;
}

.card-body p {
  margin: 0 0 14px;
  color: #6f5230;
  font-size: 0.92rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-card .poster {
  height: 220px;
}

.compact-card .card-body h2 {
  font-size: 1rem;
}

.compact-card .tag-row span:nth-child(n + 4) {
  display: none;
}

.card-foot {
  justify-content: space-between;
  margin-top: 14px;
  color: #b45309;
}

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

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

.rank-card {
  border: 1px solid rgba(217, 119, 6, 0.16);
  border-radius: 20px;
  background: #fff;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rank-card a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
}

.rank-num {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  font-weight: 900;
}

.rank-info {
  flex: 1;
  min-width: 0;
}

.rank-info h2 {
  margin: 0 0 8px;
  color: #3f2308;
  font-size: 1.06rem;
}

.rank-info p {
  margin: 0 0 10px;
  color: #75562f;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-heat {
  min-width: 68px;
  text-align: center;
  color: var(--brand);
}

.rank-heat strong {
  display: block;
  font-size: 1.35rem;
}

.rank-heat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.page-hero {
  margin: 30px 0;
  padding: 52px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(120, 53, 15, 0.94), rgba(180, 83, 9, 0.86)),
    radial-gradient(circle at 82% 8%, rgba(251, 191, 36, 0.5), transparent 18rem);
  color: #fff7ed;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #ffedd5;
  line-height: 1.85;
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
  padding: 14px 18px;
  color: #80501c;
  font-weight: 800;
}

.detail-layout {
  margin-bottom: 36px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: center;
  border-radius: 34px;
  padding: 46px;
  color: #fff7ed;
  background:
    linear-gradient(135deg, rgba(67, 20, 7, 0.96), rgba(146, 64, 14, 0.9)),
    radial-gradient(circle at 80% 18%, rgba(251, 191, 36, 0.48), transparent 18rem);
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 1.02;
}

.detail-one-line {
  max-width: 760px;
  margin: 22px 0;
  color: #ffedd5;
  font-size: 1.12rem;
  line-height: 1.85;
}

.detail-meta span {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff7ed;
}

.detail-tags {
  margin-top: 18px;
}

.player-card {
  position: relative;
  margin: 30px 0;
  padding: 16px;
  overflow: hidden;
  background: #1c1208;
}

.player-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #000;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(28, 18, 8, 0.12), rgba(28, 18, 8, 0.76)),
    radial-gradient(circle at center, rgba(249, 115, 22, 0.34), transparent 18rem);
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-icon {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  font-size: 2.2rem;
  box-shadow: 0 24px 45px rgba(249, 115, 22, 0.36);
}

.player-message {
  min-height: 22px;
  margin: 10px 8px 0;
  color: #fed7aa;
}

.detail-section {
  padding: 30px;
  margin: 24px 0;
}

.detail-section h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.detail-section p {
  margin: 0;
  color: #624325;
  line-height: 1.95;
  font-size: 1.03rem;
}

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

.info-grid div {
  border-radius: 16px;
  background: #fff7ed;
  padding: 16px;
}

.info-grid span {
  display: block;
  margin-bottom: 8px;
  color: #9a5c18;
  font-weight: 800;
  font-size: 0.84rem;
}

.info-grid strong {
  color: #442006;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 22px;
  margin-bottom: 28px;
}

.filter-bar label {
  display: grid;
  gap: 7px;
  color: #7c4a16;
  font-weight: 900;
}

.filter-bar input,
.filter-bar select {
  min-height: 46px;
  border: 1px solid rgba(217, 119, 6, 0.24);
  border-radius: 14px;
  outline: 0;
  background: #fffaf0;
  color: var(--ink);
  padding: 0 14px;
}

.filter-bar button {
  min-height: 46px;
  padding-inline: 20px;
}

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

.related-block {
  margin-top: 24px;
}

.site-footer {
  margin-top: 54px;
  color: #ffedd5;
  background: linear-gradient(180deg, #78350f, #431407);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.8fr;
  gap: 34px;
  padding: 46px 0;
}

.footer-logo .brand-text {
  color: #fff7ed;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.footer-brand p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #fed7aa;
  line-height: 1.8;
}

.footer-links h2 {
  margin: 0 0 14px;
  color: #fcd34d;
  font-size: 1.05rem;
}

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

.footer-grid a {
  color: #ffedd5;
  font-weight: 700;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
  color: #fed7aa;
}

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

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero-cover {
    display: none;
  }

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

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

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

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

  .detail-cover {
    display: none;
  }

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

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

@media (max-width: 720px) {
  .header-inner {
    width: min(100% - 22px, 1180px);
  }

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

  main {
    width: min(100% - 22px, 1180px);
  }

  .hero-shell {
    min-height: 560px;
    border-radius: 26px;
  }

  .hero-slide {
    padding: 34px 24px 66px;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 14vw, 4.2rem);
  }

  .quick-panel,
  .section-head,
  .rank-card a {
    flex-direction: column;
    align-items: flex-start;
  }

  .quick-panel,
  .section-block,
  .detail-section,
  .page-hero {
    padding: 22px;
    border-radius: 22px;
  }

  .category-grid,
  .overview-grid,
  .movie-grid,
  .home-grid,
  .filter-bar,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .poster,
  .compact-card .poster {
    height: 360px;
  }

  .rank-poster {
    width: 100%;
    height: 260px;
  }

  .rank-heat {
    text-align: left;
  }

  .detail-hero {
    padding: 26px;
    border-radius: 24px;
  }

  .play-icon {
    width: 70px;
    height: 70px;
  }

  .footer-inner {
    width: min(100% - 22px, 1180px);
  }
}
