:root {
  --forest-950: #06110d;
  --forest-900: #0e1d16;
  --forest-850: #10261c;
  --forest-800: #173226;
  --earth-950: #16110c;
  --earth-900: #221a12;
  --earth-850: #2d2117;
  --moss-700: #426235;
  --moss-600: #527b43;
  --moss-500: #6b9b55;
  --moss-400: #8bbc6e;
  --parchment-100: #fff6df;
  --parchment-200: #f1e4c9;
  --parchment-300: #cbbb9d;
  --parchment-400: #a19175;
  --line: rgba(241, 228, 201, 0.12);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.25);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--parchment-200);
  background:
    radial-gradient(circle at 12% 5%, rgba(107, 155, 85, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(82, 123, 67, 0.14), transparent 32rem),
    linear-gradient(180deg, var(--forest-950), var(--forest-900) 48%, var(--earth-950));
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 17, 13, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--parchment-100);
  background: linear-gradient(135deg, var(--moss-700), var(--moss-500));
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(82, 123, 67, 0.28);
}

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

.logo-text strong {
  color: var(--parchment-100);
  font-size: 20px;
  letter-spacing: 0.04em;
}

.logo-text em {
  color: var(--parchment-300);
  font-size: 12px;
  font-style: normal;
  margin-top: 3px;
}

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

.nav-link,
.mobile-nav-link {
  color: var(--parchment-200);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.mobile-nav-link:hover {
  color: var(--parchment-100);
  transform: translateY(-1px);
}

.header-search {
  width: min(260px, 28vw);
}

.search-box {
  position: relative;
}

.search-box input,
.local-filter input {
  width: 100%;
  color: var(--parchment-100);
  background: rgba(34, 26, 18, 0.72);
  border: 1px solid var(--line);
  outline: none;
  border-radius: 14px;
  padding: 12px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-box input:focus,
.local-filter input:focus {
  border-color: rgba(139, 188, 110, 0.72);
  background: rgba(34, 26, 18, 0.92);
  box-shadow: 0 0 0 4px rgba(107, 155, 85, 0.15);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: 420px;
  overflow: auto;
  padding: 8px;
  background: rgba(14, 29, 22, 0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
  z-index: 70;
}

.search-result {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.search-result:hover {
  background: rgba(255, 255, 255, 0.06);
}

.search-result img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--earth-900);
}

.search-result strong {
  display: block;
  color: var(--parchment-100);
  font-size: 14px;
  margin-bottom: 4px;
}

.search-result span {
  color: var(--parchment-400);
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--parchment-100);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.mobile-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 20px;
  border-top: 1px solid var(--line);
}

.mobile-nav-link {
  display: block;
  padding: 10px 0;
}

.mobile-search {
  margin-top: 12px;
}

.hero-carousel {
  position: relative;
  height: 72vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--forest-950);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 13, 0.94) 0%, rgba(6, 17, 13, 0.76) 42%, rgba(6, 17, 13, 0.08) 100%),
    linear-gradient(0deg, var(--forest-950) 0%, rgba(6, 17, 13, 0) 48%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.hero-copy {
  width: min(760px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--moss-400);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1 {
  margin: 0 0 18px;
  color: var(--parchment-100);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h1,
.hero-copy h2 {
  font-size: clamp(42px, 6.5vw, 82px);
}

.hero-copy p,
.page-hero p {
  max-width: 720px;
  color: var(--parchment-200);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 24px;
}

.hero-meta,
.detail-meta,
.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--parchment-300);
}

.hero-meta span,
.detail-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
}

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

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

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

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--moss-600), var(--moss-500));
  box-shadow: 0 18px 34px rgba(82, 123, 67, 0.28);
}

.btn.ghost,
.btn.outline {
  color: var(--parchment-100);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.btn.outline:hover,
.btn.ghost:hover {
  border-color: rgba(139, 188, 110, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.wide-btn {
  width: 100%;
  margin-top: 16px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  color: white;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  font-size: 32px;
  line-height: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: var(--moss-500);
}

.hero-search-panel {
  position: absolute;
  left: 50%;
  bottom: 72px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-search-panel > * {
  pointer-events: auto;
}

.hero-search {
  width: min(460px, 52vw);
}

.hero-shortcut {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  color: var(--parchment-100);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

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

.section-panel {
  padding: 72px 0;
  background: rgba(34, 26, 18, 0.32);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-heading h2 {
  margin: 0 0 6px;
  color: var(--parchment-100);
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--parchment-300);
  line-height: 1.6;
}

.small-heading h2 {
  font-size: 30px;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--moss-400);
  background: rgba(107, 155, 85, 0.12);
  border: 1px solid rgba(139, 188, 110, 0.2);
  border-radius: 14px;
}

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

.movie-card {
  display: block;
  overflow: hidden;
  background: rgba(34, 26, 18, 0.58);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(139, 188, 110, 0.28);
  box-shadow: var(--shadow-strong);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--earth-900);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.82));
  opacity: 0.74;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: white;
  background: rgba(82, 123, 67, 0.9);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.75);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.tag-strip {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-strip span,
.detail-tags span,
.feature-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  color: var(--parchment-100);
  background: rgba(14, 29, 22, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 12px;
}

.rank-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  color: white;
  background: linear-gradient(135deg, #a16f26, var(--moss-600));
  border-radius: 10px;
  font-size: 14px;
}

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

.movie-card-body strong {
  display: -webkit-box;
  min-height: 48px;
  color: var(--parchment-100);
  font-size: 18px;
  line-height: 1.35;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-card-body strong {
  color: var(--moss-400);
}

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

.movie-meta {
  gap: 8px;
  font-size: 12px;
}

.movie-meta span {
  padding: 4px 8px;
}

.compact-card .movie-card-body strong {
  font-size: 16px;
  min-height: auto;
}

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

.compact-card .movie-meta {
  margin-top: 10px;
}

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

.category-tile {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(82, 123, 67, 0.26), rgba(34, 26, 18, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 12rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 188, 110, 0.32);
}

.category-tile span {
  color: var(--parchment-100);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.category-tile em {
  color: var(--parchment-300);
  font-style: normal;
  line-height: 1.6;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 30px;
  align-items: start;
}

.rank-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(34, 26, 18, 0.45);
}

.rank-row {
  display: grid;
  grid-template-columns: 46px minmax(110px, 1fr) minmax(0, 1.3fr) 74px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.rank-num {
  color: var(--moss-400);
  font-weight: 900;
}

.rank-title {
  color: var(--parchment-100);
  font-weight: 800;
}

.rank-desc,
.rank-year {
  color: var(--parchment-400);
  font-size: 13px;
}

.feature-card,
.side-card,
.detail-info,
.category-overview-card {
  background: rgba(34, 26, 18, 0.55);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 32px;
  position: sticky;
  top: 92px;
}

.feature-card h2 {
  color: var(--parchment-100);
  font-size: 34px;
  margin: 0 0 12px;
}

.feature-card p {
  color: var(--parchment-300);
  line-height: 1.8;
}

.feature-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(6, 17, 13, 0.96), rgba(34, 26, 18, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(107, 155, 85, 0.28), transparent 32rem);
}

.compact-hero {
  padding: 72px 0 58px;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--parchment-400);
  font-size: 14px;
  margin-bottom: 22px;
}

.breadcrumb a:hover {
  color: var(--moss-400);
}

.local-filter {
  width: min(520px, 100%);
  margin-top: 22px;
}

.category-overview-list {
  display: grid;
  gap: 28px;
}

.category-overview-card {
  padding: 24px;
}

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

.category-overview-card h2 {
  color: var(--parchment-100);
  margin: 0 0 8px;
  font-size: 28px;
}

.category-overview-card p {
  margin: 0;
  color: var(--parchment-300);
  line-height: 1.7;
}

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

.detail-shell {
  padding: 36px 0 28px;
}

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

.player-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
  background: black;
}

.player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: black;
}

.player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.18));
  border: 0;
  cursor: pointer;
  z-index: 3;
}

.player-cover span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  color: white;
  background: rgba(82, 123, 67, 0.92);
  border-radius: 999px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
  font-size: 34px;
  padding-left: 4px;
}

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

.player-loading,
.player-error {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  padding: 8px 12px;
  color: var(--parchment-100);
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  pointer-events: none;
}

.detail-info {
  margin-top: 22px;
  padding: 26px;
}

.detail-info h1 {
  color: var(--parchment-100);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 16px;
}

.detail-info h2,
.side-card h2 {
  color: var(--parchment-100);
  margin: 26px 0 10px;
}

.detail-info p {
  color: var(--parchment-300);
  line-height: 1.9;
  margin: 0;
}

.detail-meta {
  margin-bottom: 18px;
}

.detail-tags {
  margin-bottom: 22px;
}

.detail-side {
  position: sticky;
  top: 92px;
}

.detail-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--earth-900);
}

.side-card {
  padding: 22px;
  margin-top: 18px;
}

.side-card h2 {
  margin-top: 0;
}

.side-card dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  margin: 0 0 22px;
}

.side-card dt {
  color: var(--parchment-400);
}

.side-card dd {
  margin: 0;
  color: var(--parchment-200);
}

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

.ranking-grid .movie-card:nth-child(-n + 3) {
  border-color: rgba(139, 188, 110, 0.35);
}

.site-footer {
  margin-top: 24px;
  background: rgba(6, 17, 13, 0.96);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 36px;
  padding: 46px 0 34px;
}

.footer-brand p {
  max-width: 520px;
  color: var(--parchment-300);
  line-height: 1.8;
}

.site-footer h2 {
  color: var(--parchment-100);
  font-size: 18px;
  margin: 0 0 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  color: var(--parchment-300);
}

.site-footer a:hover {
  color: var(--parchment-100);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  color: var(--parchment-400);
  border-top: 1px solid var(--line);
}

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

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header-search {
    width: min(320px, 36vw);
    margin-left: auto;
  }

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

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

  .detail-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .detail-side,
  .feature-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .header-search {
    display: none;
  }

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

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

  .hero-content {
    align-items: flex-end;
    padding: 96px 0 154px;
  }

  .hero-gradient {
    background:
      linear-gradient(0deg, var(--forest-950) 0%, rgba(6, 17, 13, 0.82) 52%, rgba(6, 17, 13, 0.2) 100%),
      linear-gradient(90deg, rgba(6, 17, 13, 0.88), rgba(6, 17, 13, 0.22));
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(34px, 13vw, 52px);
  }

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

  .hero-arrow {
    top: auto;
    bottom: 104px;
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .hero-search-panel {
    flex-wrap: wrap;
    bottom: 50px;
  }

  .hero-search {
    width: 100%;
  }

  .hero-shortcut {
    flex: 1 1 auto;
    justify-content: center;
    min-height: 42px;
  }

  .section-block,
  .section-panel {
    padding: 48px 0;
  }

  .section-heading,
  .category-overview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .category-grid,
  .mini-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 34px 1fr 58px;
  }

  .rank-desc {
    display: none;
  }

  .compact-hero {
    padding: 52px 0 42px;
  }

  .detail-shell {
    padding-top: 24px;
  }

  .detail-info,
  .category-overview-card,
  .feature-card,
  .side-card {
    padding: 20px;
  }

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

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