:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: #0f172a;
  --panel-soft: rgba(30, 41, 59, 0.62);
  --line: rgba(71, 85, 105, 0.45);
  --line-strong: rgba(100, 116, 139, 0.5);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --accent: #e2e8f0;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(51, 65, 85, 0.45), transparent 32rem),
    radial-gradient(circle at 92% 6%, rgba(30, 41, 59, 0.42), transparent 28rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(51, 65, 85, 0.38);
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #020617;
  background: linear-gradient(135deg, #f8fafc, #94a3b8);
  box-shadow: 0 14px 40px rgba(148, 163, 184, 0.28);
  font-size: 14px;
}

.brand-text {
  color: var(--text);
  font-size: 18px;
}

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

.nav-link,
.mobile-nav-link {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--text);
}

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

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
}

.mobile-menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--text);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.94);
}

.mobile-nav-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  background: rgba(51, 65, 85, 0.48);
}

.hero-carousel {
  position: relative;
  min-height: 680px;
  height: 85vh;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 38%, rgba(2, 6, 23, 0.2) 72%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.35) 0%, rgba(2, 6, 23, 0.76) 100%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 12vh;
  width: min(620px, calc(100% - 48px));
  z-index: 2;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.detail-info-card h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.hero-tags span,
.chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.56);
  font-size: 12px;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: #020617;
  background: linear-gradient(135deg, #f8fafc, #94a3b8);
  box-shadow: 0 18px 60px rgba(148, 163, 184, 0.24);
}

.button-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(15, 23, 42, 0.58);
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 9vh;
  z-index: 3;
  display: flex;
  gap: 10px;
}

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

.hero-dot.is-active {
  width: 36px;
  background: #f8fafc;
}

.home-search-band {
  width: min(1180px, calc(100% - 32px));
  margin: -44px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.home-search-band h2 {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.home-search-band p {
  margin: 0;
  color: var(--muted);
}

.search-jump,
.filter-panel {
  display: flex;
  gap: 12px;
}

.search-jump input,
.filter-panel input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  color: var(--text);
  background: rgba(2, 6, 23, 0.58);
}

.search-jump input:focus,
.filter-panel input:focus {
  border-color: rgba(226, 232, 240, 0.62);
}

.search-jump button {
  min-width: 92px;
  border: 0;
  border-radius: 999px;
  color: #020617;
  background: #f8fafc;
  font-weight: 800;
}

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

.with-top-space {
  padding-top: 108px;
}

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

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

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(100, 116, 139, 0.65), transparent);
}

.section-more {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
}

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.42);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.5);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card-link:hover {
  transform: translateY(-5px);
  border-color: rgba(148, 163, 184, 0.58);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.36);
}

.poster-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0f172a;
}

.movie-card-wide .poster-frame {
  aspect-ratio: 16 / 10;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.92));
}

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #020617;
  background: rgba(248, 250, 252, 0.92);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card-link:hover .poster-play {
  opacity: 1;
  transform: translateY(0);
}

.rank-badge,
.score-badge {
  position: absolute;
  top: 10px;
  min-width: 40px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.92);
  color: #020617;
  font-size: 12px;
  font-weight: 900;
}

.rank-badge {
  left: 10px;
}

.score-badge {
  right: 10px;
}

.movie-card-content {
  padding: 14px;
}

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.movie-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card p {
  min-height: 42px;
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.category-tile,
.category-overview-card a {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.66);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile:hover,
.category-overview-card a:hover {
  transform: translateY(-4px);
  border-color: rgba(148, 163, 184, 0.58);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(0.86);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.9));
}

.category-tile span,
.category-tile p {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 16px;
}

.category-tile span {
  margin-top: 118px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.category-tile p {
  margin: 8px 0 0;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.6;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.full-rank-list {
  grid-template-columns: 1fr;
}

.rank-row {
  display: grid;
  grid-template-columns: 46px 54px minmax(0, 1fr) auto 46px;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.58);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 163, 184, 0.58);
  background: rgba(30, 41, 59, 0.72);
}

.rank-number,
.rank-score {
  color: var(--text);
  font-weight: 900;
}

.rank-row img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
}

.rank-title {
  min-width: 0;
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-meta {
  color: var(--muted);
  font-size: 13px;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.scrollbar-hide {
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 0%, rgba(100, 116, 139, 0.25), transparent 30rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.92));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
}

.slim-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
}

.filter-panel {
  position: relative;
  z-index: 5;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(18px);
  flex-direction: column;
}

.sticky-filter {
  position: sticky;
  top: 88px;
}

.filter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-links a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(2, 6, 23, 0.35);
  font-size: 13px;
  font-weight: 800;
}

.category-overview-card a {
  min-height: 320px;
}

.category-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  height: 190px;
  opacity: 0.82;
}

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

.category-overview-content {
  padding: 18px;
}

.category-overview-content h2 {
  margin: 0;
  font-size: 22px;
}

.category-overview-content p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.category-overview-content span {
  color: var(--text);
  font-weight: 900;
}

.empty-state {
  display: none;
  margin: 32px 0 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.6);
}

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

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

.breadcrumb a {
  color: var(--muted-strong);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: var(--shadow);
}

.video-player {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: contain;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: #020617;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.62));
}

.play-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 22px 70px rgba(2, 6, 23, 0.55);
  font-size: 30px;
  transform: translateX(3px);
}

.player-shell.is-playing .play-overlay {
  display: none;
}

.detail-info-card,
.detail-text-panel,
.detail-side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.68);
  box-shadow: var(--shadow);
}

.detail-info-card {
  padding: 32px;
}

.detail-info-card h1 {
  font-size: clamp(34px, 4vw, 58px);
}

.detail-one-line {
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.8;
}

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

.detail-meta-grid span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted-strong);
  background: rgba(2, 6, 23, 0.35);
  font-size: 14px;
}

.detail-meta-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  margin-top: 24px;
}

.detail-text-panel {
  padding: 34px;
}

.detail-text-panel h2 {
  margin: 0 0 16px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.detail-text-panel h2:not(:first-child) {
  margin-top: 34px;
}

.detail-text-panel p {
  margin: 0 0 14px;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.95;
}

.detail-side-panel {
  overflow: hidden;
  align-self: start;
}

.detail-side-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-side-panel h2,
.detail-side-panel p,
.detail-side-panel a {
  margin-right: 18px;
  margin-left: 18px;
}

.detail-side-panel h2 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 20px;
}

.detail-side-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.detail-side-panel a {
  display: inline-flex;
  margin-top: 10px;
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 900;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 84px auto 0;
  padding: 36px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}

.footer-brand {
  color: var(--text);
  font-size: 20px;
}

.site-footer p {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

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

.footer-links a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.48);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1120px) {
  .featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .detail-side-panel {
    display: none;
  }
}

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

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

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

  .hero-carousel {
    height: auto;
    min-height: 660px;
  }

  .hero-content {
    bottom: 110px;
  }

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

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

  .hero-dots {
    right: 24px;
    bottom: 58px;
  }

  .home-search-band {
    grid-template-columns: 1fr;
    margin-top: -28px;
  }

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

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

  .rank-list {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 38px 48px minmax(0, 1fr) 42px;
  }

  .rank-meta {
    display: none;
  }

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

  .page-hero {
    padding: 38px 24px;
  }

  .player-shell,
  .video-player {
    min-height: 260px;
  }

  .detail-info-card,
  .detail-text-panel {
    padding: 24px;
  }

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

@media (max-width: 560px) {
  .site-header-inner {
    width: calc(100% - 24px);
    height: 64px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

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

  .hero-carousel {
    min-height: 620px;
  }

  .hero-content {
    left: 18px;
    width: calc(100% - 36px);
  }

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

  .hero-actions,
  .detail-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .home-search-band,
  .page-main,
  .site-footer {
    width: calc(100% - 24px);
  }

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

  .search-jump button {
    min-height: 46px;
  }

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

  .scroll-row {
    grid-auto-columns: 74%;
  }

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