* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --rose: #f43f5e;
  --rose-dark: #e11d48;
  --pink: #ec4899;
  --orange: #f97316;
  --amber: #f59e0b;
  --slate: #0f172a;
  --muted: #64748b;
  --soft: #fff1f2;
  --border: #ffe4e6;
  --surface: #ffffff;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.65;
}

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

img {
  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: 80;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--orange));
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.28);
}

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

.logo-text strong {
  font-size: 22px;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--rose), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

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

.nav-link,
.mobile-nav-link {
  border: 0;
  background: transparent;
  color: #475569;
  cursor: pointer;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--rose-dark);
  background: #fff1f2;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 210px;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.dropdown-panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 12px;
  color: #475569;
  font-weight: 700;
}

.dropdown-panel a:hover {
  background: #fff1f2;
  color: var(--rose-dark);
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search,
.mobile-search,
.large-search {
  display: flex;
  align-items: stretch;
}

.header-search input,
.mobile-search input,
.large-search input {
  border: 1px solid #fecdd3;
  border-right: 0;
  border-radius: 999px 0 0 999px;
  padding: 10px 16px;
  outline: 0;
  min-width: 245px;
  color: #111827;
  background: #ffffff;
}

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

.header-search button,
.mobile-search button,
.large-search button {
  border: 0;
  color: #ffffff;
  padding: 0 18px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--rose), var(--pink));
  cursor: pointer;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff1f2;
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--rose-dark);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid #ffe4e6;
  padding: 16px;
  background: #ffffff;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.mobile-nav-link {
  display: block;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(135deg, #be123c 0%, #db2777 48%, #f97316 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(136, 19, 55, 0.86), rgba(219, 39, 119, 0.72), rgba(249, 115, 22, 0.72));
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
  color: #ffffff;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.hero h2,
.page-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-movie-title {
  margin-top: 16px !important;
  font-size: clamp(28px, 4vw, 46px) !important;
  color: #ffe4e6;
}

.hero p,
.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.hero-tags span,
.card-tags span,
.detail-tags a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  color: #9f1239;
  background: #ffe4e6;
  font-size: 12px;
  font-weight: 800;
}

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

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

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose), var(--pink), var(--orange));
  box-shadow: 0 14px 30px rgba(244, 63, 94, 0.28);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.42);
  transform: rotate(2deg);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(244, 63, 94, 0.88);
  font-weight: 900;
}

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

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

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

.quick-search-section {
  position: relative;
  z-index: 5;
  margin-top: -44px;
}

.quick-search-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(244, 63, 94, 0.12);
}

.quick-search-card h2,
.quick-search-card p {
  margin: 0;
}

.quick-search-card p {
  color: var(--muted);
}

.large-search input {
  width: 100%;
  min-width: 0;
  padding: 15px 20px;
}

.large-search button {
  padding: 0 28px;
}

.section {
  padding: 76px 0;
}

.section-soft {
  background: linear-gradient(180deg, #fff7f7, #ffffff);
}

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

.section-heading span,
.rank-copy span {
  color: var(--rose-dark);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
}

.section-heading h2,
.rank-copy h2,
.story-block h2,
.detail-side h2,
.rank-sidebar h2 {
  margin: 6px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

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

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

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

.category-tile {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  overflow: hidden;
  border-radius: 24px;
  padding: 22px;
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.24);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.category-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.9), rgba(236, 72, 153, 0.82), rgba(249, 115, 22, 0.72));
}

.category-tile strong,
.category-tile small,
.category-icon {
  position: relative;
  z-index: 2;
}

.category-icon {
  font-size: 34px;
}

.category-tile strong {
  font-size: 23px;
  line-height: 1.15;
}

.category-tile small {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
  border-color: rgba(244, 63, 94, 0.28);
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1f2, #ffedd5);
}

.card-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.72));
}

.card-category,
.rank-badge {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.card-category {
  left: 12px;
  bottom: 12px;
  padding: 5px 10px;
  background: rgba(244, 63, 94, 0.92);
}

.rank-badge {
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.32);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: var(--rose-dark);
}

.card-meta,
.card-desc {
  margin: 8px 0 0;
}

.card-meta {
  color: #e11d48;
  font-size: 13px;
  font-weight: 800;
}

.card-desc {
  color: var(--muted);
  font-size: 14px;
}

.card-tags {
  margin-top: 12px;
}

.section-rank-home {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 10%, rgba(244, 63, 94, 0.38), transparent 28%),
    linear-gradient(135deg, #1e1b4b 0%, #881337 46%, #fb7185 100%);
}

.rank-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: center;
}

.rank-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 48px 64px minmax(0, 1fr) 54px;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.ranking-number {
  color: var(--rose-dark);
  font-size: 19px;
  font-weight: 900;
  text-align: center;
}

.ranking-item img {
  width: 64px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
  background: #fff1f2;
}

.ranking-info {
  min-width: 0;
}

.ranking-info strong,
.ranking-info small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-info small {
  margin-top: 4px;
  color: var(--muted);
}

.ranking-score {
  justify-self: end;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  border-radius: 999px;
  padding: 4px 9px;
  font-weight: 900;
}

.page-hero {
  padding: 96px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #be123c, #db2777, #f97316);
}

.page-hero-small {
  min-height: 300px;
  display: flex;
  align-items: center;
}

.category-page-hero .large-search {
  margin-top: 28px;
  max-width: 820px;
}

.no-results {
  display: none;
  margin-top: 28px;
  padding: 18px;
  border-radius: 16px;
  background: #fff1f2;
  color: var(--rose-dark);
  text-align: center;
  font-weight: 900;
}

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

.ranking-list-large .ranking-item {
  border: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.rank-sidebar,
.detail-side {
  position: sticky;
  top: 96px;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.side-card-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

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

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(136, 19, 55, 0.82), rgba(244, 63, 94, 0.58));
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: blur(3px);
  transform: scale(1.04);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 14px;
}

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

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

.detail-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.detail-one-line {
  margin: 20px 0 0;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-weight: 800;
}

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

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

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

.detail-main {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(244, 63, 94, 0.4), rgba(2, 6, 23, 0.72));
  cursor: pointer;
}

.play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--orange));
  box-shadow: 0 18px 40px rgba(244, 63, 94, 0.38);
  font-size: 34px;
}

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

.story-block {
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.story-block p {
  color: #334155;
  font-size: 17px;
}

.movie-card-compact .card-body h3 {
  font-size: 16px;
}

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

.site-footer {
  padding: 54px 0;
  color: #f8fafc;
  background: #0f172a;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.footer-logo {
  color: #ffffff;
  font-size: 24px;
}

.footer-inner p {
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-weight: 700;
}

.footer-links a:hover {
  background: rgba(244, 63, 94, 0.58);
  color: #ffffff;
}

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

  .menu-toggle {
    display: block;
  }

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

  .hero-content,
  .quick-search-card,
  .rank-layout,
  .detail-layout,
  .rank-page-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 74px 0 96px;
  }

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

  .detail-side,
  .rank-sidebar {
    position: static;
  }

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

@media (max-width: 860px) {
  .category-grid,
  .category-grid-large,
  .movie-grid,
  .featured-grid,
  .all-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-intro {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 20px;
  }

  .section {
    padding: 54px 0;
  }
}

@media (max-width: 640px) {
  .header-inner {
    height: 64px;
  }

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

  .logo-text small {
    display: none;
  }

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

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

  .hero-movie-title {
    font-size: 28px !important;
  }

  .hero-content {
    gap: 28px;
  }

  .quick-search-section {
    margin-top: -22px;
  }

  .quick-search-card {
    padding: 18px;
  }

  .large-search,
  .mobile-search {
    display: grid;
    grid-template-columns: 1fr;
  }

  .large-search input,
  .mobile-search input {
    border-right: 1px solid #fecdd3;
    border-radius: 18px 18px 0 0;
  }

  .large-search button,
  .mobile-search button {
    min-height: 46px;
    border-radius: 0 0 18px 18px;
  }

  .category-grid,
  .category-grid-large,
  .movie-grid,
  .featured-grid,
  .all-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

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

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

  .ranking-item {
    grid-template-columns: 38px 54px minmax(0, 1fr);
  }

  .ranking-score {
    display: none;
  }
}
