:root {
  --orange-700: #c2410c;
  --orange-600: #ea580c;
  --amber-500: #f59e0b;
  --yellow-400: #facc15;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.16);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #fff7ed 0%, var(--slate-50) 34%, #ffffff 100%);
  color: var(--slate-800);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--orange-700), var(--orange-600), var(--amber-500));
  box-shadow: 0 12px 30px rgba(194, 65, 12, 0.25);
}

.header-inner {
  max-width: 1240px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

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

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

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  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.18);
  transform: translateY(-1px);
}

.header-search {
  position: relative;
  width: 280px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.header-search input,
.mobile-search input,
.big-search input,
.local-search input {
  border: 0;
  outline: 0;
}

.header-search input {
  width: 100%;
  min-width: 0;
  padding: 9px 10px 9px 14px;
  color: var(--white);
  background: transparent;
}

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

.header-search button,
.mobile-search button,
.big-search button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  color: var(--orange-700);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 14px;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 16px 20px 20px;
  background: rgba(194, 65, 12, 0.96);
  backdrop-filter: blur(12px);
}

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

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mobile-panel a {
  color: var(--white);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.mobile-search {
  display: flex;
  gap: 8px;
}

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

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.38), transparent 28%), var(--slate-950);
}

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

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(8px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.48;
}

.hero-backdrop::after,
.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 45%, rgba(234, 88, 12, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 620px;
  margin: 0 auto;
  padding: 72px 20px 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-heading p,
.ranking-head p,
.page-hero p {
  margin: 0 0 10px;
  color: var(--orange-600);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--yellow-400);
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.78;
}

.hero-tags,
.tag-row,
.genre-cloud,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span,
.genre-cloud span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

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

.primary-button,
.ghost-button,
.wide-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--amber-500));
  padding: 14px 22px;
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.28);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  padding: 14px 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

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

.hero-poster span,
.poster-play,
.player-button {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.hero-poster span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  color: var(--orange-700);
  background: var(--white);
  font-size: 24px;
  box-shadow: var(--shadow-card);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 36px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

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

.section-panel {
  max-width: 1240px;
  margin: 34px auto;
  padding: 0 20px;
}

.intro-panel {
  margin-top: 54px;
}

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

.section-heading.centered {
  display: block;
  text-align: center;
  max-width: 840px;
  margin: 0 auto 24px;
}

.section-heading.compact {
  display: block;
}

.section-heading h2,
.ranking-head h2,
.side-panel h2,
.content-card h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.section-heading span,
.section-heading a,
.page-hero span {
  color: var(--slate-600);
  line-height: 1.72;
}

.section-heading a {
  color: var(--orange-600);
  font-weight: 900;
}

.big-search {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.big-search input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border-radius: 999px;
  background: var(--slate-50);
}

.big-search button {
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--amber-500));
  padding: 14px 24px;
}

.quick-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.quick-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--orange-700);
  background: #ffedd5;
  font-weight: 800;
}

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

.category-tile,
.category-summary-card a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.category-tile img {
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.86) 100%);
}

.category-tile strong,
.category-tile em {
  position: absolute;
  left: 18px;
  right: 18px;
  color: var(--white);
}

.category-tile strong {
  bottom: 54px;
  font-size: 22px;
}

.category-tile em {
  bottom: 18px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

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

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

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

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

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

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--slate-100);
}

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

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

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  color: var(--orange-700);
  background: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  box-shadow: var(--shadow-card);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-600), var(--amber-500));
  font-weight: 900;
  box-shadow: var(--shadow-card);
}

.movie-info {
  padding: 15px;
}

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

.movie-info h3 {
  margin: 0 0 8px;
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.35;
}

.movie-info h3 a:hover {
  color: var(--orange-600);
}

.movie-info p {
  margin: 0 0 12px;
  min-height: 42px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.55;
}

.tag-row span,
.genre-cloud span,
.detail-meta span {
  color: var(--orange-700);
  background: #ffedd5;
}

.tag-row.large span {
  min-height: 34px;
  padding: 7px 12px;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-btn {
  border: 0;
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--slate-700);
  background: var(--slate-100);
  cursor: pointer;
  font-weight: 800;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--amber-500));
}

.local-search {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate-600);
  font-weight: 800;
  white-space: nowrap;
}

.local-search input {
  width: 260px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--slate-100);
}

.ranking-box,
.side-panel,
.content-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.ranking-box,
.side-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.ranking-box ol {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 10px;
}

.ranking-box li a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: var(--slate-50);
}

.ranking-box li span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange-600);
  font-weight: 900;
}

.ranking-box li strong,
.compact-movie span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-box li em {
  grid-column: 2;
  color: var(--slate-500);
  font-style: normal;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wide-link {
  width: 100%;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--amber-500));
  padding: 13px 16px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  max-width: 1240px;
  margin: 36px auto 0;
  padding: 46px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--slate-950), #7c2d12 52%, var(--orange-600));
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 58px);
}

.page-hero span {
  display: block;
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
}

.featured-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.featured-card img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.featured-card span {
  margin: 0 0 6px;
  font-size: 13px;
}

.featured-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.featured-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

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

.category-summary-card a {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
}

.category-summary-card img {
  height: 180px;
  object-fit: cover;
}

.category-summary-card div {
  padding: 22px;
}

.category-summary-card span {
  color: var(--orange-600);
  font-weight: 900;
}

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

.category-summary-card p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.7;
}

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

.compact-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.compact-movie {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: var(--slate-50);
  font-weight: 800;
}

.compact-movie img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.inline-search {
  margin: 28px 0 0;
  max-width: 680px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(6px) saturate(1.08);
  transform: scale(1.06);
  opacity: 0.55;
}

.detail-wrap {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 20px 58px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: var(--yellow-400);
}

.detail-intro {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
}

.detail-one-line {
  max-width: 820px;
  margin: 18px 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.75;
}

.detail-meta span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.detail-copy .primary-button {
  margin-top: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--slate-950);
  box-shadow: var(--shadow-soft);
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--slate-950);
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  cursor: pointer;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.72));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-button {
  width: 86px;
  height: 86px;
  color: var(--orange-700);
  background: var(--white);
  font-size: 34px;
  box-shadow: var(--shadow-soft);
}

.player-overlay strong {
  font-size: 24px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

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

.content-card {
  padding: 28px;
}

.content-card h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

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

.meta-card dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0 0 18px;
}

.meta-card dt {
  color: var(--slate-500);
  font-weight: 800;
}

.meta-card dd {
  margin: 0;
  color: var(--slate-800);
  font-weight: 800;
}

.meta-card a {
  color: var(--orange-600);
}

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

.site-footer {
  margin-top: 60px;
  padding: 38px 20px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--slate-950);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .header-search {
    width: 220px;
  }

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

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

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

  .ranking-box,
  .side-panel {
    position: static;
  }

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

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

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 52px;
  }

  .hero-poster {
    max-width: 280px;
    transform: none;
  }

  .category-hero,
  .detail-intro,
  .category-summary-card a {
    grid-template-columns: 1fr;
  }

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

  .filter-bar,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .local-search {
    align-items: stretch;
    flex-direction: column;
  }

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

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

@media (max-width: 560px) {
  .header-inner {
    height: 62px;
    padding: 0 14px;
  }

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

  .hero-carousel,
  .hero-content {
    min-height: 650px;
  }

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

  .section-panel,
  .detail-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .page-hero {
    margin-left: 14px;
    margin-right: 14px;
    padding: 30px 22px;
    border-radius: 24px;
  }

  .big-search {
    flex-direction: column;
    border-radius: 22px;
  }

  .big-search input,
  .big-search button {
    width: 100%;
  }

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

  .movie-info p {
    min-height: auto;
  }

  .player-button {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

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