:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --stone-50: #fafaf9;
  --white: #ffffff;
  --amber: #f59e0b;
  --orange: #f97316;
  --rose: #f43f5e;
  --pink: #ec4899;
  --teal: #14b8a6;
  --cyan: #06b6d4;
  --blue: #3b82f6;
  --indigo: #6366f1;
  --violet: #8b5cf6;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.24);
  --radius-xl: 18px;
  --radius-2xl: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-800);
  background: linear-gradient(135deg, var(--slate-50), var(--stone-50) 46%, var(--slate-100));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--slate-900);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.28);
}

.brand-text {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--slate-600);
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--slate-900);
  background: rgba(245, 158, 11, 0.12);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.global-search {
  position: relative;
  width: min(320px, 34vw);
}

.global-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--slate-800);
  outline: none;
  padding: 0 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.global-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(245, 158, 11, 0.9);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
  background: var(--white);
}

.global-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(420px, 92vw);
  max-height: 420px;
  overflow: auto;
  display: none;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.global-search-panel.open {
  display: block;
}

.search-result {
  display: block;
  padding: 12px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.search-result:hover {
  background: var(--slate-100);
}

.search-result strong {
  display: block;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.search-result span {
  display: block;
  color: var(--slate-500);
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--slate-900);
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--white);
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.mobile-nav.open {
  display: grid;
  gap: 6px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 12% 20%, rgba(245, 158, 11, 0.24), transparent 28%), radial-gradient(circle at 86% 26%, rgba(20, 184, 166, 0.20), transparent 32%), linear-gradient(135deg, var(--slate-950), var(--slate-900) 54%, #292524);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-wrap {
  position: relative;
  padding: 70px 0 40px;
}

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

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

.hero-slide.active {
  display: grid;
  animation: heroFade 0.5s ease both;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

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

.hero-summary {
  max-width: 680px;
  margin: 22px 0;
  color: var(--slate-300);
  font-size: 1.08rem;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-tags span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.primary-button,
.secondary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.3);
}

.secondary-button {
  padding: 0 22px;
  color: var(--slate-900);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.ghost-button {
  padding: 0 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.text-button {
  min-height: auto;
  color: var(--orange);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-art {
  position: relative;
  display: block;
}

.hero-glow {
  position: absolute;
  inset: -5px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.85), rgba(249, 115, 22, 0.52), rgba(20, 184, 166, 0.56));
  filter: blur(10px);
  opacity: 0.82;
  transition: opacity 0.35s ease;
}

.hero-art:hover .hero-glow {
  opacity: 1;
}

.hero-art img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transform: translateZ(0);
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.hero-controls button {
  border: 0;
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.8rem;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 30px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-dot.active {
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.section-block {
  padding: 64px 0;
}

.warm-section {
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.92), rgba(255, 247, 237, 0.92));
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.1;
  color: var(--slate-900);
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--slate-500);
}

.section-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.section-icon.amber {
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.section-icon.teal {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.section-icon.rose {
  background: linear-gradient(135deg, var(--rose), var(--pink));
}

.section-icon.blue {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
}

.section-icon.violet {
  background: linear-gradient(135deg, var(--violet), var(--indigo));
}

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

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

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

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

.movie-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.movie-card.hidden {
  display: none;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.movie-card-link {
  display: block;
  height: 100%;
}

.movie-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--slate-900);
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.12));
  transition: opacity 0.35s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.play-dot {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber), var(--orange));
  transform: scale(0.75);
  transition: transform 0.35s ease;
}

.movie-card:hover .play-dot {
  transform: scale(1);
}

.type-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.type-badge {
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.72);
  font-size: 0.75rem;
}

.rank-badge {
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose), var(--orange));
}

.movie-body {
  padding: 17px;
}

.movie-body h3 {
  margin: 0 0 8px;
  min-height: 2.9em;
  color: var(--slate-900);
  font-size: 1.05rem;
  line-height: 1.38;
  transition: color 0.25s ease;
}

.movie-card:hover h3 {
  color: var(--orange);
}

.movie-body p {
  display: -webkit-box;
  min-height: 3em;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 0.92rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--slate-500);
  font-size: 0.78rem;
}

.movie-meta span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-row span {
  padding: 5px 8px;
  color: var(--slate-600);
  background: var(--slate-100);
}

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

.category-tile,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-tile {
  min-height: 230px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0.86));
}

.category-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile span,
.category-overview-body span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
}

.category-tile h3 {
  margin: 14px 0 8px;
  font-size: 1.35rem;
}

.category-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero,
.detail-top {
  position: relative;
  color: var(--white);
  background: radial-gradient(circle at 15% 18%, rgba(245, 158, 11, 0.24), transparent 28%), linear-gradient(135deg, var(--slate-950), var(--slate-900) 60%, #292524);
}

.page-hero .container,
.detail-top .container {
  padding: 70px 0;
}

.page-hero.compact .container {
  padding: 50px 0;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--slate-300);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

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

.related-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.related-category-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 260px;
}

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

.category-overview-body {
  padding: 28px;
}

.category-overview-body span {
  color: var(--orange);
  background: rgba(249, 115, 22, 0.1);
}

.category-overview-body h2 {
  margin: 16px 0 10px;
  color: var(--slate-900);
}

.category-overview-body p {
  color: var(--slate-600);
}

.mini-links {
  display: grid;
  gap: 6px;
  margin: 18px 0;
}

.mini-links a {
  color: var(--slate-600);
  font-size: 0.92rem;
}

.mini-links a:hover {
  color: var(--orange);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-cover {
  position: relative;
  border-radius: 28px;
  padding: 5px;
  background: linear-gradient(135deg, var(--amber), var(--orange), var(--teal));
  box-shadow: var(--shadow-lg);
}

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

.detail-info h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
}

.detail-one-line {
  max-width: 760px;
  margin: 20px 0 24px;
  color: var(--slate-300);
  font-size: 1.08rem;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.detail-meta-grid div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-meta-grid span,
.detail-meta-grid strong {
  display: block;
}

.detail-meta-grid span {
  color: var(--slate-300);
  font-size: 0.78rem;
}

.detail-meta-grid strong {
  margin-top: 4px;
  color: var(--white);
}

.detail-tags span {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.player-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  background: var(--slate-950);
  box-shadow: var(--shadow-lg);
}

.player-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--slate-950);
}

.player-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.player-button {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-size: 2rem;
  box-shadow: 0 22px 60px rgba(249, 115, 22, 0.35);
}

.player-title {
  max-width: 80%;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.48);
  font-weight: 800;
}

.prose-block {
  max-width: 920px;
}

.prose-block h2 {
  margin: 0 0 16px;
  color: var(--slate-900);
  font-size: 1.7rem;
}

.prose-block p {
  margin: 0 0 28px;
  color: var(--slate-700);
  font-size: 1.02rem;
}

.site-footer {
  color: var(--slate-300);
  background: var(--slate-950);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-brand {
  align-items: flex-start;
  color: var(--white);
}

.footer-brand p {
  max-width: 520px;
  margin: 6px 0 0;
  color: var(--slate-500);
}

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

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

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  color: var(--slate-500);
  font-size: 0.9rem;
}

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

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

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

  .menu-toggle {
    display: block;
  }

  .hero-wrap {
    padding-top: 46px;
  }

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

  .hero-copy h1,
  .detail-info h1 {
    font-size: 2.5rem;
  }

  .movie-grid.four,
  .movie-grid.three,
  .rank-strip,
  .category-grid,
  .category-overview-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

  .category-cover img {
    aspect-ratio: 16 / 9;
  }

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

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

  .footer-inner {
    flex-direction: column;
  }
}

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

  .brand-text {
    font-size: 1rem;
  }

  .hero-controls {
    justify-content: flex-start;
  }

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

  .movie-grid.four,
  .movie-grid.three,
  .rank-strip {
    gap: 16px;
  }

  .page-hero .container,
  .detail-top .container {
    padding: 44px 0;
  }

  .player-button {
    width: 66px;
    height: 66px;
    font-size: 1.55rem;
  }
}
