:root {
  --stone-950: #1c1917;
  --stone-900: #292524;
  --stone-800: #44403c;
  --stone-700: #57534e;
  --stone-600: #78716c;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50: #fafaf9;
  --amber-950: #451a03;
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-300: #fcd34d;
  --amber-100: #fef3c7;
  --orange-100: #ffedd5;
  --white: #ffffff;
  --black: #000000;
  --shadow-soft: 0 14px 35px rgba(41, 37, 36, 0.12);
  --shadow-strong: 0 24px 70px rgba(28, 25, 23, 0.24);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--stone-50), var(--stone-100));
  color: var(--stone-900);
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff7ed;
  background: linear-gradient(90deg, var(--amber-950), var(--amber-800), var(--amber-950));
  box-shadow: 0 10px 25px rgba(69, 26, 3, 0.32);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark,
.footer-logo span {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-700));
  color: white;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.38);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.brand-text small {
  margin-top: 3px;
  color: var(--amber-300);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  font-weight: 650;
  color: #fff7ed;
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-300);
  opacity: 1;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--amber-300);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 18px;
}

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

.mobile-link {
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.mobile-link.active,
.mobile-link:hover {
  background: rgba(245, 158, 11, 0.35);
}

.page-shell {
  min-height: 60vh;
}

.hero-carousel {
  position: relative;
  height: min(74vh, 720px);
  min-height: 520px;
  overflow: hidden;
  background: var(--stone-950);
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(245, 158, 11, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.84)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.28));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 72px;
  width: min(1180px, calc(100% - 40px));
  transform: translateX(-50%);
  color: white;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--amber-300);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-content h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.34);
}

.hero-content p {
  max-width: 820px;
  margin: 18px 0 0;
  color: #e7e5e4;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.7;
}

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

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fef3c7;
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(12px);
}

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

.primary-btn,
.ghost-btn,
.home-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.home-search button {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  color: white;
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.38);
}

.ghost-btn {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.home-search button:hover {
  transform: translateY(-2px);
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: white;
  font-size: 38px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.hero-control.prev {
  left: 22px;
}

.hero-control.next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  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.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: var(--amber-400);
}

.quick-search-card,
.content-section,
.filter-bar,
.detail-layout,
.player-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.quick-search-card {
  margin-top: -44px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.quick-search-card h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
}

.quick-search-card p {
  margin: 0;
  color: var(--stone-600);
  line-height: 1.7;
}

.home-search {
  display: flex;
  gap: 10px;
}

.home-search input,
.page-filter {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  padding: 0 16px;
  background: white;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-search input:focus,
.page-filter:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

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

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

.section-heading > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.heading-line {
  width: 5px;
  height: 36px;
  border-radius: 999px;
  background: var(--amber-600);
}

.section-heading h2 {
  grid-column: 2;
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--stone-900);
}

.section-heading p {
  grid-column: 2;
  margin: -4px 0 0;
  color: var(--stone-600);
}

.section-more {
  color: var(--amber-700);
  font-weight: 750;
  white-space: nowrap;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(41, 37, 36, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, var(--amber-300), var(--amber-900) 48%, var(--stone-950));
}

.movie-card.large .poster-link {
  aspect-ratio: 16 / 10;
}

.poster-link img,
.detail-poster img,
.ranking-row img,
.detail-backdrop img,
.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-link img {
  transition: transform 0.35s ease, opacity 0.25s ease;
}

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.poster-meta,
.rank-badge {
  position: absolute;
  z-index: 2;
  color: white;
}

.poster-meta {
  left: 12px;
  bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-700));
  box-shadow: 0 10px 22px rgba(217, 119, 6, 0.38);
}

.movie-info {
  padding: 16px;
}

.movie-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 8px;
  color: var(--stone-900);
  font-size: 18px;
  font-weight: 850;
}

.movie-info p {
  min-height: 47px;
  margin: 0 0 14px;
  color: var(--stone-600);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-info .tag-row span {
  color: var(--amber-800);
  background: var(--amber-100);
}

.warm-panel {
  width: min(1180px, calc(100% - 40px));
  margin-top: 56px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--amber-100), var(--orange-100));
  box-shadow: var(--shadow-soft);
}

.editor-panel,
.ranking-panel {
  width: min(1180px, calc(100% - 40px));
  margin-top: 56px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--stone-900);
  color: white;
  box-shadow: var(--shadow-soft);
}

.editor-panel .section-heading h2,
.ranking-panel .section-heading h2 {
  color: white;
}

.editor-panel .section-heading p,
.ranking-panel .section-heading p {
  color: var(--stone-300);
}

.editor-panel .section-more,
.ranking-panel .section-more {
  color: var(--amber-300);
}

.ranking-list {
  display: grid;
  gap: 10px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 56px 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-row:hover {
  background: rgba(245, 158, 11, 0.18);
  transform: translateX(4px);
}

.ranking-number {
  color: var(--amber-300);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.ranking-row img {
  width: 58px;
  height: 76px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--amber-300), var(--stone-900));
}

.ranking-main {
  display: grid;
  gap: 5px;
}

.ranking-main strong {
  font-size: 17px;
}

.ranking-main em,
.ranking-side {
  color: var(--stone-300);
  font-style: normal;
  line-height: 1.4;
}

.ranking-side {
  max-width: 220px;
  text-align: right;
}

.page-hero {
  min-height: 310px;
  display: grid;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.38), transparent 32%),
    linear-gradient(135deg, var(--stone-950), var(--amber-950));
}

.page-hero > div {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
}

.page-hero p {
  max-width: 800px;
  color: var(--stone-200);
  font-size: 18px;
  line-height: 1.75;
}

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

.category-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-soft);
}

.category-main {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 24px;
  background: linear-gradient(135deg, var(--amber-800), var(--stone-900));
  color: white;
}

.category-main span {
  font-size: 24px;
  font-weight: 900;
}

.category-main strong {
  color: var(--stone-200);
  font-size: 14px;
  line-height: 1.7;
}

.category-samples {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.category-samples a {
  color: var(--stone-700);
  font-weight: 650;
}

.category-samples a:hover {
  color: var(--amber-700);
}

.filter-bar {
  margin-top: 34px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-soft);
}

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

.filter-chips button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--stone-100);
  color: var(--stone-700);
  cursor: pointer;
  font-weight: 700;
}

.filter-chips button.active,
.filter-chips button:hover {
  background: var(--amber-600);
  color: white;
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--stone-950);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  opacity: 0.35;
  filter: blur(8px);
  transform: scale(1.04);
}

.detail-backdrop span {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 25%, rgba(245, 158, 11, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.88));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 58px;
}

.breadcrumb,
.breadcrumb-sep {
  color: var(--stone-200);
  font-size: 14px;
}

.breadcrumb:hover {
  color: var(--amber-300);
}

.detail-intro {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 38px;
  align-items: end;
  margin-top: 34px;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--amber-300), var(--stone-900));
  box-shadow: var(--shadow-strong);
}

.detail-copy h1 {
  font-size: clamp(38px, 5vw, 68px);
}

.detail-one-line {
  max-width: 780px;
  margin: 18px 0 22px;
  color: var(--stone-200);
  font-size: 18px;
  line-height: 1.8;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-bottom: 18px;
}

.meta-grid span {
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--stone-200);
  backdrop-filter: blur(12px);
}

.meta-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--amber-300);
  font-size: 12px;
}

.detail-tags span {
  background: rgba(245, 158, 11, 0.22);
}

.player-section {
  padding-top: 42px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: #050505;
  box-shadow: var(--shadow-strong);
  cursor: pointer;
}

.movie-video {
  display: block;
  background: black;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(245, 158, 11, 0.20), rgba(0, 0, 0, 0.10) 38%, rgba(0, 0, 0, 0.28));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  font-size: 34px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.34);
}

.player-shell.playing .play-overlay {
  opacity: 0;
  visibility: hidden;
}

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

.story-card,
.side-card {
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-soft);
}

.story-card {
  padding: 30px;
}

.story-card h2,
.side-card h2 {
  margin: 0 0 18px;
  font-size: 25px;
}

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

.story-card p {
  margin: 0;
  color: var(--stone-700);
  line-height: 1.9;
  font-size: 16px;
}

.side-card {
  padding: 24px;
  align-self: start;
}

.side-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.side-card dt {
  color: var(--amber-700);
  font-weight: 800;
}

.side-card dd {
  margin: -8px 0 10px;
  color: var(--stone-700);
  line-height: 1.6;
}

.side-card dd span {
  display: inline-flex;
  margin: 0 5px 5px 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--amber-100);
  color: var(--amber-800);
  font-size: 12px;
}

.site-footer {
  margin-top: 70px;
  color: var(--stone-300);
  background: linear-gradient(90deg, var(--stone-950), var(--stone-800), var(--stone-950));
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: white;
  font-size: 19px;
}

.footer-brand p {
  max-width: 450px;
  margin: 0;
  color: var(--stone-300);
  line-height: 1.7;
}

.footer-col h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 17px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-col a:hover {
  color: var(--amber-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  text-align: center;
  color: var(--stone-300);
}

.all-ranking {
  background: var(--stone-900);
}

.all-ranking .ranking-row {
  grid-template-columns: 68px 58px 1fr minmax(120px, 260px);
}

@media (max-width: 1040px) {
  .medium-grid,
  .large-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .detail-intro {
    grid-template-columns: 260px 1fr;
  }

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

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

  .mobile-toggle {
    display: block;
  }

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

  .hero-content {
    bottom: 72px;
  }

  .hero-control {
    display: none;
  }

  .quick-search-card,
  .home-search,
  .detail-intro,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .warm-panel,
  .editor-panel,
  .ranking-panel {
    padding: 22px;
  }

  .detail-poster {
    width: min(260px, 70vw);
  }

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

  .ranking-row,
  .all-ranking .ranking-row {
    grid-template-columns: 42px 52px 1fr;
  }

  .ranking-side {
    display: none;
  }
}

@media (max-width: 540px) {
  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 18px;
  }

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

  .hero-content h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 34px;
  }

  .quick-search-card,
  .content-section,
  .filter-bar,
  .detail-layout,
  .player-section,
  .detail-hero-inner,
  .footer-inner,
  .page-hero > div {
    width: min(100% - 28px, 1180px);
  }

  .movie-grid,
  .medium-grid,
  .large-grid,
  .small-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .story-card,
  .side-card {
    padding: 22px;
  }
}
