:root {
  --color-amber: #f59e0b;
  --color-orange: #f97316;
  --color-red: #ef4444;
  --color-slate-950: #020617;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-slate-500: #64748b;
  --color-slate-200: #e2e8f0;
  --color-slate-100: #f1f5f9;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--color-slate-900);
  background: #f8fafc;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.98), rgba(249, 115, 22, 0.98));
  color: var(--color-white);
  box-shadow: 0 10px 28px rgba(180, 83, 9, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand {
  flex: 0 0 auto;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: rotate(10deg) scale(1.05);
}

.brand-text {
  font-size: 24px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
  overflow: hidden;
}

.nav-link {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  opacity: 0.95;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

.header-search {
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.header-search input,
.mobile-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--color-slate-900);
  background: transparent;
}

.header-search input {
  width: 100%;
  padding: 8px 10px 8px 14px;
}

.header-search button,
.mobile-search button {
  border: 0;
  cursor: pointer;
  color: var(--color-white);
  background: var(--color-amber);
  border-radius: 999px;
}

.header-search button {
  width: 34px;
  height: 34px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--color-white);
}

.mobile-nav {
  display: none;
  padding: 16px;
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.98), rgba(194, 65, 12, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.mobile-search {
  display: flex;
  gap: 8px;
  padding: 5px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
}

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

.mobile-search button {
  padding: 0 18px;
}

.mobile-nav-link {
  display: block;
  padding: 11px 6px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

main {
  min-height: 70vh;
}

.hero {
  position: relative;
  min-height: 720px;
  color: var(--color-white);
  overflow: hidden;
  background: var(--color-slate-950);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(10px) saturate(1.05);
  transform: scale(1.08);
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 36%, rgba(245, 158, 11, 0.38), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.93), rgba(15, 23, 42, 0.72), rgba(124, 45, 18, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 52px;
  padding-top: 82px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #fbbf24;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.hero-desc {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-meta span,
.detail-meta span,
.movie-meta span {
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 700;
}

.hero-meta span {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-amber), var(--color-orange));
  box-shadow: 0 16px 28px rgba(249, 115, 22, 0.28);
}

.button-ghost {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.42);
}

.button-light {
  color: #b45309;
  background: var(--color-white);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

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

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-controls button {
  border: 0;
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.16);
  font-size: 28px;
}

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

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

.hero-dot.is-active {
  width: 32px;
  background: var(--color-white);
}

.section {
  padding: 72px 0;
}

.page-main {
  padding-top: 88px;
}

.section-warm {
  background: linear-gradient(90deg, #fff7ed, #fffbeb);
}

.section-dark {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-slate-950), var(--color-slate-800));
}

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

.section-heading h2 {
  display: inline;
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--color-slate-600);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: 12px;
  border-radius: 15px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
  box-shadow: 0 14px 24px rgba(249, 115, 22, 0.24);
}

.section-more {
  flex: 0 0 auto;
  color: #b45309;
  font-weight: 800;
}

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

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

.movie-list {
  display: grid;
  gap: 18px;
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-slate-900);
}

.movie-poster img {
  width: 100%;
  aspect-ratio: 2 / 2.85;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.movie-category {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
}

.movie-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
  transform: translate(-50%, -50%) scale(0.84);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.25);
}

.movie-card:hover .movie-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

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

.movie-card p {
  display: -webkit-box;
  min-height: 3.2em;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--color-slate-600);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.tag-row span,
.detail-tags a {
  padding: 4px 9px;
  border-radius: 999px;
  color: #92400e;
  background: #fef3c7;
  font-size: 12px;
  font-weight: 700;
}

.movie-card--horizontal {
  display: grid;
  grid-template-columns: 160px 1fr;
}

.movie-card--horizontal .movie-poster img {
  height: 100%;
  aspect-ratio: auto;
}

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

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

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

.compact-movie {
  display: grid;
  grid-template-columns: auto 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.compact-movie:hover {
  transform: translateX(4px);
  background: var(--color-white);
}

.compact-movie img {
  width: 64px;
  height: 86px;
  border-radius: 12px;
  object-fit: cover;
}

.compact-movie strong,
.compact-movie small {
  display: block;
}

.compact-movie strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-movie small {
  margin-top: 4px;
  color: var(--color-slate-500);
}

.rank-number {
  width: 38px;
  color: var(--color-orange);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

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

.category-card,
.category-overview-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  padding: 22px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.14);
}

.category-card span,
.category-card strong {
  display: block;
}

.category-card span {
  color: #fcd34d;
  font-size: 22px;
  font-weight: 900;
}

.category-card strong {
  margin: 8px 0;
  color: var(--color-white);
  font-size: 36px;
}

.category-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
}

.category-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.cta-panel,
.page-hero {
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.24), transparent 36%),
    linear-gradient(135deg, var(--color-slate-900), var(--color-slate-950));
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.cta-panel {
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
}

.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 50px);
  letter-spacing: -0.05em;
}

.cta-panel p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.cta-actions {
  justify-content: center;
}

.page-hero {
  margin-top: 24px;
  padding: clamp(30px, 5vw, 58px);
}

.page-hero--orange {
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, var(--color-amber), var(--color-orange));
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
}

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

.local-filter,
.search-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.local-filter input,
.search-controls input,
.search-controls select {
  min-height: 48px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--color-slate-900);
  background: var(--color-white);
}

.local-filter input,
.search-controls input {
  flex: 1 1 280px;
}

.local-filter span,
.search-count {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.search-controls select {
  flex: 0 0 170px;
}

.search-count {
  margin-top: 16px;
}

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

.category-overview-card {
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.category-overview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-overview-head h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.category-overview-head p {
  margin: 0;
  color: var(--color-slate-600);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding-top: 30px;
}

.detail-layout .breadcrumb {
  color: var(--color-slate-600);
}

.detail-layout .breadcrumb a:hover {
  color: var(--color-orange);
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--color-slate-950);
  box-shadow: var(--shadow-soft);
}

.player-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
  box-shadow: 0 26px 45px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.player-play-button span {
  margin-left: 5px;
  font-size: 38px;
}

.player-card.is-playing .player-play-button {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(15, 23, 42, 0.68);
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.detail-content,
.side-card {
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.detail-content {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
}

.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.detail-content h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.detail-content h2,
.side-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-content section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--color-slate-200);
}

.detail-content p {
  color: var(--color-slate-700);
  font-size: 17px;
}

.lead-text {
  font-size: 19px;
  color: var(--color-slate-800);
}

.detail-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.side-card {
  padding: 18px;
}

.poster-side img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 2 / 2.85;
  object-fit: cover;
  margin-bottom: 16px;
}

.poster-side p {
  color: var(--color-slate-600);
}

.site-footer {
  color: var(--color-white);
  background: linear-gradient(180deg, var(--color-slate-900), var(--color-slate-950));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 56px 0;
}

.footer-brand {
  margin-bottom: 16px;
  font-size: 22px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.68);
}

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

.site-footer h3 {
  margin: 0 0 14px;
  color: #fbbf24;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.is-hidden {
  display: none !important;
}

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

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

  .mobile-menu-button {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr 280px;
  }

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

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

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

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

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

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

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: center;
  }

  .hero-poster {
    width: min(260px, 70vw);
    margin: 0 auto;
  }

  .section-heading,
  .category-overview-head,
  .detail-title-row {
    display: block;
  }

  .section-more,
  .category-overview-head .button,
  .detail-title-row .button {
    margin-top: 16px;
  }

  .movie-grid,
  .movie-grid--featured,
  .category-grid,
  .category-overview-grid,
  .ranking-panel,
  .ranking-panel--wide,
  .detail-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-card--horizontal {
    grid-template-columns: 130px 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

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

  .hero,
  .hero-content {
    min-height: 700px;
  }

  .hero-actions,
  .cta-actions,
  .search-controls,
  .local-filter {
    flex-direction: column;
  }

  .button,
  .search-controls select {
    width: 100%;
  }

  .movie-grid,
  .movie-grid--featured,
  .category-grid,
  .category-overview-grid,
  .ranking-panel,
  .ranking-panel--wide,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .movie-card--horizontal {
    grid-template-columns: 112px 1fr;
  }

  .compact-movie {
    grid-template-columns: auto 54px minmax(0, 1fr);
  }

  .compact-movie img {
    width: 54px;
    height: 74px;
  }

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