:root {
  --primary-50: #f0f7ff;
  --primary-600: #006fc6;
  --primary-700: #0158a0;
  --primary-800: #064b84;
  --primary-900: #0b3f6e;
  --accent-300: #5feacf;
  --accent-500: #14b8a2;
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
  --white: #ffffff;
  --shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.09);
  --radius: 18px;
}

* {
  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: var(--neutral-50);
  color: var(--neutral-900);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.22);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand {
  font-size: 21px;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--primary-900);
  background: var(--accent-300);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
}

.main-nav a,
.mobile-nav a {
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent-300);
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

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

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.home-container,
.page-shell {
  padding: 32px 0 56px;
}

.hero {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.hero-stage {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 24px;
  background: radial-gradient(circle at 25% 25%, rgba(20, 184, 162, 0.28), transparent 30%), linear-gradient(135deg, var(--primary-900), var(--neutral-900));
  box-shadow: var(--shadow);
}

.hero-stage h1 {
  position: absolute;
  top: 34px;
  left: 44px;
  z-index: 5;
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(6%);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.18)), linear-gradient(0deg, rgba(15, 23, 42, 0.82), transparent 46%);
}

.hero-content {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 54px;
  max-width: 720px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-300);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h2,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  line-height: 1.15;
  font-weight: 850;
}

.hero-content h2 {
  max-width: 780px;
  font-size: clamp(34px, 6vw, 64px);
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-tags,
.hero-actions,
.hero-cats,
.tag-list,
.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

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

.hero-tags span,
.tag-list a,
.pill-cloud a {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-actions {
  margin-top: 26px;
}

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

.button-primary,
.global-search button {
  color: var(--white);
  background: var(--primary-600);
  box-shadow: 0 12px 24px rgba(0, 111, 198, 0.28);
}

.button-primary:hover,
.global-search button:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.hero-cats {
  margin-top: 22px;
}

.hero-cats a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  opacity: 0.9;
}

.hero-cats a:hover {
  color: var(--accent-300);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.hero:hover .hero-arrow {
  opacity: 1;
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.hero-strip a {
  position: relative;
  min-height: 96px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-800), var(--neutral-900));
  box-shadow: var(--shadow-soft);
}

.hero-strip img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.hero-strip span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-strip a:hover img {
  opacity: 0.9;
  transform: scale(1.08);
}

.search-panel,
.section,
.page-hero,
.detail-hero,
.content-section,
.player-section {
  margin-bottom: 36px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.search-panel h2,
.section-head h2,
.content-section h2,
.mini-rank h2,
.site-footer h2 {
  margin: 0;
}

.search-panel p {
  margin: 6px 0 0;
  color: var(--neutral-600);
}

.global-search {
  display: flex;
  gap: 10px;
}

.global-search input,
.local-filter input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--neutral-900);
  outline: 0;
  background: var(--neutral-50);
}

.global-search input:focus,
.local-filter input:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 4px rgba(0, 111, 198, 0.12);
}

.search-results {
  grid-column: 1 / -1;
  display: none;
  border-top: 1px solid var(--neutral-200);
  padding-top: 16px;
}

.search-results.is-open {
  display: grid;
  gap: 10px;
}

.search-result-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--neutral-50);
}

.search-result-item strong {
  color: var(--primary-700);
}

.search-result-item span {
  color: var(--neutral-600);
  font-size: 14px;
}

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

.section-head h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.text-link {
  color: var(--primary-600);
  font-weight: 800;
}

.text-link:hover {
  color: var(--primary-700);
}

.soft-section {
  padding: 30px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

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

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

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(15, 23, 42, 0.16);
}

.poster-link,
.poster-wrap {
  display: block;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(95, 234, 207, 0.28), transparent 32%), linear-gradient(135deg, var(--primary-800), var(--neutral-900));
}

.poster-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.poster-fallback,
.detail-poster span,
.rank-cover span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.poster-shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 58%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.play-badge {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.movie-card:hover .play-badge {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.duration-badge,
.category-badge {
  position: absolute;
  z-index: 5;
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.duration-badge {
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.7);
}

.category-badge {
  top: 10px;
  left: 10px;
  background: var(--accent-500);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--neutral-900);
  font-size: 17px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body h3 a:hover {
  color: var(--primary-600);
}

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

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--neutral-600);
  font-size: 13px;
}

.rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scrollbar-width: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail .movie-card {
  flex: 0 0 280px;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 26px;
  padding: 34px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-900), var(--neutral-900));
  box-shadow: var(--shadow);
}

.split-showcase h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.split-showcase p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.pill-cloud {
  margin-top: 22px;
}

.pill-cloud a,
.tag-list a {
  background: rgba(255, 255, 255, 0.13);
}

.pill-cloud a:hover,
.tag-list a:hover {
  background: var(--accent-500);
  color: var(--white);
}

.mini-rank {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.mini-rank a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-rank a:last-child {
  border-bottom: 0;
}

.mini-rank span {
  color: var(--accent-300);
  font-weight: 900;
}

.mini-rank strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-rank em {
  color: var(--accent-300);
  font-style: normal;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 42px;
  color: var(--white);
  background: radial-gradient(circle at 20% 0%, rgba(95, 234, 207, 0.28), transparent 36%), linear-gradient(135deg, var(--primary-900), var(--neutral-900));
  box-shadow: var(--shadow);
}

.compact-hero h1,
.category-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.category-tile {
  display: grid;
  gap: 16px;
  min-height: 230px;
  padding: 22px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.category-tile > a {
  display: grid;
  gap: 10px;
}

.category-tile span {
  color: var(--primary-600);
  font-size: 22px;
  font-weight: 900;
}

.category-tile strong {
  color: var(--neutral-700);
  font-weight: 600;
}

.category-tile div {
  display: grid;
  gap: 6px;
  align-self: end;
}

.category-tile div a {
  color: var(--neutral-600);
  font-size: 14px;
}

.category-tile div a:hover {
  color: var(--primary-600);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--neutral-600);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--primary-600);
}

.detail-hero {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  border-radius: 24px;
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(20, 184, 162, 0.32), transparent 32%), linear-gradient(135deg, var(--primary-900), var(--neutral-900));
  box-shadow: var(--shadow);
}

.detail-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-800), var(--neutral-900));
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.3);
}

.detail-poster img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  align-self: center;
}

.detail-info h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
}

.lead-text {
  max-width: 800px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.info-grid span {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.tag-list a {
  color: var(--white);
}

.player-section {
  border-radius: 24px;
  background: var(--neutral-900);
  box-shadow: var(--shadow);
}

.video-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 35%, rgba(20, 184, 162, 0.26), transparent 28%), var(--neutral-900);
}

.video-box video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.18));
  cursor: pointer;
}

.player-start.is-hidden {
  display: none;
}

.player-start span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  color: var(--primary-900);
  background: var(--accent-300);
  font-size: 38px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}

.player-start strong {
  font-size: 22px;
}

.content-section {
  padding: 28px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.content-section h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.content-section p {
  margin: 0;
  color: var(--neutral-700);
  font-size: 17px;
}

.rank-list {
  display: grid;
  gap: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 66px 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.rank-number {
  color: var(--primary-600);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.rank-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-800), var(--neutral-900));
}

.rank-cover img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-info h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.rank-info h3 a:hover {
  color: var(--primary-600);
}

.rank-info p {
  margin: 0 0 8px;
  color: var(--neutral-600);
}

.rank-info div {
  color: var(--neutral-600);
  font-size: 14px;
}

.site-footer {
  color: var(--neutral-300, #cbd5e1);
  background: var(--neutral-900);
}

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

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 18px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #cbd5e1;
}

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

.site-footer a:hover {
  color: var(--accent-300);
}

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

[data-card].is-hidden {
  display: none;
}

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

  .hero-stage {
    height: 520px;
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-stage {
    height: 520px;
  }

  .hero-stage h1,
  .hero-content {
    left: 24px;
    right: 24px;
  }

  .hero-strip,
  .movie-grid,
  .movie-grid-wide,
  .category-grid,
  .footer-grid,
  .search-panel,
  .split-showcase,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-strip a {
    flex: 0 0 220px;
  }

  .detail-poster {
    width: min(300px, 100%);
  }

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

  .rank-row {
    grid-template-columns: 44px 110px minmax(0, 1fr);
  }
}

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

  .home-container,
  .page-shell {
    padding-top: 22px;
  }

  .hero-stage {
    height: 500px;
    border-radius: 18px;
  }

  .hero-stage h1 {
    top: 18px;
    font-size: 13px;
  }

  .hero-content {
    bottom: 38px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero-arrow {
    display: none;
  }

  .search-panel,
  .soft-section,
  .page-hero,
  .detail-hero,
  .content-section {
    padding: 20px;
    border-radius: 18px;
  }

  .global-search {
    flex-direction: column;
  }

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

  .info-grid,
  .rank-row {
    grid-template-columns: 1fr;
  }

  .rank-cover {
    width: 100%;
  }
}
