:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0c0c0f;
  --panel: rgba(18, 18, 22, 0.82);
  --panel-strong: rgba(28, 28, 34, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f7;
  --muted: #a1a1aa;
  --soft: #71717a;
  --accent: #f5f5f5;
  --accent-dark: #111113;
  --gold: #facc15;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.16), transparent 30rem),
    radial-gradient(circle at 85% 10%, rgba(250, 250, 250, 0.10), transparent 26rem),
    linear-gradient(135deg, #050505 0%, #0b0b0f 48%, #111113 100%);
  color: var(--text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
  z-index: -1;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(20px);
}

.header-inner {
  max-width: 1420px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #08080a;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #c7c7d1 52%, #777782 100%);
  box-shadow: 0 16px 45px rgba(255, 255, 255, 0.14);
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.brand-text small {
  color: var(--soft);
  font-size: 12px;
}

.desktop-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.desktop-nav::-webkit-scrollbar {
  display: none;
}

.desktop-nav a,
.mobile-panel a {
  color: var(--muted);
  border-radius: 14px;
  padding: 10px 14px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.mobile-panel {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.96);
}

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

.hero {
  padding: 46px 28px 30px;
}

.hero-shell {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.7fr);
  gap: 22px;
}

.hero-slider,
.hero-panel,
.page-hero,
.detail-hero,
.player-shell,
.side-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-slider {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 34px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 0.9s ease;
  pointer-events: none;
}

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

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 30, 0.98), rgba(5, 5, 5, 0.78)),
    radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.18), transparent 18rem);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(0.85) contrast(1.08);
}

.hero-media img.is-hidden {
  opacity: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  height: 100%;
  padding: clamp(36px, 6vw, 84px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
}

.eyebrow,
.page-hero span,
.section-heading span {
  color: #d4d4d8;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 90px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  margin: 0;
  max-width: 720px;
  color: #d4d4d8;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.8;
}

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

.primary-button,
.ghost-button,
.search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.primary-button,
.search-form button {
  color: #050505;
  background: var(--accent);
}

.ghost-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-strong);
}

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

.hero-control-row {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.hero-arrow,
.hero-dot {
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.42);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.hero-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  padding: 0;
  opacity: 0.65;
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--text);
  opacity: 1;
}

.hero-panel {
  border-radius: 34px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 610px;
}

.hero-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.search-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}

.search-form label {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 8px;
}

.search-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-form input {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(0, 0, 0, 0.34);
  outline: none;
  padding: 0 18px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.search-form input:focus {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.52);
}

.hero-links {
  display: grid;
  gap: 12px;
}

.hero-links a,
.category-chip,
.category-card,
.side-link-list a,
.related-category-row a {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-links a {
  padding: 15px 16px;
  color: #d4d4d8;
}

.hero-links a:hover,
.category-chip:hover,
.category-card:hover,
.side-link-list a:hover,
.related-category-row a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.content-section {
  max-width: 1420px;
  margin: 0 auto;
  padding: 54px 28px;
}

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

.section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.05em;
}

.section-heading p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
  margin: 10px 0 0;
}

.section-heading > a {
  color: var(--text);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.055);
}

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

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

.movie-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.075);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 7rem),
    linear-gradient(145deg, #27272f, #09090b);
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 52%);
}

.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

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

.poster-image.is-hidden,
.mini-card img.is-hidden,
.detail-poster img.is-hidden {
  opacity: 0;
}

.poster-mark {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  color: #0a0a0b;
  background: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 8px;
}

.movie-card-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.movie-card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--soft);
  font-size: 12px;
}

.movie-card-meta span,
.detail-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.04);
}

.movie-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.32;
}

.movie-card h3 a:hover {
  color: #ffffff;
}

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

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

.tag-row span,
.tag-row a {
  color: #d4d4d8;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.wide-left {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ranking-list a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.ranking-list a:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.ranking-list strong {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #050505;
  background: var(--text);
}

.ranking-list span {
  font-weight: 800;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-list em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.big-ranking a {
  grid-template-columns: 64px minmax(0, 1fr);
}

.category-grid,
.category-card-grid {
  display: grid;
  gap: 14px;
}

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

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

.category-chip {
  min-height: 96px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.category-chip strong,
.category-card span {
  font-size: 20px;
}

.category-chip span,
.category-card em {
  color: var(--muted);
  line-height: 1.6;
  font-style: normal;
}

.category-card {
  padding: 20px;
  min-height: 162px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.category-card strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
}

.subpage {
  padding-top: 28px;
}

.page-hero {
  max-width: 1420px;
  margin: 28px auto 0;
  border-radius: 34px;
  padding: clamp(34px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -44% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  filter: blur(6px);
}

.page-hero > div {
  position: relative;
  z-index: 1;
}

.slim-hero {
  padding-bottom: 48px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-pill,
.related-category-row a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  border-radius: 999px;
  min-height: 38px;
  padding: 0 14px;
  cursor: pointer;
}

.filter-pill.is-active,
.filter-pill:hover {
  color: #050505;
  background: #ffffff;
}

.empty-state {
  display: none;
  margin: 32px 0 0;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.empty-state.is-visible {
  display: block;
}

.detail-page {
  padding-top: 28px;
}

.detail-hero {
  max-width: 1420px;
  margin: 28px auto;
  border-radius: 34px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18), transparent 8rem),
    linear-gradient(145deg, #2d2d35, #08080a);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  display: grid;
  gap: 18px;
  padding: 20px 10px 20px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--soft);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--text);
}

.detail-info h1 {
  font-size: clamp(36px, 6vw, 72px);
}

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

.player-section {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 28px 32px;
}

.player-shell {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.12), transparent 18rem),
    #050505;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.10), transparent 16rem),
    rgba(0, 0, 0, 0.38);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #050505;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(255, 255, 255, 0.25);
  font-size: 34px;
  padding-left: 5px;
}

.player-message {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  margin: 0;
  color: #ffffff;
  text-align: center;
  pointer-events: none;
}

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

.detail-content article,
.side-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  padding: 26px;
}

.detail-content h2,
.side-panel h2 {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.detail-content p {
  color: #d4d4d8;
  line-height: 1.9;
  margin: 0 0 24px;
  font-size: 16px;
}

.detail-content p:last-child {
  margin-bottom: 0;
}

.mini-card-list {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.mini-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.mini-card img {
  width: 70px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  background: #18181b;
}

.mini-card span,
.mini-card em {
  grid-column: 2;
  min-width: 0;
}

.mini-card span {
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.side-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.side-link-list a,
.related-category-row a {
  padding: 10px 14px;
  color: #d4d4d8;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  background: rgba(0, 0, 0, 0.28);
}

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

.footer-brand {
  font-size: 22px;
  letter-spacing: 0.12em;
}

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

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: start;
}

.footer-links a {
  color: var(--muted);
}

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

@media (max-width: 1180px) {
  .hero-shell,
  .split-section,
  .wide-left,
  .detail-content {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .header-inner {
    padding: 0 18px;
  }

  .brand-text small {
    display: none;
  }

  .hero,
  .content-section,
  .player-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-shell {
    gap: 16px;
  }

  .hero-slider {
    min-height: 560px;
    border-radius: 26px;
  }

  .hero-copy {
    padding: 30px;
  }

  .hero-panel,
  .page-hero,
  .detail-hero {
    border-radius: 26px;
  }

  .search-form {
    flex-direction: column;
  }

  .search-form button {
    width: 100%;
  }

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

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

  .detail-hero {
    grid-template-columns: 1fr;
    margin-left: 16px;
    margin-right: 16px;
  }

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

  .detail-info {
    padding: 0;
  }

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

@media (max-width: 520px) {
  .brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

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

  .hero-slider {
    min-height: 520px;
  }

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

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

  .hero-control-row {
    left: 22px;
    right: 22px;
    justify-content: center;
  }
}
