:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-850: #162033;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --amber-500: #f59e0b;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --emerald-600: #059669;
  --blue-600: #2563eb;
  --purple-600: #9333ea;
  --text-main: #172033;
  --text-soft: #64748b;
  --card: #ffffff;
  --line: rgba(148, 163, 184, 0.22);
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background: linear-gradient(
    135deg,
    var(--slate-50) 0%,
    #eef2f7 45%,
    #e8edf5 100%
  );
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.98),
    rgba(30, 41, 59, 0.96),
    rgba(15, 23, 42, 0.98)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.26);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(234, 88, 12, 0.28);
  font-size: 18px;
  line-height: 1;
}

.logo-copy strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  background: linear-gradient(90deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-copy small {
  display: block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
}

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

.nav-link,
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  color: #d1d5db;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-link:hover,
.mobile-nav-link:hover,
.nav-link.active,
.mobile-nav-link.active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.22);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding: 14px 0 18px;
}

.hero {
  position: relative;
  height: 610px;
  min-height: 520px;
  overflow: hidden;
  background: var(--slate-900);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(245, 158, 11, 0.28),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.92) 0%,
      rgba(15, 23, 42, 0.72) 42%,
      rgba(15, 23, 42, 0.22) 100%
    ),
    linear-gradient(
      0deg,
      rgba(2, 6, 23, 0.96) 0%,
      rgba(2, 6, 23, 0.1) 56%,
      rgba(2, 6, 23, 0.42) 100%
    );
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 82px;
  transform: translateX(-50%);
  color: #ffffff;
}

.hero-kicker,
.inner-hero span,
.section-heading span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 840px;
  margin: 22px 0 16px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #e5e7eb;
  font-size: clamp(16px, 2vw, 21px);
}

.hero-meta,
.detail-meta,
.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-meta span,
.detail-meta span {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 18px 30px rgba(234, 88, 12, 0.28);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.22);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.54);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(2, 6, 23, 0.78);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.page-stack {
  display: grid;
  gap: 54px;
  padding: 54px 0 72px;
}

.page-hero-space {
  padding-top: 42px;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 42px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 80% 8%,
      rgba(245, 158, 11, 0.24),
      transparent 30%
    ),
    linear-gradient(135deg, var(--slate-900), var(--slate-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.inner-hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.06;
}

.inner-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbe4ef;
  font-size: 17px;
}

.search-panel,
.section-block,
.content-card,
.player-section {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 22px;
  align-items: center;
  padding: 24px;
}

.search-panel h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.search-panel p {
  margin: 0;
  color: var(--text-soft);
}

.search-controls {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 12px;
}

.search-controls input,
.search-controls select {
  width: 100%;
  min-height: 48px;
  color: var(--text-main);
  background: #f8fafc;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  outline: none;
  padding: 0 14px;
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.search-controls input:focus,
.search-controls select:focus {
  background: #ffffff;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.section-block {
  padding: 28px;
}

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

.section-heading h2 {
  margin: 10px 0 0;
  color: var(--slate-900);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.section-heading a {
  color: var(--orange-700);
  font-weight: 800;
}

.movie-grid,
.ranking-card-grid {
  display: grid;
  gap: 22px;
}

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

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

.movie-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 320px);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

.movie-rail .movie-card {
  scroll-snap-align: start;
}

.movie-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.movie-card:hover {
  border-color: rgba(245, 158, 11, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.movie-cover-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dbe4ef;
}

.movie-cover-frame {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.movie-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.movie-card:hover .movie-cover-frame img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.08);
}

.movie-badge,
.movie-duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.movie-badge {
  top: 10px;
  left: 10px;
  padding: 7px 10px;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
}

.movie-duration {
  right: 10px;
  bottom: 10px;
  padding: 7px 10px;
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(8px);
}

.rank-badge {
  left: 10px;
  bottom: 10px;
  min-width: 34px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, 0.78);
}

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

.movie-title-link h3 {
  display: -webkit-box;
  min-height: 46px;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--slate-900);
  font-size: 17px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta-row {
  color: #66758a;
  font-size: 12px;
  font-weight: 700;
}

.movie-meta-row span:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: #b4bfcc;
}

.movie-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.movie-tags span,
.tag-list span {
  color: #92400e;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
}

.movie-card-compact .movie-card-body {
  padding: 12px;
}

.movie-card-compact .movie-title-link h3 {
  min-height: 42px;
  font-size: 15px;
}

.movie-card-compact .movie-card-body p {
  display: none;
}

.movie-card-compact .movie-tags {
  display: none;
}

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

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

.category-card,
.feature-grid a {
  min-height: 170px;
  padding: 22px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(245, 158, 11, 0.32),
      transparent 30%
    ),
    linear-gradient(135deg, var(--slate-900), var(--slate-800));
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.category-card:hover,
.feature-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.24);
}

.category-card span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  border-radius: 12px;
  font-weight: 900;
}

.category-card strong,
.feature-grid strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 22px;
}

.category-card em,
.feature-grid p {
  display: block;
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  font-style: normal;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 84px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.rank-item:hover {
  border-color: rgba(245, 158, 11, 0.42);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.rank-index {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  border-radius: 12px;
  font-weight: 900;
}

.rank-cover {
  overflow: hidden;
  border-radius: 12px;
  background: #dbe4ef;
}

.rank-cover img {
  width: 84px;
  height: 54px;
  object-fit: cover;
}

.rank-content strong,
.rank-content em {
  display: block;
}

.rank-content strong {
  color: var(--slate-900);
  font-size: 16px;
}

.rank-content em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 13px;
  font-style: normal;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rank-score {
  color: var(--orange-700);
  font-size: 18px;
  font-weight: 900;
}

.detail-page {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  color: #ffffff;
  background-image: var(--detail-bg);
  background-size: cover;
  background-position: center;
}

.detail-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(245, 158, 11, 0.24),
      transparent 26%
    ),
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.94),
      rgba(15, 23, 42, 0.76),
      rgba(15, 23, 42, 0.38)
    ),
    linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.24));
  backdrop-filter: blur(5px);
}

.detail-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 38px;
  align-items: end;
  padding: 64px 0;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #fbbf24;
  font-size: 14px;
  font-weight: 800;
}

.detail-copy h1 {
  max-width: 850px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.detail-copy p {
  max-width: 840px;
  margin: 0 0 22px;
  color: #e2e8f0;
  font-size: 18px;
}

.detail-layout {
  display: grid;
  gap: 28px;
  padding: 42px 0 76px;
}

.player-section {
  padding: 24px;
}

.player-section h2 {
  margin: 0 0 16px;
  color: var(--slate-900);
  font-size: 26px;
}

.player-card {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.28);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: radial-gradient(
    circle,
    rgba(15, 23, 42, 0.18),
    rgba(2, 6, 23, 0.6)
  );
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.player-overlay span {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  padding-left: 6px;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  border-radius: 999px;
  box-shadow: 0 24px 50px rgba(245, 158, 11, 0.32);
  font-size: 36px;
}

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

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.content-card {
  padding: 26px;
}

.content-card h2 {
  margin: 0 0 12px;
  color: var(--slate-900);
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
}

.related-block {
  margin-top: 6px;
}

.empty-state {
  display: none;
  margin: 24px 0 0;
  color: var(--text-soft);
  text-align: center;
  font-weight: 700;
}

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

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  padding: 46px 0 30px;
}

.footer-logo {
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-grid p {
  max-width: 410px;
  margin: 0;
  color: #94a3b8;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

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

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

.footer-links a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding: 18px 0 28px;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1100px) {
  .movie-grid-six,
  .movie-grid-four,
  .ranking-card-grid,
  .category-grid,
  .category-grid-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

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

  .hero-arrow {
    display: none;
  }

  .hero-content {
    bottom: 70px;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-controls {
    grid-template-columns: 1fr;
  }

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

  .movie-grid-six,
  .movie-grid-four,
  .ranking-card-grid,
  .category-grid,
  .category-grid-large,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero-grid {
    grid-template-columns: 1fr;
    padding: 42px 0;
  }

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

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

@media (max-width: 560px) {
  .site-container {
    width: min(100% - 24px, 1200px);
  }

  .header-inner {
    min-height: 66px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .logo-copy strong {
    font-size: 18px;
  }

  .logo-copy small {
    display: none;
  }

  .hero {
    height: 520px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-actions {
    gap: 10px;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .page-stack {
    gap: 34px;
    padding: 34px 0 52px;
  }

  .section-block,
  .search-panel,
  .inner-hero,
  .content-card,
  .player-section {
    padding: 20px;
    border-radius: 18px;
  }

  .movie-grid-six,
  .movie-grid-four,
  .ranking-card-grid,
  .category-grid,
  .category-grid-large,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 36px 70px 1fr;
  }

  .rank-score {
    grid-column: 3;
  }

  .rank-cover img {
    width: 70px;
    height: 48px;
  }

  .player-overlay span {
    width: 68px;
    height: 68px;
    font-size: 30px;
  }
}
