* {
  box-sizing: border-box;
}

:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-500: #ec4899;
  --orange-500: #f97316;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.1);
  --gradient-hot: linear-gradient(135deg, #f43f5e 0%, #ec4899 52%, #f97316 100%);
  --gradient-deep: linear-gradient(135deg, #881337 0%, #9f1239 45%, #c2410c 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
  line-height: 1.6;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

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

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

.brand-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--gradient-hot);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.35);
  font-size: 15px;
}

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

.brand-text strong {
  font-size: 21px;
  font-weight: 800;
  background: var(--gradient-hot);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text em {
  margin-top: 3px;
  color: var(--slate-500);
  font-style: normal;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: var(--slate-700);
  font-weight: 600;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--rose-600);
}

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

.header-search input,
.mobile-search input,
.search-panel input,
.local-search input {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--slate-900);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.search-panel input:focus,
.local-search input:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.header-search input {
  width: 210px;
  padding: 11px 15px;
  border-radius: 999px 0 0 999px;
}

.header-search button,
.mobile-search button,
.search-panel button {
  border: 0;
  color: #ffffff;
  background: var(--gradient-hot);
  cursor: pointer;
  font-weight: 700;
}

.header-search button {
  width: 46px;
  height: 46px;
  border-radius: 0 999px 999px 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--slate-700);
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  background: #ffffff;
  border-top: 1px solid var(--slate-100);
}

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

.mobile-search {
  margin: 12px auto;
  width: min(520px, 100%);
}

.mobile-search input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 999px 0 0 999px;
}

.mobile-search button {
  padding: 13px 18px;
  border-radius: 0 999px 999px 0;
}

.mobile-panel nav,
.mobile-category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(520px, 100%);
  margin: 0 auto;
}

.mobile-panel nav a,
.mobile-category-links a {
  padding: 10px 12px;
  color: var(--slate-700);
  background: var(--slate-50);
  border-radius: 14px;
  font-weight: 700;
}

.mobile-category-links {
  margin-top: 10px;
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  color: #ffffff;
  background: #881337;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(136, 19, 55, 0.95), rgba(219, 39, 119, 0.82), rgba(249, 115, 22, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 340px;
  align-items: center;
  gap: 58px;
  min-height: 620px;
  padding: 70px 0 124px;
}

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

.hero-kicker,
.page-hero span,
.section-heading span,
.content-card span,
.collection-block-head span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-copy p,
.page-hero p,
.detail-copy p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
}

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

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

.primary-btn {
  color: var(--rose-600);
  background: #ffffff;
  box-shadow: 0 15px 32px rgba(15, 23, 42, 0.2);
}

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

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.38);
  transform: rotate(2deg);
}

.hero-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.hero-dots {
  display: flex;
  gap: 9px;
}

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

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.hero-rail {
  display: flex;
  gap: 12px;
  max-width: 620px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.hero-mini-card {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 138px;
  padding: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}

.hero-mini-card.is-active {
  background: rgba(255, 255, 255, 0.24);
}

.hero-mini-card img {
  width: 42px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-mini-card span {
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 72px 0;
}

.white-section {
  background: #ffffff;
}

.soft-section {
  background: linear-gradient(180deg, #fff1f2 0%, #ffffff 100%);
}

.category-section {
  background: #fff7ed;
}

.rank-section {
  background: #ffffff;
}

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

.section-heading div {
  max-width: 780px;
}

.section-heading span,
.content-card span,
.collection-block-head span {
  color: var(--rose-600);
  background: var(--rose-50);
  border-color: var(--rose-100);
}

.section-heading h2,
.content-card h2,
.collection-block-head h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.section-heading p,
.collection-block-head p {
  margin: 10px 0 0;
  color: var(--slate-500);
}

.section-link {
  color: #ffffff;
  background: var(--gradient-hot);
  box-shadow: 0 12px 24px rgba(244, 63, 94, 0.2);
  white-space: nowrap;
}

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

.category-tile {
  min-height: 178px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.22), transparent 42%),
    #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.12);
  border-radius: 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  background: var(--rose-50);
  border-radius: 16px;
  font-size: 24px;
}

.category-tile strong,
.category-tile em,
.category-tile small {
  display: block;
}

.category-tile strong {
  font-size: 20px;
}

.category-tile em {
  margin-top: 8px;
  color: var(--slate-500);
  font-style: normal;
  font-size: 14px;
}

.category-tile small {
  margin-top: 12px;
  color: var(--rose-600);
  font-weight: 700;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 63, 94, 0.35);
  box-shadow: var(--shadow-card);
}

.movie-card.is-hidden {
  display: none;
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #fed7aa);
}

.poster-link img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-shine {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.55));
}

.play-mark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--rose-600);
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.25);
  font-size: 14px;
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  color: #ffffff;
  background: var(--gradient-hot);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(244, 63, 94, 0.35);
}

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

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--slate-500);
  font-size: 12px;
}

.movie-card h3 {
  min-height: 48px;
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--rose-600);
}

.movie-card p {
  min-height: 66px;
  margin: 0;
  color: var(--slate-500);
  font-size: 14px;
}

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag-row span,
.detail-tags span {
  padding: 5px 9px;
  color: var(--rose-600);
  background: var(--rose-50);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.movie-card-compact .movie-card-body {
  padding: 12px;
}

.movie-card-compact h3 {
  min-height: 44px;
  font-size: 15px;
}

.movie-card-compact p {
  min-height: 58px;
  font-size: 13px;
}

.page-hero {
  position: relative;
  color: #ffffff;
  background: var(--gradient-deep);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 0%, rgba(255, 255, 255, 0.23), transparent 30%),
    radial-gradient(circle at 12% 74%, rgba(249, 115, 22, 0.34), transparent 38%);
}

.compact-hero .container {
  position: relative;
  z-index: 1;
  padding: 86px 0 72px;
}

.compact-hero p {
  max-width: 780px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.quick-links a {
  padding: 9px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 700;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.sticky-toolbar {
  position: sticky;
  top: 86px;
  z-index: 20;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.06);
}

.local-search {
  display: grid;
  gap: 8px;
  width: min(520px, 100%);
  color: var(--slate-700);
  font-weight: 800;
}

.wide-search {
  width: min(760px, 100%);
}

.local-search input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
}

.collection-list {
  display: grid;
  gap: 30px;
}

.collection-block {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}

.collection-block-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.search-panel {
  width: min(720px, 100%);
  margin-top: 24px;
}

.search-panel input {
  flex: 1;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px 0 0 999px;
  font-size: 17px;
}

.search-panel button {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 0 999px 999px 0;
  font-size: 17px;
}

.search-fallback {
  margin-top: 34px;
}

.search-fallback.is-hidden {
  display: none;
}

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

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  min-height: 620px;
  padding: 74px 0;
}

.detail-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.32);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.42);
}

.detail-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--rose-600);
  background: #ffffff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.3);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

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

.detail-copy h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.player-section {
  background: #111827;
  padding: 46px 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  width: min(1040px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.main-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--rose-600);
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.player-overlay strong {
  font-size: 20px;
}

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

.detail-section {
  padding-top: 68px;
}

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

.detail-article,
.detail-aside {
  display: grid;
  gap: 22px;
}

.content-card,
.info-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 26px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.content-card p {
  margin: 16px 0 0;
  color: var(--slate-700);
  font-size: 17px;
}

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

.info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.info-card li {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-100);
}

.info-card li:last-child {
  border-bottom: 0;
}

.info-card span {
  color: var(--slate-500);
  font-size: 13px;
}

.info-card strong {
  color: var(--slate-900);
}

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

.prev-next a {
  padding: 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
}

.prev-next span {
  display: block;
  color: var(--rose-600);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 4px;
}

.prev-next strong {
  display: block;
}

.site-footer {
  color: #ffffff;
  background: var(--gradient-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

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

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

.site-footer a:hover {
  color: #ffe4e6;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

  .desktop-nav,
  .header-search {
    display: none;
  }

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

@media (max-width: 860px) {
  .hero-content,
  .detail-hero-inner,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 30px;
    padding-bottom: 170px;
  }

  .hero-poster,
  .detail-poster {
    max-width: 260px;
  }

  .hero-controls {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .section-heading,
  .collection-block-head,
  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-hero-inner {
    min-height: auto;
  }
}

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

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

  .hero-carousel,
  .hero-stage {
    min-height: 640px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 36px;
  }

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

  .hero-rail {
    max-width: 100%;
  }

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

  .prev-next {
    grid-template-columns: 1fr;
  }

  .search-panel input,
  .search-panel button {
    min-height: 52px;
  }
}
