:root {
  --amber-950: #431407;
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-200: #fde68a;
  --amber-100: #fef3c7;
  --cream: #fff7ed;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #f3e2c7;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(120, 53, 15, 0.13);
  --soft-shadow: 0 10px 25px rgba(120, 53, 15, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 45%, #fffbeb 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff7ed;
  background: linear-gradient(90deg, var(--amber-900), #9a3412, var(--amber-900));
  box-shadow: 0 12px 30px rgba(67, 20, 7, 0.25);
}

.header-inner {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--amber-950);
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 12px 24px rgba(245, 158, 11, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text span {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 5px;
  color: rgba(254, 243, 199, 0.82);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(254, 243, 199, 0.9);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 230px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 700;
}

.dropdown-panel a:hover {
  color: var(--amber-800);
  background: #fffbeb;
}

.header-search {
  width: 310px;
  height: 42px;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(254, 243, 199, 0.22);
  border-radius: 999px;
  background: rgba(67, 20, 7, 0.22);
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: #ffffff;
  background: transparent;
}

.header-search input::placeholder {
  color: rgba(254, 243, 199, 0.72);
}

.header-search button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--amber-950);
  font-weight: 800;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff7ed;
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  padding: 10px 24px 18px;
  background: rgba(67, 20, 7, 0.96);
  backdrop-filter: blur(16px);
}

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

.mobile-panel a {
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  color: #ffffff;
  background: #000000;
}

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

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

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.25)), linear-gradient(90deg, rgba(67, 20, 7, 0.82), rgba(67, 20, 7, 0.18) 58%, rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 11vh;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(253, 230, 138, 0.48);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(67, 20, 7, 0.48);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.6);
}

.hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 251, 235, 0.9);
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.75;
}

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

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: var(--amber-950);
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.btn-ghost {
  color: var(--amber-800);
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 11vh;
  display: flex;
  gap: 12px;
}

.hero-control {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 42px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-dot.is-active {
  background: #f59e0b;
}

.main-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.section-block {
  margin-top: 64px;
}

.section-block:first-child {
  margin-top: 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.035em;
}

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

.section-more {
  flex-shrink: 0;
  color: var(--amber-700);
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #231006;
}

.compact-card .poster-link {
  aspect-ratio: 16 / 10;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.74));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.score-pill,
.rank-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

.score-pill {
  right: 12px;
}

.rank-badge {
  left: 12px;
  color: var(--amber-950);
  background: linear-gradient(135deg, #fde68a, #f59e0b);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--amber-950);
  background: rgba(253, 230, 138, 0.92);
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: all 0.25s ease;
}

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

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

.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.card-category {
  color: var(--amber-800);
  font-weight: 900;
}

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

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

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

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

.tag-row span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--amber-800);
  background: #fffbeb;
  font-size: 12px;
  font-weight: 700;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 28px;
  color: #ffffff;
  background: var(--amber-900);
  box-shadow: var(--shadow);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 0.6s ease;
}

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

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(67, 20, 7, 0.86));
}

.category-card-content {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.category-card h2,
.category-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.category-card p {
  margin: 0;
  color: rgba(255, 251, 235, 0.86);
  line-height: 1.7;
}

.intro-panel,
.filter-panel,
.detail-card,
.player-panel {
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.intro-panel {
  padding: 34px;
  margin-bottom: 34px;
}

.intro-panel h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.intro-panel p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
  padding: 18px;
  margin-bottom: 28px;
}

.filter-panel input,
.filter-panel select,
.search-box input,
.search-box select {
  width: 100%;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  outline: 0;
  padding: 14px 16px;
  background: #ffffff;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-box input:focus,
.search-box select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.ranking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 44px 82px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.ranking-item:hover {
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

.ranking-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--amber-950);
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  font-weight: 900;
}

.ranking-item img {
  width: 82px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
}

.ranking-info strong {
  display: block;
  font-size: 17px;
}

.ranking-info em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.ranking-score {
  color: var(--amber-700);
  font-size: 20px;
  font-weight: 900;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #000000;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) saturate(0.9);
  opacity: 0.48;
  transform: scale(1.04);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.94), rgba(67, 20, 7, 0.55));
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 24px 64px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 38px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 16px;
  color: rgba(254, 243, 199, 0.76);
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.detail-info h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.detail-lead {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(255, 251, 235, 0.9);
  font-size: 19px;
  line-height: 1.8;
}

.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.meta-pills span {
  padding: 8px 12px;
  border: 1px solid rgba(253, 230, 138, 0.32);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(67, 20, 7, 0.42);
  font-weight: 800;
}

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

.detail-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 24px 72px;
}

.player-panel {
  padding: 18px;
  margin-bottom: 28px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(67, 20, 7, 0.18), rgba(0, 0, 0, 0.58));
  transition: opacity 0.2s ease;
}

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

.player-button-inner {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 16px 22px;
  border-radius: 999px;
  color: var(--amber-950);
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.35);
  font-weight: 900;
}

.play-circle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--amber-900);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
}

.detail-card {
  padding: 28px;
  margin-bottom: 24px;
}

.detail-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.detail-card p {
  margin: 0 0 16px;
  color: #374151;
  line-height: 1.9;
  font-size: 16px;
}

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

.side-list {
  display: grid;
  gap: 14px;
}

.side-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  padding: 10px;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.side-card img {
  width: 104px;
  height: 76px;
  border-radius: 14px;
  object-fit: cover;
}

.side-card strong {
  display: block;
  margin-bottom: 6px;
  line-height: 1.35;
}

.side-card span {
  color: var(--muted);
  font-size: 13px;
}

.search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 160px;
  gap: 12px;
  margin-bottom: 26px;
}

.search-results {
  min-height: 260px;
}

.empty-state {
  padding: 34px;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 28px;
  color: var(--muted);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.site-footer {
  color: #fff7ed;
  background: linear-gradient(90deg, var(--amber-900), #9a3412, var(--amber-900));
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 900;
}

.site-footer p {
  max-width: 540px;
  margin: 0;
  color: rgba(254, 243, 199, 0.84);
  line-height: 1.8;
}

.footer-links,
.footer-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}

.footer-links a,
.footer-cats a {
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(254, 243, 199, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

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

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

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

@media (max-width: 860px) {
  .header-inner {
    height: 66px;
    padding: 0 16px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    bottom: 14vh;
  }

  .hero-controls {
    right: 24px;
    bottom: 36px;
  }

  .hero-dots {
    bottom: 22px;
  }

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

  .category-grid,
  .footer-inner,
  .filter-panel,
  .search-box,
  .detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .detail-hero-inner {
    padding-top: 34px;
  }

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

@media (max-width: 560px) {
  .brand-text small {
    display: none;
  }

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

  .hero-controls {
    display: none;
  }

  .main-wrap,
  .detail-main {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .ranking-item {
    grid-template-columns: 34px 72px 1fr;
  }

  .ranking-score {
    grid-column: 3;
    justify-self: start;
  }
}
