* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #1f2937;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.24), transparent 32rem),
    linear-gradient(180deg, #fff7ed 0%, #fffbeb 38%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(253, 230, 138, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(146, 64, 14, 0.08);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #92400e;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #fbbf24, #eab308 45%, #fb923c);
  box-shadow: 0 12px 26px rgba(217, 119, 6, 0.24);
}

.brand-text {
  font-size: 22px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #d97706, #ca8a04, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link {
  color: #4b5563;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link.active {
  color: #d97706;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-head input,
.search-controls input,
.search-controls select {
  border: 2px solid #fde68a;
  border-radius: 999px;
  outline: none;
  background: #ffffff;
  color: #1f2937;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 210px;
  padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-head input:focus,
.search-controls input:focus,
.search-controls select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.header-search button,
.mobile-search button {
  border: 0;
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  cursor: pointer;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fef3c7;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #92400e;
}

.mobile-menu {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-menu nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.mobile-link {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(254, 243, 199, 0.78);
  color: #78350f;
  font-weight: 700;
}

.mobile-search input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
}

.hero-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #111827;
}

.hero-bg,
.hero-bg img,
.hero-mask,
.hero-fade {
  position: absolute;
  inset: 0;
}

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

.hero-mask {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.54) 46%, rgba(0, 0, 0, 0.10) 100%);
}

.hero-fade {
  top: auto;
  height: 128px;
  background: linear-gradient(0deg, #fff7ed, transparent);
}

.hero-content {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-copy {
  max-width: 680px;
  color: #ffffff;
  animation: floatIn 0.8s ease both;
}

.eyebrow,
.page-hero p,
.section-title span {
  display: inline-flex;
  align-items: center;
  color: #fbbf24;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 16px 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0;
  max-width: 620px;
  color: #f3f4f6;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta span {
  padding: 8px 14px;
  border-radius: 999px;
  color: #fffbeb;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

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

.primary-button,
.glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, #fbbf24, #eab308 48%, #fb923c);
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.32);
}

.glass-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.primary-button:hover,
.glass-button:hover,
.cta-section a:hover {
  transform: translateY(-2px) scale(1.02);
}

.category-strip {
  position: relative;
  z-index: 3;
  margin-top: -54px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.category-tile,
.honey-panel,
.movie-card,
.category-overview-card,
.search-page-panel,
.filter-panel {
  border: 1px solid rgba(253, 230, 138, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(146, 64, 14, 0.08);
  backdrop-filter: blur(10px);
}

.category-tile {
  padding: 18px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.movie-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(146, 64, 14, 0.14);
}

.category-tile span {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #fbbf24, #fb923c);
  font-size: 22px;
  font-weight: 900;
}

.category-tile strong {
  display: block;
  color: #1f2937;
  font-size: 16px;
}

.category-tile em {
  display: block;
  margin-top: 6px;
  color: #78716c;
  font-size: 13px;
  font-style: normal;
}

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

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

.section-title h2 {
  margin: 6px 0 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #d97706, #ca8a04, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title a {
  color: #d97706;
  font-weight: 900;
}

.compact-title h2 {
  font-size: 30px;
}

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

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

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

.movie-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.movie-card.large .poster-link,
.movie-card.feature .poster-link {
  aspect-ratio: 16 / 9;
}

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

.movie-card:hover .poster-link img,
.horizontal-card:hover img,
.ranking-row:hover img {
  transform: scale(1.06);
}

.corner-label {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.play-circle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

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

.movie-card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  color: #1f2937;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.movie-card-body h3 a:hover {
  color: #d97706;
}

.movie-meta,
.movie-line {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: 14px;
}

.movie-line {
  margin-top: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.movie-tags,
.sidebar-tags,
.cta-section div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.movie-tags span,
.sidebar-tags a,
.cta-section a {
  padding: 7px 11px;
  border-radius: 999px;
  color: #92400e;
  background: #fef3c7;
  font-size: 12px;
  font-weight: 800;
}

.editor-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.editor-list,
.sidebar-list,
.focus-list,
.ranking-list,
.category-samples {
  display: grid;
  gap: 14px;
}

.horizontal-card {
  position: relative;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, transform 0.2s ease;
}

.horizontal-card:hover {
  background: #fffbeb;
  transform: translateX(3px);
}

.horizontal-card img {
  width: 128px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease;
}

.horizontal-card h3 {
  margin: 0 0 6px;
  color: #1f2937;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.horizontal-card p,
.horizontal-card span {
  display: block;
  margin: 0;
  color: #6b7280;
  font-size: 13px;
}

.rank-badge,
.ranking-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.22);
}

.rank-badge {
  position: absolute;
  left: -6px;
  top: -6px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.honey-panel,
.search-page-panel,
.filter-panel {
  padding: 26px;
}

.amber-panel {
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.94), rgba(255, 237, 213, 0.9));
}

.cta-section {
  margin-top: 74px;
  margin-bottom: 80px;
  padding: 54px;
  border-radius: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #eab308 48%, #fb923c);
  text-align: center;
  box-shadow: 0 28px 70px rgba(217, 119, 6, 0.25);
}

.cta-section h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
}

.cta-section p {
  max-width: 740px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.7;
}

.cta-section div {
  justify-content: center;
}

.cta-section a {
  color: #d97706;
  background: #ffffff;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.page-hero {
  position: relative;
  padding: 74px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(251, 191, 36, 0.42), transparent 28rem),
    linear-gradient(135deg, #111827, #7c2d12 62%, #f59e0b);
  color: #ffffff;
}

.page-hero h1 {
  margin: 10px 0;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.05em;
}

.page-hero span {
  display: block;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 80px;
}

.category-overview-card {
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-head {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.category-overview-head > span {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #fbbf24, #fb923c);
  font-size: 28px;
  font-weight: 900;
}

.category-overview-head h2 {
  margin: 0 0 5px;
  color: #1f2937;
}

.category-overview-head p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

.category-overview-head strong {
  color: #d97706;
  white-space: nowrap;
}

.filter-panel,
.search-page-panel {
  margin-top: 48px;
  margin-bottom: 80px;
}

.filter-head,
.search-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.filter-head h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 30px;
}

.filter-head p {
  margin: 0;
  color: #6b7280;
}

.filter-head input {
  width: min(360px, 100%);
  padding: 13px 18px;
}

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

.empty-state {
  display: none;
  margin: 26px 0 0;
  padding: 18px;
  border-radius: 18px;
  color: #92400e;
  background: #fef3c7;
  font-weight: 800;
  text-align: center;
}

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

.full-ranking-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.ranking-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.2s ease, background 0.2s ease;
}

.ranking-row:hover {
  transform: translateX(4px);
  background: #fffbeb;
}

.ranking-number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.ranking-row a {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 16px;
  align-items: center;
}

.ranking-row img {
  width: 148px;
  height: 86px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.25s ease;
}

.ranking-row h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 19px;
}

.ranking-row p {
  margin: 0 0 6px;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.ranking-row strong {
  color: #d97706;
  font-size: 13px;
}

.search-controls {
  flex-wrap: wrap;
}

.search-controls input,
.search-controls select {
  min-height: 48px;
  padding: 12px 18px;
}

.search-controls input {
  flex: 1 1 360px;
}

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

.search-summary {
  margin-bottom: 24px;
  color: #6b7280;
  font-weight: 800;
}

.search-results {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.detail-bg,
.detail-bg img,
.detail-overlay {
  position: absolute;
  inset: 0;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) scale(1.04);
  opacity: 0.64;
}

.detail-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45)), linear-gradient(0deg, #fff7ed 0%, transparent 24%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0 96px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

.detail-hero h1 {
  max-width: 880px;
  margin: 18px 0 14px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.detail-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.8;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  margin-top: -64px;
  margin-bottom: 80px;
  position: relative;
  z-index: 4;
}

.detail-main,
.detail-sidebar {
  display: grid;
  align-content: start;
  gap: 24px;
}

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-cover span {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #fbbf24, #fb923c);
  font-size: 30px;
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.42);
}

.player-cover strong {
  font-size: 18px;
}

.detail-info-panel h2,
.detail-sidebar h2 {
  margin: 0 0 18px;
  color: #111827;
  font-size: 24px;
}

.poster-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
}

.poster-summary > img {
  width: 220px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(146, 64, 14, 0.16);
}

.poster-summary p {
  margin: 0 0 18px;
  color: #4b5563;
  line-height: 1.8;
}

.poster-summary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.poster-summary dl div {
  padding: 12px;
  border-radius: 14px;
  background: #fffbeb;
}

.poster-summary dt {
  color: #92400e;
  font-size: 13px;
  font-weight: 900;
}

.poster-summary dd {
  margin: 4px 0 0;
  color: #1f2937;
  font-weight: 800;
}

.article-section {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #fde68a;
}

.article-section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-section h2 span {
  width: 5px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fbbf24, #fb923c);
}

.article-section p {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.95;
}

.sidebar-tags {
  margin-top: 0;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(135deg, #78350f, #92400e 50%, #c2410c);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 20px;
}

.site-footer p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tags a {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

[hidden] {
  display: none !important;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .category-strip,
  .movie-grid,
  .recommended-grid,
  .compact-grid,
  .category-movie-grid,
  .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-layout {
    margin-top: -42px;
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    height: 66px;
  }

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

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

  .category-strip,
  .movie-grid,
  .recommended-grid,
  .compact-grid,
  .category-movie-grid,
  .category-overview-grid,
  .search-results {
    grid-template-columns: 1fr;
  }

  .section-title,
  .filter-head,
  .search-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-head input,
  .search-controls input,
  .search-controls select {
    width: 100%;
    flex-basis: auto;
  }

  .category-overview-head,
  .poster-summary,
  .ranking-row,
  .ranking-row a {
    grid-template-columns: 1fr;
  }

  .poster-summary > img,
  .ranking-row img {
    width: 100%;
  }

  .poster-summary > img {
    aspect-ratio: 16 / 10;
  }

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

  .horizontal-card img {
    width: 104px;
    height: 72px;
  }

  .cta-section {
    padding: 34px 20px;
  }
}
