:root {
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --amber-50: #fffbeb;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  --shadow-sm: 0 4px 12px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 12px 28px rgba(17, 24, 39, 0.12);
  --shadow-lg: 0 20px 50px rgba(17, 24, 39, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
  color: var(--gray-900);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
  box-shadow: 0 10px 24px rgba(194, 65, 12, 0.26);
}

.site-header__inner {
  width: min(var(--container), calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-logo:hover {
  opacity: 0.86;
}

.site-logo__mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--orange-600);
  background: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.nav-link--small {
  font-size: 13px;
  opacity: 0.9;
}

.header-search,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search input,
.mobile-search input {
  width: 178px;
  height: 38px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--white);
  outline: none;
  background: rgba(255, 255, 255, 0.18);
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search input:focus,
.mobile-search input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.24);
}

.header-search button,
.mobile-search button {
  position: absolute;
  right: 4px;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
}

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

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(194, 65, 12, 0.98);
}

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

.mobile-nav nav {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

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

.mobile-search input {
  width: 100%;
}

.hero-slider {
  position: relative;
  height: 560px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--gray-900), var(--gray-800));
}

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

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

.hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.32), transparent 26%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.2));
}

.hero-slide__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 88px 0 72px;
}

.hero-slide__content .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 42px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange-600);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

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

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

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

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

.button--primary {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 14px 28px rgba(234, 88, 12, 0.34);
}

.button--primary:hover {
  background: var(--orange-700);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.hero-panel h3 {
  margin: 0 0 14px;
  font-size: 16px;
}

.hero-panel__list {
  display: grid;
  gap: 10px;
}

.hero-panel__item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.hero-panel__item:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-panel__item img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
}

.hero-panel__item strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-panel__item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow--prev {
  left: 22px;
}

.hero-arrow--next {
  right: 22px;
}

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

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

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

.main-content {
  padding: 52px 0 0;
}

.section-block {
  margin: 0 0 68px;
}

.section-block--tinted {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, var(--orange-50), var(--amber-50));
}

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

.section-title-row h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.section-title-row p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-title-row a {
  color: var(--orange-600);
  font-weight: 800;
}

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

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

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

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

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

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

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

.movie-card__cover {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--gray-800);
}

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

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

.movie-card__score,
.movie-card__rank {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.movie-card__score {
  right: 12px;
}

.movie-card__rank {
  left: 12px;
  background: var(--orange-600);
}

.movie-card__body {
  padding: 18px;
}

.movie-card__category {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--orange-700);
  background: var(--orange-100);
  font-size: 12px;
  font-weight: 800;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 50px;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 850;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.movie-card__meta,
.movie-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.movie-card__meta {
  color: var(--gray-500);
  font-size: 12px;
}

.movie-card__tags {
  margin-top: 12px;
}

.movie-card__tags span,
.detail-tags span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 12px;
}

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

.movie-card--horizontal .movie-card__cover {
  height: 100%;
  min-height: 150px;
}

.movie-card--horizontal h3 {
  min-height: auto;
  -webkit-line-clamp: 1;
}

.movie-card--large .movie-card__cover {
  height: 290px;
}

.category-hero,
.simple-hero {
  padding: 58px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(120deg, var(--gray-900), var(--orange-700));
}

.category-hero h1,
.simple-hero h1 {
  max-width: 780px;
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
}

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

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

.category-card {
  display: grid;
  grid-template-columns: 1fr 168px;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card__body {
  padding: 26px;
}

.category-card__body h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.category-card__body p {
  margin: 0 0 18px;
  color: var(--gray-600);
}

.category-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray-500);
  font-size: 13px;
}

.category-card__covers {
  position: relative;
  min-height: 100%;
  background: var(--gray-900);
}

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

.filter-panel {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(130px, 0.7fr));
  gap: 12px;
  margin: -28px 0 34px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.filter-panel input,
.filter-panel select {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--gray-800);
  outline: none;
  background: var(--white);
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
}

.filter-result {
  margin: 0 0 22px;
  color: var(--gray-600);
}

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

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

.ranking-list .movie-card--horizontal {
  border-left: 5px solid var(--orange-600);
}

.search-shell {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.search-shell form {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 12px;
}

.search-shell input {
  min-height: 48px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
}

.search-shell input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 22px 0;
  color: var(--gray-600);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--orange-600);
  font-weight: 700;
}

.detail-page {
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 34px;
}

.player-shell {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--black);
  box-shadow: var(--shadow-lg);
}

.player-shell video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: contain;
  background: var(--black);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: none;
  color: var(--white);
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.28), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.36));
  font-weight: 850;
  font-size: 18px;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-overlay__icon {
  width: 86px;
  height: 86px;
  display: inline-grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  color: var(--orange-600);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  font-size: 34px;
}

.detail-hero__panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-hero__panel > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.detail-hero__info {
  padding: 22px;
}

.detail-hero__info h1 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.15;
}

.detail-hero__info p {
  margin: 0 0 18px;
  color: var(--gray-600);
}

.detail-stats,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 13px;
  font-weight: 700;
}

.detail-tags {
  margin-top: 14px;
}

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

.detail-article,
.detail-sidebar {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-article {
  padding: 30px;
}

.detail-article h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.detail-article p {
  margin: 0 0 26px;
  color: var(--gray-700);
  font-size: 16px;
}

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

.movie-info-list div {
  padding: 14px;
  border-radius: 14px;
  background: var(--gray-50);
}

.movie-info-list dt {
  color: var(--gray-500);
  font-size: 13px;
}

.movie-info-list dd {
  margin: 4px 0 0;
  color: var(--gray-900);
  font-weight: 750;
}

.detail-sidebar {
  align-self: start;
  padding: 24px;
}

.detail-sidebar h2 {
  margin: 0 0 16px;
}

.side-link {
  display: block;
  margin-bottom: 10px;
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--orange-700);
  background: var(--orange-50);
  font-weight: 800;
}

.info-page-card {
  margin-top: -30px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.info-page-card h2 {
  margin: 0 0 12px;
}

.info-page-card p,
.info-page-card li {
  color: var(--gray-700);
}

.site-footer {
  margin-top: 78px;
  color: var(--gray-300);
  background: var(--gray-900);
}

.site-footer__inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 22px;
  font-weight: 850;
}

.footer-logo span {
  color: var(--orange-500);
}

.site-footer p {
  margin: 0;
  color: var(--gray-300);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

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

.site-footer a {
  color: var(--gray-300);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--orange-500);
}

.site-footer__bottom {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
}

.empty-state {
  padding: 46px;
  border-radius: var(--radius-lg);
  color: var(--gray-600);
  background: var(--white);
  text-align: center;
}

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

  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

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

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

  .detail-hero__panel {
    display: grid;
    grid-template-columns: 220px 1fr;
  }

  .detail-hero__panel > img {
    height: 100%;
  }
}

@media (max-width: 820px) {
  .hero-slider {
    height: 620px;
  }

  .hero-slide__content {
    padding: 72px 0 64px;
  }

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

  .hero-panel {
    display: none;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow--prev {
    left: 10px;
  }

  .hero-arrow--next {
    right: 10px;
  }

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

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

  .movie-card--horizontal .movie-card__link,
  .category-card {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

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

  .detail-hero__panel > img {
    height: 230px;
  }

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

  .movie-info-list,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .site-header__inner {
    height: 60px;
  }

  .site-logo__text {
    font-size: 18px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 34px;
  }

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

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

  .section-block--tinted,
  .detail-article,
  .info-page-card {
    padding: 22px;
  }

  .search-shell form {
    grid-template-columns: 1fr;
  }

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