
:root {
  --page-bg: #fff7ed;
  --surface: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: #fef3c7;
  --line: #fde68a;
  --amber: #d97706;
  --orange: #ea580c;
  --deep: #111827;
  --shadow: 0 18px 45px rgba(146, 64, 14, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 42%, #fff7ed 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(146, 64, 14, 0.08);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--amber);
  white-space: nowrap;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.24);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #374151;
}

.desktop-nav a {
  position: relative;
  padding: 22px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.desktop-nav a:hover {
  color: var(--amber);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffbeb;
  color: var(--muted);
  font-size: 13px;
}

.top-search input,
.local-search input {
  width: 180px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

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

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

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

.search-panel {
  position: absolute;
  right: max(16px, calc((100vw - 1200px) / 2));
  top: 72px;
  z-index: 90;
  display: none;
  width: min(520px, calc(100vw - 32px));
  max-height: 70vh;
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.search-panel.is-open {
  display: grid;
  gap: 10px;
}

.search-result {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 8px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-result:hover {
  background: #fff7ed;
  transform: translateY(-1px);
}

.search-result img {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
  background: #fde68a;
}

.search-result h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.search-result p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-section {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 10%, rgba(251, 191, 36, 0.35), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.28), transparent 32%),
    linear-gradient(135deg, #0f172a 0%, #1f2937 42%, #7c2d12 100%);
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.5;
}

.hero-bg-one {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 120px;
  background: rgba(245, 158, 11, 0.22);
}

.hero-bg-two {
  width: 480px;
  height: 480px;
  right: -160px;
  bottom: -140px;
  background: rgba(234, 88, 12, 0.20);
}

.hero-carousel {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  align-items: center;
  gap: 54px;
  padding: 72px 0 96px;
  opacity: 0;
  transform: translateX(26px);
  pointer-events: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: #f59e0b;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-desc {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.8;
}

.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: 5px 10px;
  border-radius: 999px;
  color: #92400e;
  background: #fffbeb;
  font-size: 12px;
  font-weight: 800;
}

.detail-tags span {
  background: rgba(255, 251, 235, 0.92);
}

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

.primary-button,
.ghost-button,
.secondary-link,
.rank-action,
.side-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 16px 34px rgba(234, 88, 12, 0.3);
}

.primary-button:hover,
.ghost-button:hover,
.secondary-link:hover,
.rank-action:hover,
.side-actions a:hover {
  transform: translateY(-2px);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-poster {
  position: relative;
  align-self: center;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

.hero-poster img {
  aspect-ratio: 3 / 4;
  height: min(520px, 68vh);
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 54px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 38px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.hero-dot.is-active {
  background: linear-gradient(90deg, #fbbf24, #ea580c);
}

.content-section,
.quick-cats {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0;
}

.quick-cats {
  padding: 34px 0 20px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section-head h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-head p:not(.eyebrow),
.page-hero p,
.detail-one-line {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.quick-cat-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 2px 18px;
}

.quick-cat-grid a {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid var(--line);
  font-weight: 900;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(253, 230, 138, 0.8);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(146, 64, 14, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fde68a;
}

.poster-link img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-mask {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: background 0.26s ease, opacity 0.26s ease;
}

.poster-mask i {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  font-style: normal;
  font-weight: 900;
}

.movie-card:hover .poster-mask {
  opacity: 1;
  background: rgba(0, 0, 0, 0.38);
}

.rank-num {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

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

.movie-card-body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.movie-card-body h3 a:hover,
.rank-content h3 a:hover,
.category-sample-links a:hover {
  color: var(--amber);
}

.movie-meta,
.movie-desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

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

.tag-row {
  margin-top: 12px;
}

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

.category-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(146, 64, 14, 0.08);
}

.category-card-main {
  display: block;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fffbeb, #ffffff);
}

.category-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.category-card h3 {
  margin: 16px 0 8px;
  font-size: 24px;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-sample-links {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 0 4px 4px;
}

.category-sample-links a {
  overflow: hidden;
  color: #374151;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.warm-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1200px) / 2));
  padding-right: max(16px, calc((100vw - 1200px) / 2));
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: start;
}

.split-panel {
  position: sticky;
  top: 96px;
  padding: 34px;
  border-radius: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #92400e);
  box-shadow: var(--shadow);
}

.split-panel .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.secondary-link {
  margin-top: 22px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 68px 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(146, 64, 14, 0.06);
}

.rank-cover img {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  object-fit: cover;
  background: #fde68a;
}

.rank-index {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #92400e;
  background: #fffbeb;
  font-weight: 900;
}

.rank-content h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.rank-content p,
.rank-content span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.rank-action {
  min-height: 40px;
  padding: 0 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.page-hero {
  width: min(1200px, calc(100% - 32px));
  margin: 32px auto 0;
  padding: 70px 44px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.25), transparent 30%),
    linear-gradient(135deg, #111827, #7c2d12);
  box-shadow: var(--shadow);
}

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

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero.small-hero p {
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: #92400e;
  background: #ffffff;
  font-weight: 900;
}

.filter-button.is-active,
.filter-button:hover {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.local-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
}

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

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.02);
}

.detail-inner {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 72px 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

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

.detail-copy h1 {
  margin-top: 16px;
  font-size: clamp(34px, 5vw, 62px);
}

.detail-one-line {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
}

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.player-section {
  background: #111827;
  padding: 42px 0 64px;
}

.player-wrap {
  position: relative;
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.64));
}

.player-cover.is-hidden {
  display: none;
}

.play-icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.4);
}

.player-cover strong {
  max-width: min(680px, calc(100% - 48px));
  text-align: center;
  font-size: clamp(20px, 4vw, 34px);
}

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

.detail-article,
.detail-side {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(146, 64, 14, 0.08);
}

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

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

.detail-article p {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 2;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

.detail-side dt {
  color: var(--muted);
}

.detail-side dd {
  margin: 0;
  font-weight: 800;
}

.side-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.side-actions a {
  min-height: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.site-footer {
  margin-top: 30px;
  padding: 56px max(16px, calc((100vw - 1200px) / 2));
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #7c2d12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  color: #ffffff;
}

.site-footer p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.site-footer a:not(.site-logo) {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

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

.copyright {
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

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

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

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

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

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

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

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

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

  .top-search {
    display: none;
  }

  .site-logo {
    font-size: 20px;
  }

  .hero-section,
  .hero-carousel {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 100px;
  }

  .hero-poster {
    width: min(270px, 72vw);
    justify-self: center;
  }

  .hero-poster img {
    height: auto;
  }

  .hero-dots {
    bottom: 34px;
  }

  .movie-grid.six-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .split-section,
  .detail-inner,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-panel {
    position: static;
  }

  .detail-poster {
    width: min(280px, 72vw);
    justify-self: center;
  }

  .list-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .local-search {
    min-width: 0;
  }

  .local-search input {
    width: 100%;
  }

  .rank-row {
    grid-template-columns: 52px 32px minmax(0, 1fr);
  }

  .rank-action {
    grid-column: 3;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .content-section,
  .quick-cats {
    width: min(100% - 22px, 1200px);
    padding: 42px 0;
  }

  .page-hero {
    width: min(100% - 22px, 1200px);
    padding: 46px 22px;
    border-radius: 26px;
  }

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

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

  .movie-card-body h3 {
    font-size: 15px;
  }

  .detail-inner {
    padding: 44px 0;
  }

  .detail-article,
  .detail-side {
    padding: 22px;
  }

  .search-panel {
    left: 11px;
    right: 11px;
    width: auto;
  }
}
