:root {
  --ash-50: #f8f7f6;
  --ash-100: #efede9;
  --ash-200: #ded9d2;
  --ash-400: #9b9189;
  --ash-500: #756d66;
  --ash-600: #5f5751;
  --ash-700: #4a4441;
  --ash-800: #302c2a;
  --ash-900: #1d1a18;
  --fire-50: #fff4ed;
  --fire-100: #ffe6d5;
  --fire-500: #f26a2c;
  --fire-600: #e65722;
  --fire-700: #b83d18;
  --ember-50: #fff8df;
  --ember-500: #e1a12c;
  --ember-600: #c47b1f;
  --forest-50: #edf7ee;
  --forest-500: #4d8c61;
  --forest-600: #357048;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(48, 44, 42, 0.12);
  --shadow-card: 0 12px 32px rgba(48, 44, 42, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ash-50);
  color: var(--ash-700);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(48, 44, 42, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ash-900);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--fire-500), var(--ember-600));
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 12px 26px rgba(230, 87, 34, 0.28);
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-text strong {
  font-size: 24px;
  line-height: 1.1;
}

.brand-text small {
  color: var(--ash-500);
  font-size: 12px;
}

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

.nav-link,
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--ash-600);
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--fire-700);
  background: var(--fire-50);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ash-100);
  color: var(--ash-800);
}

.mobile-panel {
  padding: 0 16px 16px;
  background: rgba(255, 255, 255, 0.98);
}

.mobile-panel .mobile-nav-link {
  display: flex;
  margin: 4px 0;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  background: var(--ash-900);
}

.hero-slides {
  position: relative;
  min-height: 610px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  background-image: linear-gradient(115deg, rgba(29, 26, 24, 0.94), rgba(48, 44, 42, 0.72) 45%, rgba(230, 87, 34, 0.34)), var(--hero-bg);
  background-size: cover;
  background-position: center;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 30%, rgba(242, 106, 44, 0.22), transparent 32%), linear-gradient(0deg, rgba(29, 26, 24, 0.8), rgba(29, 26, 24, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 58px;
  padding: 86px 0 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--fire-700);
  background: rgba(255, 244, 237, 0.95);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 18px 0 16px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.detail-tags,
.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.hero-tags span,
.detail-tags span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  padding: 7px 12px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.hero-actions,
.detail-copy .btn {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--fire-500), var(--ember-600));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(230, 87, 34, 0.34);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(230, 87, 34, 0.42);
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  transform: rotate(2.5deg);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.44);
  aspect-ratio: 3 / 4;
  background: var(--ash-800);
}

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

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

.play-disc {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--fire-700);
  box-shadow: var(--shadow-soft);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 112px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

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

.hero-dot.active {
  width: 38px;
  background: var(--white);
}

.hero-search-panel {
  position: relative;
  z-index: 8;
  margin-top: -74px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.hero-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--ash-200);
  border-radius: 16px;
  background: var(--white);
  color: var(--ash-800);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-search input {
  min-height: 52px;
  padding: 0 18px;
}

.hero-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--fire-500);
  box-shadow: 0 0 0 4px rgba(242, 106, 44, 0.12);
}

.hero-search button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  background: var(--ash-900);
  color: var(--white);
  font-weight: 800;
}

.hero-category-links,
.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-category-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--fire-50);
  color: var(--fire-700);
  font-size: 14px;
  font-weight: 700;
}

.hero-category-links a:hover {
  background: var(--fire-100);
}

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

.alt-white {
  background: var(--white);
}

.alt-warm {
  background: linear-gradient(135deg, var(--ember-50), var(--fire-50));
}

.alt-soft {
  background: linear-gradient(135deg, var(--forest-50), var(--ash-50));
}

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

.section-heading h2 {
  margin: 0 0 6px;
  color: var(--ash-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--ash-500);
}

.section-link {
  color: var(--fire-700);
  font-weight: 800;
}

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

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

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

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

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

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(48, 44, 42, 0.16);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ash-200);
}

.movie-card-featured .movie-poster {
  aspect-ratio: 16 / 11;
}

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

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

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.62));
}

.poster-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.poster-year {
  right: 12px;
  top: 12px;
}

.rank-badge {
  left: 12px;
  top: 12px;
  background: linear-gradient(135deg, var(--fire-500), var(--ember-600));
}

.movie-info {
  padding: 16px;
}

.movie-title {
  display: -webkit-box;
  min-height: 52px;
  overflow: hidden;
  color: var(--ash-900);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.25s ease;
}

.movie-card:hover .movie-title {
  color: var(--fire-700);
}

.movie-line {
  display: -webkit-box;
  min-height: 44px;
  margin: 10px 0 12px;
  overflow: hidden;
  color: var(--ash-600);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--ash-500);
  font-size: 12px;
}

.movie-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 6px;
}

.movie-tags {
  margin-top: 12px;
}

.movie-tags span {
  border-radius: 999px;
  background: var(--ash-100);
  color: var(--ash-600);
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
}

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

.category-ribbon a {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-ribbon a:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(48, 44, 42, 0.16);
}

.category-ribbon strong {
  color: var(--ash-900);
  font-size: 20px;
}

.category-ribbon span {
  color: var(--ash-500);
  font-size: 14px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(115deg, rgba(29, 26, 24, 0.9), rgba(48, 44, 42, 0.72), rgba(230, 87, 34, 0.2)), var(--hero-bg);
  background-size: cover;
  background-position: center;
}

.slim-hero,
.search-hero {
  background: linear-gradient(135deg, var(--ash-900), var(--ash-700) 54%, var(--fire-700));
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 82px 0;
}

.page-hero h1 {
  max-width: 820px;
  color: var(--white);
}

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

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

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(48, 44, 42, 0.15);
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 130px;
  overflow: hidden;
}

.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-body {
  padding: 22px;
}

.category-card-body h2 {
  margin: 0 0 8px;
  color: var(--ash-900);
  font-size: 24px;
}

.category-card-body p {
  min-height: 52px;
  margin: 0 0 16px;
  color: var(--ash-600);
}

.category-card-body span {
  color: var(--fire-700);
  font-weight: 900;
}

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

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(120px, 0.7fr));
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--ash-600);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  min-height: 46px;
  padding: 0 14px;
}

.empty-state {
  padding: 40px 0;
  color: var(--ash-500);
  text-align: center;
  font-weight: 800;
}

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

.podium-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 28px;
  border-radius: var(--radius-xl);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.podium-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.45s ease;
}

.podium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.82));
}

.podium-card span,
.podium-card strong,
.podium-card em {
  position: relative;
  z-index: 2;
}

.podium-card span {
  width: fit-content;
  border-radius: 999px;
  background: var(--fire-600);
  padding: 5px 10px;
  font-weight: 900;
}

.podium-card strong {
  font-size: 26px;
  line-height: 1.2;
}

.podium-card em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
}

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

.detail-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(242, 106, 44, 0.22), transparent 30%);
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}

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

.detail-cover {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.38);
}

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

.detail-copy h1 {
  margin-top: 18px;
}

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

.detail-meta span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
}

.detail-tags {
  margin-bottom: 28px;
}

.player-section {
  padding: 54px 0;
  background: var(--ash-900);
}

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  aspect-ratio: 16 / 9;
}

.movie-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
  color: var(--white);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-500), var(--ember-600));
  box-shadow: 0 18px 40px rgba(230, 87, 34, 0.34);
  font-size: 30px;
}

.play-overlay strong {
  font-size: 20px;
}

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

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

.detail-article,
.detail-side {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.detail-article {
  padding: 34px;
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 18px;
  color: var(--ash-900);
  font-size: 28px;
}

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

.detail-article p {
  margin: 0 0 16px;
  color: var(--ash-700);
  font-size: 17px;
}

.detail-side {
  align-self: start;
  padding: 28px;
}

.detail-side dl {
  margin: 0;
}

.detail-side dt {
  color: var(--ash-500);
  font-size: 13px;
  font-weight: 800;
}

.detail-side dd {
  margin: 4px 0 16px;
  color: var(--ash-900);
  font-weight: 800;
}

.next-prev {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.next-prev a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--ash-100);
  color: var(--ash-700);
  font-weight: 800;
}

.next-prev a:hover {
  background: var(--fire-50);
  color: var(--fire-700);
}

.site-footer {
  background: var(--ash-900);
  color: var(--ash-100);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: var(--ash-400);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--ash-400);
}

.footer-links a:hover {
  color: var(--fire-500);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ash-400);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .movie-grid,
  .catalog-grid,
  .ranking-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .hero-content,
  .detail-layout,
  .detail-content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster,
  .detail-cover {
    max-width: 360px;
  }
}

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

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

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

  .hero-carousel,
  .hero-slides {
    min-height: 740px;
  }

  .hero-content {
    gap: 26px;
    padding-top: 46px;
  }

  .hero-poster {
    max-width: 260px;
    transform: none;
  }

  .hero-search-panel {
    margin-top: -46px;
  }

  .hero-search,
  .filter-panel,
  .movie-grid,
  .featured-grid,
  .latest-grid,
  .catalog-grid,
  .ranking-grid,
  .category-grid,
  .podium-grid,
  .category-ribbon {
    grid-template-columns: 1fr;
  }

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

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

  .page-hero .container,
  .detail-hero-inner {
    padding: 52px 0;
  }

  .detail-cover {
    max-width: 240px;
  }

  .movie-player {
    border-radius: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
