:root {
  --bg: #fff8ed;
  --paper: #ffffff;
  --paper-soft: #fff4df;
  --ink: #2b1708;
  --muted: #7a5532;
  --line: rgba(146, 84, 23, 0.16);
  --brand: #b45309;
  --brand-2: #d97706;
  --gold: #f59e0b;
  --gold-soft: #fff0c4;
  --deep: #5b2507;
  --shadow: 0 22px 60px rgba(113, 63, 18, 0.16);
  --shadow-soft: 0 12px 32px rgba(113, 63, 18, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
    linear-gradient(180deg, #fff7e8 0%, #fffaf2 48%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(92, 38, 7, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 35px rgba(66, 32, 6, 0.16);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 22px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #5b2507;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35);
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  background: #5b2507;
}

.hero-stage {
  position: relative;
  min-height: 680px;
}

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

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

.hero-bg,
.detail-hero {
  background-size: cover;
  background-position: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  filter: blur(2px) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(52, 21, 4, 0.94) 0%, rgba(92, 38, 7, 0.82) 44%, rgba(92, 38, 7, 0.42) 100%),
    radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.48), transparent 24rem);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: 56px;
  padding: 90px 0 126px;
}

.hero-copy {
  max-width: 720px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  background: var(--gold-soft);
  border: 1px solid rgba(245, 158, 11, 0.28);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy .eyebrow,
.page-hero .eyebrow,
.detail-info .eyebrow {
  color: #fff7d6;
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.06em;
}

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

.hero-tags,
.tag-row,
.pill-row,
.quick-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-tag,
.tag,
.mini-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  line-height: 1;
}

.hero-tag {
  color: #fff7d6;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 13px;
  font-size: 13px;
}

.tag {
  color: var(--deep);
  background: #ffedd5;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 700;
}

.mini-tag {
  color: var(--brand);
  background: #fff4df;
  padding: 6px 9px;
  font-size: 12px;
}

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

.primary-btn,
.ghost-btn,
.text-btn,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
  color: #5b2507;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  padding: 13px 22px;
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.35);
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 22px;
}

.text-btn,
.section-more {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  padding: 10px 16px;
  font-size: 14px;
}

.primary-btn:hover,
.ghost-btn:hover,
.text-btn:hover,
.section-more:hover {
  transform: translateY(-2px);
}

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

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.hero-search-panel {
  position: relative;
  z-index: 8;
  margin-top: -72px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid rgba(245, 158, 11, 0.18);
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.3fr;
  gap: 18px;
  align-items: center;
}

.search-bar,
.filter-panel {
  display: flex;
  gap: 10px;
}

.search-bar input,
.filter-panel input,
.filter-panel select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0 16px;
  outline: none;
}

.search-bar input,
.filter-panel input {
  flex: 1;
  min-width: 0;
}

.search-bar input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(217, 119, 6, 0.6);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.search-bar button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
}

.quick-cats a,
.pill-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  color: var(--deep);
  background: #fff4df;
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 0 13px;
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 76px 0;
}

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

.section-head h2,
.page-hero h1,
.detail-info h1 {
  margin: 12px 0 0;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(146, 84, 23, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.poster-link img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.64) 100%);
  opacity: 0.85;
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  background: rgba(245, 158, 11, 0.95);
  padding: 7px 10px;
}

.rank-badge {
  left: 12px;
  top: 12px;
  background: rgba(92, 38, 7, 0.82);
  padding: 7px 10px;
}

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

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

.card-meta span {
  border-radius: 999px;
  background: #fff8ed;
  padding: 4px 8px;
}

.movie-card h2 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 950;
}

.movie-card h2 a:hover,
.rank-main h2 a:hover,
.detail-article a:hover {
  color: var(--brand);
}

.movie-card p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.category-section {
  background: linear-gradient(180deg, rgba(255, 244, 223, 0.85), rgba(255, 255, 255, 0));
}

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

.category-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  background: var(--deep);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.category-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(57, 24, 5, 0.88));
}

.category-card strong,
.category-card em {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 1;
  color: #fff;
}

.category-card strong {
  bottom: 62px;
  font-size: 22px;
  font-style: normal;
  font-weight: 950;
}

.category-card em {
  bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 13px;
}

.rank-section {
  background: #fff;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 64px 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid rgba(146, 84, 23, 0.12);
  box-shadow: 0 10px 30px rgba(113, 63, 18, 0.08);
  padding: 14px;
}

.rank-num {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--deep);
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  font-weight: 950;
}

.rank-thumb {
  overflow: hidden;
  border-radius: 18px;
}

.rank-thumb img {
  width: 92px;
  height: 112px;
  object-fit: cover;
}

.rank-main h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 950;
}

.rank-main p {
  margin: 0 0 10px;
  color: var(--muted);
}

.page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 75% 20%, rgba(245, 158, 11, 0.5), transparent 26rem),
    linear-gradient(135deg, #4d1d05, #8a3b09 55%, #d97706);
  padding: 94px 0 72px;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 66px);
}

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

.category-hero,
.search-hero {
  padding-bottom: 48px;
}

.pill-row {
  margin-top: 24px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(146, 84, 23, 0.12);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.category-cover {
  overflow: hidden;
  border-radius: 22px;
}

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

.category-overview-card h2 {
  margin: 4px 0 10px;
  font-size: 24px;
  font-weight: 950;
}

.category-overview-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.overview-links {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--brand);
  font-weight: 800;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(146, 84, 23, 0.12);
  box-shadow: var(--shadow-soft);
}

.wide-filter {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 160px 180px;
}

.detail-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.detail-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(48, 20, 4, 0.94), rgba(92, 38, 7, 0.82), rgba(92, 38, 7, 0.42)),
    radial-gradient(circle at 82% 15%, rgba(245, 158, 11, 0.48), transparent 26rem);
  backdrop-filter: blur(2px);
}

.detail-grid {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 84px 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

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

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

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

.breadcrumb em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.96);
}

.detail-info h1 {
  max-width: 860px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
}

.detail-line {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

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

.detail-meta span {
  color: #fff7d6;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
}

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

.player-section {
  padding-bottom: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 30px 90px rgba(42, 21, 6, 0.28);
  aspect-ratio: 16 / 9;
}

.movie-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22), rgba(0, 0, 0, 0.58));
  border: 0;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #5b2507;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 18px 50px rgba(245, 158, 11, 0.34);
  font-size: 30px;
  text-indent: 4px;
}

.play-cover strong {
  font-size: 20px;
  letter-spacing: 0.08em;
}

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

.detail-article,
.side-card {
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(146, 84, 23, 0.12);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.detail-article h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 950;
}

.detail-article p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 17px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0 0 22px;
}

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

.side-card dd {
  margin: 0;
  font-weight: 900;
}

.site-footer {
  color: #fff8df;
  background: linear-gradient(135deg, #451a03, #78350f 62%, #92400e);
  padding-top: 58px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
}

.site-footer p {
  max-width: 430px;
  color: rgba(255, 248, 223, 0.78);
}

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

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

.footer-links.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-links a {
  color: rgba(255, 248, 223, 0.78);
}

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

.footer-bottom {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px;
  text-align: center;
  color: rgba(255, 248, 223, 0.72);
}

.is-filtered-out {
  display: none !important;
}

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

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

  .hero-content {
    grid-template-columns: 1fr 280px;
  }

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

@media (max-width: 820px) {
  .site-header {
    position: sticky;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    background: rgba(92, 38, 7, 0.98);
    padding: 14px;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .hero-stage,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 72px 0 160px;
  }

  .hero-poster {
    display: none;
  }

  .hero-arrow {
    display: none;
  }

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

  .search-bar,
  .filter-panel,
  .wide-filter {
    display: grid;
    grid-template-columns: 1fr;
  }

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

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

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

  .rank-row .text-btn {
    grid-column: 2 / 4;
    justify-self: start;
  }

  .rank-num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .rank-thumb img {
    width: 72px;
    height: 92px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .detail-poster {
    max-width: 260px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero-copy h1,
  .detail-info h1 {
    font-size: 38px;
  }

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

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

  .section {
    padding: 52px 0;
  }

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

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