:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --red: #ef4444;
  --pink: #ec4899;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --green: #10b981;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 24px 54px rgba(15, 23, 42, 0.18);
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: var(--gray-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.28);
}

.header-inner {
  width: min(1280px, calc(100% - 2rem));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transition: transform 0.25s ease;
}

.site-logo:hover .logo-mark {
  transform: rotate(12deg) scale(1.04);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-weight: 650;
}

.nav-link {
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  transform: translateY(-1px);
}

.search-form,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
}

.search-form input,
.mobile-search input {
  width: 17rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.55rem 2.4rem 0.55rem 1rem;
  color: #fff;
  outline: none;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.search-form input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.search-form button {
  position: absolute;
  right: 0.4rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 1.25rem;
}

.mobile-toggle {
  display: none;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 0.75rem;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 1rem;
}

.mobile-panel.is-open {
  display: grid;
  gap: 0.8rem;
}

.mobile-panel a {
  padding: 0.6rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.14);
}

.mobile-search {
  gap: 0.6rem;
}

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

.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 0.58rem 1rem;
  color: var(--orange-dark);
  background: #fff;
  font-weight: 700;
}

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

.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: #000;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.05);
  transition: transform 5s ease;
}

.hero-slide.is-active .hero-bg {
  transform: scale(1.01);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 20%, rgba(249, 115, 22, 0.3), transparent 32%), linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.9));
}

.hero-content {
  position: relative;
  width: min(1280px, calc(100% - 2rem));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding: 0 0 4.8rem;
  color: #fff;
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(239, 68, 68, 0.92);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero h1,
.hero h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 1.45rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.7rem;
}

.hero-meta span,
.detail-tags span,
.movie-tags span,
.filter-chips a,
.info-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  padding: 0.28rem 0.72rem;
  font-size: 0.88rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn,
.btn-ghost,
.section-more,
.page-link,
.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.78rem 1.22rem;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.35);
}

.btn:hover,
.section-more:hover,
.page-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero-dots {
  position: absolute;
  right: max(2rem, calc((100vw - 1280px) / 2 + 2rem));
  bottom: 2rem;
  display: flex;
  gap: 0.5rem;
}

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

.hero-dot.is-active {
  width: 2rem;
  background: var(--orange);
}

.container {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.main-content {
  padding: 2rem 0 4rem;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section.section-pink,
.content-section.section-blue,
.content-section.section-orange {
  border-radius: 2rem;
  padding: 2rem;
}

.content-section.section-pink {
  background: linear-gradient(135deg, #fff1f2, #fff7ed);
}

.content-section.section-blue {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.content-section.section-orange {
  background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.section-heading h2 span {
  color: var(--red);
}

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

.section-more,
.page-link,
.search-submit {
  color: var(--orange-dark);
  background: #fff;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.35rem;
}

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

.movie-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster {
  position: relative;
  display: block;
  min-height: 250px;
  background-color: #111827;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.6), rgba(236, 72, 153, 0.28));
  opacity: 0.35;
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.poster-info {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  color: #fff;
  font-size: 0.86rem;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-info {
  opacity: 1;
  transform: translateY(0);
}

.hot-badge,
.year-badge,
.play-dot,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.hot-badge {
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.22rem 0.55rem;
  background: #dc2626;
}

.year-badge {
  top: 0.7rem;
  right: 0.7rem;
  padding: 0.22rem 0.55rem;
  background: rgba(0, 0, 0, 0.62);
}

.play-dot {
  right: 0.75rem;
  bottom: 0.75rem;
  width: 2.35rem;
  height: 2.35rem;
  background: var(--orange);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-dot {
  opacity: 1;
  transform: scale(1);
}

.movie-card-body {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem;
}

.movie-card-body strong {
  overflow: hidden;
  color: var(--gray-800);
  font-size: 1rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.movie-card:hover strong {
  color: var(--orange-dark);
}

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  color: var(--gray-500);
  font-size: 0.78rem;
}

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.movie-tags span {
  color: var(--orange-dark);
  background: #fff7ed;
  font-size: 0.72rem;
  padding: 0.16rem 0.5rem;
}

.page-hero {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
  padding: 4.5rem 0;
}

.page-hero.blue {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.page-hero.green {
  background: linear-gradient(90deg, var(--green), #14b8a6);
}

.page-hero.purple {
  background: linear-gradient(90deg, #7c3aed, var(--pink));
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 860px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.filter-chips a {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.list-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.4rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.filter-input,
.sort-select,
.search-page-input {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  outline: none;
  background: #fff;
}

.filter-input {
  flex: 1;
  min-width: 0;
}

.sort-select {
  min-width: 8rem;
}

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

.category-card {
  display: grid;
  gap: 0.55rem;
  min-height: 145px;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:nth-child(4n+2) {
  background: linear-gradient(135deg, var(--pink), #7c3aed);
}

.category-card:nth-child(4n+3) {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.category-card:nth-child(4n) {
  background: linear-gradient(135deg, var(--green), #14b8a6);
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.category-card strong {
  font-size: 1.25rem;
}

.category-card span {
  color: rgba(255, 255, 255, 0.82);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.page-link.active {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.rank-list {
  display: grid;
  gap: 0.9rem;
}

.rank-item {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 120px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.rank-no {
  color: var(--orange-dark);
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
}

.rank-cover {
  height: 82px;
  border-radius: 0.8rem;
  background-position: center;
  background-size: cover;
  background-color: var(--gray-900);
  overflow: hidden;
}

.rank-cover::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.45), rgba(236, 72, 153, 0.28));
}

.rank-info h2,
.rank-info h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.rank-info p {
  margin: 0;
  color: var(--gray-500);
}

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

.detail-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(4px);
  transform: scale(1.06);
  opacity: 0.5;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.92));
}

.detail-inner {
  position: relative;
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 2rem;
  align-items: end;
  min-height: 520px;
  padding: 4rem 0 3rem;
}

.detail-poster {
  height: 440px;
  border-radius: 1.5rem;
  background-position: center;
  background-size: cover;
  background-color: var(--gray-900);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.detail-poster::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.42), rgba(236, 72, 153, 0.24));
}

.detail-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.detail-copy p {
  max-width: 820px;
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.4rem;
}

.detail-tags span {
  color: #fff;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.info-chip {
  color: #fff;
}

.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.player-card,
.article-card,
.side-card {
  border-radius: var(--radius-2xl);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.player-wrap {
  position: relative;
  background: #030712;
  aspect-ratio: 16 / 9;
}

.player-video {
  width: 100%;
  height: 100%;
  background: #030712;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

.player-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82));
}

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

.player-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
  padding: 0.9rem 1.35rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.42);
}

.player-title {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.player-title h2 {
  margin: 0;
  font-size: 1.2rem;
}

.article-card {
  padding: 1.5rem;
}

.article-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.45rem;
}

.article-card p {
  margin: 0 0 1.2rem;
  color: var(--gray-700);
}

.side-card {
  padding: 1.3rem;
}

.side-card h2,
.side-card h3 {
  margin: 0 0 1rem;
}

.side-list {
  display: grid;
  gap: 0.75rem;
}

.side-link {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
  border-radius: 0.9rem;
  background: var(--gray-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.side-link:hover {
  background: #fff7ed;
  transform: translateX(3px);
}

.side-link strong {
  color: var(--gray-800);
}

.side-link span {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.search-page-form {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.search-page-input {
  flex: 1;
  min-width: 0;
}

.search-submit {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
  cursor: pointer;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius-xl);
  color: var(--gray-500);
  background: #fff;
  box-shadow: var(--shadow);
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, var(--gray-900), #030712);
}

.footer-inner {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-logo {
  margin-bottom: 0.65rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 850;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

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

.footer-copy {
  justify-self: end;
  align-self: end;
  color: #9ca3af;
}

.back-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 40;
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: var(--shadow-xl);
  cursor: pointer;
}

.back-top.is-visible {
  display: inline-grid;
  place-items: center;
}

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

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

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

@media (max-width: 860px) {
  .main-nav,
  .search-form {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero {
    height: 520px;
  }

  .hero-content {
    padding-bottom: 4rem;
  }

  .hero-dots {
    right: 1rem;
  }

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

  .detail-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 0 2.4rem;
  }

  .detail-poster {
    max-width: 280px;
    height: 380px;
  }

  .rank-item {
    grid-template-columns: 3rem 92px 1fr;
  }

  .rank-item .btn {
    grid-column: 2 / -1;
    justify-self: start;
  }

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

  .footer-copy {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: min(100% - 1rem, 1280px);
  }

  .site-logo {
    font-size: 1.15rem;
  }

  .hero {
    height: 500px;
  }

  .hero h1,
  .hero h2 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-heading,
  .list-toolbar,
  .search-page-form {
    align-items: stretch;
    flex-direction: column;
  }

  .content-section.section-pink,
  .content-section.section-blue,
  .content-section.section-orange {
    padding: 1rem;
    border-radius: 1.25rem;
  }

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

  .poster {
    min-height: 205px;
  }

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

  .page-hero {
    padding: 3rem 0;
  }

  .detail-poster {
    display: none;
  }

  .detail-copy h1 {
    font-size: 2.35rem;
  }

  .article-card,
  .side-card {
    padding: 1rem;
  }

  .rank-item {
    grid-template-columns: 2.6rem 78px 1fr;
    gap: 0.75rem;
  }

  .rank-cover {
    height: 74px;
  }
}
