:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-strong: rgba(15, 23, 42, 0.92);
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(45, 212, 191, 0.45);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --teal: #14b8a6;
  --teal-bright: #2dd4bf;
  --cyan: #22d3ee;
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.42);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 0%, rgba(20, 184, 166, 0.16), transparent 32%), linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(18px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #042f2e;
  background: linear-gradient(135deg, var(--teal-bright), var(--cyan));
  box-shadow: 0 0 26px rgba(45, 212, 191, 0.35);
}

.brand-text {
  font-size: 20px;
  background: linear-gradient(90deg, var(--teal-bright), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link,
.mobile-nav-link {
  color: var(--muted-strong);
  border-radius: 999px;
  transition: 0.22s ease;
}

.nav-link {
  padding: 10px 14px;
  font-size: 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--teal-bright);
  background: rgba(20, 184, 166, 0.12);
}

.nav-search {
  width: min(300px, 28vw);
  display: flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.68);
  overflow: hidden;
}

.nav-search input,
.mobile-search input,
.hero-search input,
.filter-search input,
.search-page-form input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.nav-search input {
  padding: 10px 14px;
}

.nav-search button,
.mobile-search button,
.hero-search button,
.search-page-form button {
  border: 0;
  color: #042f2e;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal-bright), var(--cyan));
}

.nav-search button {
  padding: 10px 14px;
  white-space: nowrap;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.92);
}

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

.mobile-panel nav {
  display: grid;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 20px 8px;
}

.mobile-nav-link {
  padding: 12px 14px;
}

.mobile-search {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 18px;
  display: flex;
  gap: 8px;
}

.mobile-search input {
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.mobile-search button {
  border-radius: 14px;
  padding: 0 18px;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity 0.9s ease, transform 6s ease;
  transform: scale(1.04);
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.24) 0%, rgba(2, 6, 23, 0.76) 58%, #020617 100%), linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.52) 52%, rgba(2, 6, 23, 0.14) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 120px 20px 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-kicker,
.detail-meta,
.hero-meta,
.card-meta,
.wide-meta,
.breadcrumb,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-kicker span,
.tag-pill,
.year-badge,
.rank-badge,
.detail-meta span {
  border: 1px solid rgba(45, 212, 191, 0.44);
  color: var(--teal-bright);
  background: rgba(20, 184, 166, 0.14);
  border-radius: 999px;
}

.hero-kicker span,
.detail-meta span {
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  max-width: 780px;
  margin: 22px 0 18px;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

.hero-meta {
  margin: 20px 0 30px;
  color: var(--muted);
}

.hero-meta span {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

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

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.22s ease;
}

.primary-button {
  padding: 0 22px;
  color: #042f2e;
  background: linear-gradient(135deg, var(--teal-bright), var(--cyan));
  box-shadow: 0 16px 34px rgba(20, 184, 166, 0.28);
}

.primary-button:hover,
.nav-search button:hover,
.hero-search button:hover,
.search-page-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.ghost-button {
  padding: 0 18px;
  color: var(--teal-bright);
  border: 1px solid rgba(45, 212, 191, 0.32);
  background: rgba(15, 23, 42, 0.68);
}

.ghost-button:hover,
.section-more:hover {
  border-color: rgba(45, 212, 191, 0.76);
  background: rgba(20, 184, 166, 0.16);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(2, 6, 23, 0.56);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: var(--teal-bright);
}

.hero-search {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 28px;
  width: min(760px, calc(100% - 40px));
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.hero-search input {
  padding: 18px 20px;
  font-size: 16px;
}

.hero-search button {
  padding: 0 28px;
  white-space: nowrap;
}

.category-strip {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.56);
}

.strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.strip-inner a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(2, 6, 23, 0.42);
  transition: 0.22s ease;
}

.strip-inner a:hover {
  color: var(--teal-bright);
  border-color: rgba(45, 212, 191, 0.62);
}

.content-section,
.filter-panel,
.category-overview-grid,
.detail-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 58px 20px;
}

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

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(25px, 4vw, 36px);
  letter-spacing: -0.02em;
}

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

.section-more {
  padding: 0 18px;
  color: var(--teal-bright);
  border: 1px solid rgba(45, 212, 191, 0.24);
  white-space: nowrap;
}

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.2);
  transition: 0.24s ease;
}

.movie-card-link:hover {
  border-color: var(--border-strong);
  box-shadow: 0 22px 54px rgba(20, 184, 166, 0.12);
  transform: translateY(-4px);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0f172a;
}

.poster-wrap img,
.wide-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.movie-card-link:hover img,
.wide-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.year-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.year-badge {
  right: 10px;
}

.rank-badge {
  left: 10px;
  color: #042f2e;
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal-bright), var(--cyan));
}

.card-info {
  padding: 15px;
}

.card-info h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-info p {
  margin: 0 0 12px;
  min-height: 42px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  justify-content: space-between;
  color: var(--muted-strong);
  font-size: 12px;
}

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

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

.wide-item {
  display: flex;
  gap: 18px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.56);
  transition: 0.22s ease;
}

.wide-item:hover {
  border-color: var(--border-strong);
  background: rgba(15, 23, 42, 0.82);
  transform: translateY(-2px);
}

.wide-cover {
  flex: 0 0 108px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
}

.wide-copy {
  min-width: 0;
  flex: 1;
}

.wide-title-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.wide-title-line h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.wide-copy p {
  margin: 8px 0 12px;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wide-meta {
  color: var(--muted-strong);
  font-size: 13px;
}

.list-rank {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  color: #042f2e;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal-bright), var(--cyan));
}

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

.year-columns h3 {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 22px;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 84px 20px 34px;
}

.page-hero > div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 30px;
  padding: clamp(32px, 6vw, 64px);
  background: radial-gradient(circle at 12% 10%, rgba(45, 212, 191, 0.18), transparent 32%), linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.88));
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(45, 212, 191, 0.42);
  border-radius: 999px;
  color: var(--teal-bright);
  background: rgba(20, 184, 166, 0.12);
  font-weight: 800;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.03em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.8;
}

.breadcrumb {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--teal-bright);
}

.breadcrumb strong {
  color: var(--muted-strong);
  font-weight: 600;
}

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

.category-card a {
  position: relative;
  display: block;
  min-height: 230px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.68));
  transition: 0.24s ease;
}

.category-card a:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.category-glow {
  position: absolute;
  inset: auto -40px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.16);
  filter: blur(4px);
}

.category-card h2 {
  position: relative;
  margin: 0 0 12px;
  font-size: 26px;
}

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

.category-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-links a {
  min-height: auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--teal-bright);
  background: rgba(20, 184, 166, 0.1);
  font-size: 13px;
}

.filter-panel {
  padding-top: 28px;
}

.filter-search,
.search-page-form {
  margin-bottom: 28px;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.68);
}

.filter-search input,
.search-page-form input {
  padding: 18px 20px;
}

.search-page-form button {
  padding: 0 26px;
  border-radius: 0;
}

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

.detail-main {
  min-height: 80vh;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  background: #020617;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-size: cover;
  background-position: center;
  filter: blur(22px) saturate(1.1);
  transform: scale(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.72), #020617 96%);
}

.detail-shell {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 20px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 28px;
  background: #020617;
  box-shadow: var(--shadow);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle at center, rgba(20, 184, 166, 0.28), rgba(2, 6, 23, 0.62) 46%, rgba(2, 6, 23, 0.88));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #042f2e;
  background: linear-gradient(135deg, var(--teal-bright), var(--cyan));
  box-shadow: 0 0 34px rgba(45, 212, 191, 0.35);
  font-size: 30px;
  text-indent: 4px;
}

.detail-copy h1 {
  margin: 16px 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.detail-one-line {
  margin: 0 0 22px;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.8;
}

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

.tag-pill {
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
}

.detail-content {
  display: grid;
  gap: 28px;
}

.story-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(15, 23, 42, 0.68);
}

.story-card h2 {
  margin: 0 0 14px;
  color: var(--teal-bright);
  font-size: 24px;
}

.story-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 2;
}

.related-section {
  padding: 18px 0 0;
}

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

.compact-card .card-info p {
  min-height: 38px;
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.72);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 38px 20px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand p {
  max-width: 540px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.82);
}

.footer-links a:hover {
  color: var(--teal-bright);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 28px;
  color: var(--muted);
  font-size: 14px;
}

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

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

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

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

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 100px 20px 170px;
  }

  .hero-control {
    display: none;
  }

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

  .rank-grid,
  .year-columns,
  .category-overview-grid,
  .detail-shell {
    grid-template-columns: 1fr;
  }

  .detail-shell {
    padding-top: 34px;
  }
}

@media (max-width: 680px) {
  .nav-inner {
    padding: 13px 16px;
  }

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

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-search,
  .search-page-form {
    flex-direction: column;
    border-radius: 18px;
  }

  .hero-search button,
  .search-page-form button {
    padding: 14px 18px;
  }

  .content-section,
  .filter-panel,
  .category-overview-grid,
  .detail-content {
    padding: 42px 16px;
  }

  .page-hero {
    padding: 54px 16px 18px;
  }

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

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

  .wide-item {
    gap: 14px;
    padding: 12px;
  }

  .wide-cover {
    flex-basis: 86px;
  }

  .wide-copy p {
    -webkit-line-clamp: 1;
  }

  .detail-copy h1 {
    font-size: 32px;
  }

  .play-icon {
    width: 66px;
    height: 66px;
  }
}
