:root {
  --color-silver: #c0c0c0;
  --color-silver-light: #e8e8e8;
  --color-silver-dark: #a8a8a8;
  --color-moonlight: #f5f5f7;
  --color-night-blue: #1a1f35;
  --color-deep-blue: #0f1419;
  --color-star-white: #ffffff;
  --color-text-primary: #e2e8f0;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  --gradient-silver: linear-gradient(135deg, #f8fafc 0%, #c0c0c0 42%, #7c879a 100%);
  --gradient-moonlight: linear-gradient(180deg, #0f1419 0%, #1a1f35 52%, #111827 100%);
  --gradient-card: linear-gradient(145deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.92));
  --border-soft: rgba(226, 232, 240, 0.12);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text-primary);
  background: var(--gradient-moonlight);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 12% 8%, rgba(192, 192, 192, 0.16), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(96, 165, 250, 0.12), transparent 36rem),
    radial-gradient(circle at 50% 100%, rgba(15, 23, 42, 0.86), transparent 42rem);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 20, 25, 0.78);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(1360px, calc(100% - 28px));
  height: 72px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #0f1419;
  background: var(--gradient-silver);
  border-radius: 12px;
  box-shadow: 0 0 34px rgba(192, 192, 192, 0.24);
}

.brand-text,
.footer-brand {
  font-size: 20px;
  background: var(--gradient-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.nav-link {
  color: #cbd5e1;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.header-search,
.mobile-search,
.large-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.large-search input,
.filter-bar input,
.filter-bar select {
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 210px;
  padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(226, 232, 240, 0.55);
  box-shadow: 0 0 0 4px rgba(226, 232, 240, 0.08);
}

.header-search button,
.mobile-search button,
.large-search button,
.primary-button,
.ghost-button {
  border: 0;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search button,
.mobile-search button,
.large-search button,
.primary-button {
  padding: 10px 18px;
  color: #0f1419;
  background: var(--gradient-silver);
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(192, 192, 192, 0.18);
}

.header-search button:hover,
.mobile-search button:hover,
.large-search button:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 0;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  width: min(100%, 720px);
  padding: 0 18px 18px;
  margin: 0 auto;
}

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

.mobile-search input {
  flex: 1;
  padding: 12px 14px;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.mobile-nav a {
  padding: 12px 14px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #0f1419;
}

.hero-track,
.hero-slide,
.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

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

.hero-backdrop {
  background-position: center;
  background-size: cover;
  transform: scale(1.05);
  filter: brightness(0.42) saturate(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 20, 25, 0.96) 0%, rgba(15, 20, 25, 0.64) 45%, rgba(15, 20, 25, 0.2) 100%),
    linear-gradient(0deg, #0f1419 0%, rgba(15, 20, 25, 0.1) 34%, rgba(15, 20, 25, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 48px;
  height: 100%;
  min-height: 72vh;
  padding: 90px 0 72px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #d4d4d8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.listing-hero h1,
.detail-main-text h1,
.intro-search h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.05;
  background: var(--gradient-silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(42px, 7vw, 92px);
}

.hero-copy p {
  max-width: 760px;
  margin: 24px 0 32px;
  color: #cbd5e1;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.9;
}

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

.hero-poster {
  justify-self: end;
  width: min(370px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-6px);
}

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

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

.hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 999px;
}

.hero-dots button.is-active {
  background: var(--color-silver-light);
}

.intro-search,
.page-section,
.listing-hero,
.detail-hero,
.detail-content {
  padding: 72px 0 0;
}

.intro-search {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.82fr);
  gap: 28px;
  align-items: center;
}

.intro-search h2,
.listing-hero h1,
.detail-main-text h1 {
  font-size: clamp(34px, 4vw, 56px);
}

.intro-search p,
.listing-hero p,
.rank-entry p,
.category-overview-card p {
  color: #94a3b8;
  line-height: 1.8;
}

.large-search {
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.large-search input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 999px;
}

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

.section-heading h2,
.rank-entry h2,
.rank-side h2,
.site-footer h2,
.detail-main-text h2 {
  margin: 0;
  color: #f8fafc;
}

.section-heading h2,
.rank-entry h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.section-heading a {
  color: #cbd5e1;
  font-weight: 700;
}

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

.listing-grid,
.search-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 44px;
}

.movie-card {
  display: block;
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  border-color: rgba(226, 232, 240, 0.32);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), 0 0 30px rgba(192, 192, 192, 0.14);
  transform: translateY(-5px);
}

.movie-cover {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111827;
}

.movie-cover::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent);
}

.movie-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.42s ease;
}

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

.movie-badge,
.movie-year {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.movie-badge {
  left: 12px;
  top: 12px;
}

.movie-year {
  right: 12px;
  bottom: 12px;
}

.movie-info {
  padding: 18px;
}

.movie-info h2 {
  display: -webkit-box;
  min-height: 52px;
  margin: 0 0 10px;
  overflow: hidden;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-info p {
  display: -webkit-box;
  min-height: 46px;
  margin: 0 0 14px;
  overflow: hidden;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 12px;
}

.movie-meta span {
  padding: 5px 8px;
  background: rgba(148, 163, 184, 0.11);
  border-radius: 999px;
}

.movie-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.movie-tags span,
.tag-list span {
  padding: 5px 8px;
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 12px;
}

.horizontal-list {
  display: flex;
  gap: 18px;
  padding: 2px 2px 16px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.movie-card-wide {
  flex: 0 0 300px;
}

.editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
  gap: 22px;
}

.editor-main {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.editor-main img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: brightness(0.72);
}

.editor-main div {
  position: absolute;
  inset: auto 0 0;
  padding: 34px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent);
}

.editor-main span {
  color: #facc15;
  font-weight: 800;
}

.editor-main h2 {
  margin: 12px 0;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 46px);
}

.editor-main p {
  max-width: 760px;
  color: #cbd5e1;
  line-height: 1.8;
}

.editor-side,
.mini-card-grid {
  display: grid;
  gap: 14px;
}

.mini-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  overflow: hidden;
  background: rgba(30, 41, 59, 0.48);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mini-card:hover {
  border-color: rgba(226, 232, 240, 0.3);
  transform: translateY(-2px);
}

.mini-card img {
  width: 88px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-card span {
  color: #f8fafc;
  font-weight: 700;
  line-height: 1.5;
}

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

.category-tile,
.category-overview-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(51, 65, 85, 0.72), rgba(15, 23, 42, 0.86));
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile {
  min-height: 172px;
  padding: 22px;
}

.category-tile:hover,
.category-overview-card:hover {
  box-shadow: 0 0 30px rgba(192, 192, 192, 0.14);
  transform: translateY(-4px);
}

.category-tile span,
.category-overview-head span {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.category-tile p,
.category-overview-head p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
}

.rank-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 34px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.rank-entry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.masonry-grid {
  columns: 3 260px;
  column-gap: 20px;
}

.movie-card-masonry {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
}

.listing-hero {
  padding-top: 86px;
}

.listing-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: 18px;
}

.compact-actions {
  margin-top: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 14px;
  margin: 28px 0 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
}

.filter-bar input {
  flex: 1 1 280px;
  padding: 13px 16px;
}

.filter-bar select {
  min-width: 150px;
  padding: 13px 16px;
}

.filter-count {
  color: #94a3b8;
  font-size: 14px;
}

.category-overview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 50px;
}

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

.category-overview-head {
  display: block;
  margin-bottom: 18px;
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding-top: 32px;
}

.rank-list,
.rank-side {
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
}

.rank-row {
  display: grid;
  grid-template-columns: 54px 78px minmax(0, 1fr) minmax(160px, auto) 90px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(3px);
}

.rank-number {
  color: #e8e8e8;
  font-size: 22px;
  font-weight: 900;
}

.rank-row img {
  width: 78px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-title {
  color: #ffffff;
  font-weight: 800;
}

.rank-meta,
.rank-heat {
  color: #94a3b8;
  font-size: 13px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  margin-top: 22px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #94a3b8;
  font-size: 14px;
}

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

.player-card,
.detail-side,
.detail-main-text {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.player-card {
  overflow: hidden;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-radius: 26px;
}

.player-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.play-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.48));
  border: 0;
  transition: opacity 0.2s ease;
}

.play-layer span {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  padding-left: 5px;
  color: #0f1419;
  background: var(--gradient-silver);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  font-size: 36px;
}

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

.detail-side {
  padding: 16px;
}

.detail-side img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
}

.detail-facts {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.detail-facts span {
  padding: 12px 14px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

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

.detail-main-text {
  padding: 34px;
}

.detail-main-text .lead {
  margin: 18px 0 20px;
  color: #d4d4d8;
  font-size: 20px;
  line-height: 1.8;
}

.detail-main-text h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 26px;
}

.detail-main-text p {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 2;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 60px;
}

.site-footer {
  margin-top: 70px;
  padding: 48px 0 24px;
  background: rgba(8, 13, 20, 0.76);
  border-top: 1px solid var(--border-soft);
}

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

.site-footer p {
  max-width: 520px;
  color: #94a3b8;
  line-height: 1.8;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 18px;
}

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

.footer-links a {
  color: #94a3b8;
}

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

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

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 36px auto 0;
  padding-top: 20px;
  color: #64748b;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
  font-size: 14px;
}

[data-movie-card].is-hidden {
  display: none;
}

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

  .header-search {
    margin-left: auto;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

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

  .hero-content,
  .intro-search,
  .editor-grid,
  .rank-entry,
  .ranking-layout,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 70px);
  }

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

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

  .rank-meta,
  .rank-heat {
    display: none;
  }

  .detail-side {
    display: none;
  }
}

@media (max-width: 640px) {
  .section-container {
    width: min(100% - 22px, 1280px);
  }

  .header-inner {
    width: min(100% - 20px, 1360px);
  }

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

  .hero,
  .hero-content {
    min-height: 82vh;
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero-actions,
  .filter-bar,
  .large-search {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .ghost-button,
  .large-search button {
    justify-content: center;
    text-align: center;
  }

  .movie-grid,
  .listing-grid,
  .related-grid,
  .category-grid,
  .category-overview-grid,
  .rank-entry-list {
    grid-template-columns: 1fr;
  }

  .movie-card-wide {
    flex-basis: 82vw;
  }

  .editor-main,
  .editor-main img {
    min-height: 420px;
  }

  .detail-main-text {
    padding: 22px;
  }

  .play-layer span {
    width: 68px;
    height: 68px;
    font-size: 30px;
  }
}
