:root {
  --sand-50: #fbf7ef;
  --sand-100: #f5f0e5;
  --stone-50: #f8f7f4;
  --stone-100: #ede8df;
  --stone-200: #ddd8cf;
  --stone-400: #8d8377;
  --stone-700: #3f3a35;
  --stone-800: #292522;
  --stone-900: #171412;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --desert-300: #eac296;
  --desert-600: #c66a3f;
  --white: #ffffff;
  --black: #000000;
  --shadow-soft: 0 20px 50px -18px rgba(41, 37, 34, 0.25);
  --shadow-desert: 0 20px 50px -12px rgba(212, 132, 75, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--stone-800);
  background: linear-gradient(180deg, var(--sand-50), #ffffff 46%, var(--stone-50));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.narrow-container {
  width: min(980px, calc(100% - 32px));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(251, 247, 239, 0.95);
  box-shadow: 0 12px 40px rgba(23, 20, 18, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-500), var(--purple-600));
  box-shadow: 0 14px 30px rgba(225, 29, 72, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--rose-600), var(--purple-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 5px;
  color: var(--stone-400);
  font-size: 12px;
}

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

.nav-link {
  position: relative;
  color: var(--stone-700);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose-500), var(--purple-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--rose-600);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--stone-800);
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  max-height: calc(100vh - 88px);
  overflow: auto;
  margin: 0 auto 16px;
  padding: 14px;
  border: 1px solid rgba(221, 216, 207, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--stone-700);
  background: var(--sand-50);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 112px 0 70px;
  background:
    radial-gradient(circle at 16% 15%, rgba(244, 63, 94, 0.22), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(147, 51, 234, 0.2), transparent 30%),
    linear-gradient(135deg, #fff7ed 0%, #fff1f2 44%, #faf5ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(251, 247, 239, 0.86));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.8;
}

.hero-glow-one {
  width: 340px;
  height: 340px;
  right: 6%;
  top: 18%;
  background: rgba(225, 29, 72, 0.13);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  left: 8%;
  bottom: 12%;
  background: rgba(147, 51, 234, 0.14);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--stone-700);
  font-size: 14px;
  font-weight: 800;
}

.hero-topline div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.hero-topline a {
  padding: 8px 12px;
  border: 1px solid rgba(221, 216, 207, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-topline a:hover {
  color: var(--rose-600);
  border-color: rgba(225, 29, 72, 0.28);
  transform: translateY(-2px);
}

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

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.68fr);
  align-items: center;
  gap: 56px;
}

.hero-slide.is-active {
  display: grid;
  animation: fade-in 0.65s ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: var(--stone-900);
  font-size: clamp(46px, 8vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-desc {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--stone-700);
  font-size: 18px;
  line-height: 1.9;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span,
.tag-row a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--rose-700);
  background: linear-gradient(90deg, var(--rose-50), #faf5ff);
  font-size: 12px;
  font-weight: 800;
}

.hero-tags {
  margin-top: 22px;
}

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

.primary-button,
.ghost-button,
.text-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-600), var(--purple-600));
  box-shadow: var(--shadow-desert);
}

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

.ghost-button {
  color: var(--stone-800);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 216, 207, 0.95);
}

.hero-cover {
  position: relative;
  display: block;
  padding: 14px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 24px -12px -12px 24px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.28), rgba(147, 51, 234, 0.22));
}

.hero-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--rose-100), var(--sand-100));
}

.hero-controls {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.hero-dot {
  width: 44px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(63, 58, 53, 0.18);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 72px;
  background: linear-gradient(90deg, var(--rose-600), var(--purple-600));
}

.page-section {
  padding: 74px 0;
}

.muted-section {
  background: linear-gradient(180deg, rgba(245, 240, 229, 0.8), rgba(255, 255, 255, 0.88));
}

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

.section-heading h2 {
  margin: 0;
  color: var(--stone-900);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--stone-400);
  line-height: 1.8;
}

.section-link,
.text-button {
  color: var(--rose-600);
  background: var(--rose-50);
}

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

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

.category-tile,
.category-card-large a {
  display: block;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(221, 216, 207, 0.88);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(41, 37, 34, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-card-large a:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 29, 72, 0.24);
  box-shadow: var(--shadow-desert);
}

.category-tile span,
.category-card-large span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-600), var(--purple-600));
  font-size: 13px;
  font-weight: 900;
}

.category-tile p,
.category-card-large p {
  margin: 0;
  color: var(--stone-500, #6b625a);
  line-height: 1.75;
}

.category-card-large h2 {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(221, 216, 207, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(41, 37, 34, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(225, 29, 72, 0.28);
  box-shadow: var(--shadow-desert);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-100), var(--sand-100));
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(23, 20, 18, 0.62);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

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

.movie-card-meta,
.compact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--stone-400);
  font-size: 12px;
  font-weight: 800;
}

.movie-card-meta a {
  color: var(--rose-600);
}

.movie-card h2,
.compact-card h2,
.rank-info h2 {
  margin: 0;
  color: var(--stone-900);
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.movie-card h2 a:hover,
.compact-card h2 a:hover,
.rank-info h2 a:hover {
  color: var(--rose-600);
}

.movie-card-body p,
.compact-card p,
.rank-info span {
  margin: 10px 0 14px;
  color: var(--stone-400);
  line-height: 1.65;
  font-size: 14px;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  min-height: 136px;
  padding: 14px;
  border: 1px solid rgba(221, 216, 207, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(41, 37, 34, 0.08);
}

.compact-poster {
  overflow: hidden;
  border-radius: 18px;
  background: var(--sand-100);
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 60px 76px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(221, 216, 207, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(41, 37, 34, 0.08);
}

.rank-number {
  color: var(--rose-600);
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.rank-cover {
  overflow: hidden;
  border-radius: 16px;
  background: var(--sand-100);
}

.rank-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.rank-info p {
  margin: 7px 0 4px;
  color: var(--stone-400);
  font-size: 13px;
  font-weight: 800;
}

.inner-page {
  padding-top: 76px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 18% 20%, rgba(244, 63, 94, 0.2), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(147, 51, 234, 0.18), transparent 32%),
    linear-gradient(135deg, #fff7ed, #fff1f2 48%, #faf5ff);
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--stone-900);
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--stone-700);
  font-size: 18px;
  line-height: 1.85;
}

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

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(4, minmax(140px, 180px));
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid rgba(221, 216, 207, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(41, 37, 34, 0.08);
}

.filter-bar label {
  display: grid;
  gap: 7px;
}

.filter-bar span {
  color: var(--stone-400);
  font-size: 12px;
  font-weight: 900;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  padding: 0 12px;
  color: var(--stone-800);
  background: #ffffff;
  outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(225, 29, 72, 0.42);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.08);
}

.empty-message {
  padding: 24px;
  border-radius: 22px;
  color: var(--stone-400);
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-weight: 800;
}

.detail-hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #171412;
}

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(147, 51, 234, 0.32), transparent 30%),
    linear-gradient(90deg, rgba(23, 20, 18, 0.92), rgba(23, 20, 18, 0.72) 48%, rgba(23, 20, 18, 0.42));
}

.detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  padding: 12px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 24px;
}

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

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

.detail-copy .eyebrow {
  color: var(--desert-300);
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.detail-one-line {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.85;
}

.detail-tags {
  margin-top: 22px;
}

.player-section {
  padding-top: 46px;
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(225, 29, 72, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(23, 20, 18, 0.74), rgba(23, 20, 18, 0.9));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.big-play {
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-600), var(--purple-600));
  box-shadow: 0 22px 60px rgba(225, 29, 72, 0.36);
}

.big-play span {
  display: inline-block;
  margin-left: 5px;
  font-size: 32px;
}

.player-overlay strong {
  display: block;
  font-size: clamp(24px, 4vw, 42px);
  letter-spacing: -0.05em;
}

.player-overlay p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

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

.content-card,
.info-panel {
  padding: 28px;
  border: 1px solid rgba(221, 216, 207, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(41, 37, 34, 0.08);
}

.content-card + .content-card {
  margin-top: 22px;
}

.content-card h2,
.info-panel h2 {
  margin: 0 0 14px;
  color: var(--stone-900);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.content-card p {
  margin: 0;
  color: var(--stone-700);
  font-size: 17px;
  line-height: 2;
}

.info-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.info-panel div {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--stone-100);
}

.info-panel dt {
  color: var(--stone-400);
  font-size: 12px;
  font-weight: 900;
}

.info-panel dd {
  margin: 0;
  color: var(--stone-800);
  font-weight: 800;
  line-height: 1.6;
}

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

[hidden] {
  display: none !important;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .menu-button {
    display: block;
  }

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }

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

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

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

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

  .filter-search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .header-inner {
    height: 66px;
  }

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

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 52px;
  }

  .hero-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-topline div {
    justify-content: flex-start;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-slide.is-active {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cover {
    max-width: 360px;
    margin: 0 auto;
    transform: none;
  }

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

  .page-section {
    padding: 52px 0;
  }

  .category-grid,
  .category-grid.large,
  .movie-grid,
  .movie-grid.dense-grid,
  .compact-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 48px 68px minmax(0, 1fr);
  }

  .rank-item .text-button {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

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

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

  .player-card {
    border-radius: 20px;
  }

  .player-overlay {
    flex-direction: column;
    text-align: center;
  }

  .big-play {
    width: 74px;
    height: 74px;
  }
}
