:root {
  --bg: #fff7fb;
  --bg-soft: #f8fbff;
  --panel: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(31, 41, 55, 0.08);
  --pink: #ec4899;
  --red: #ef4444;
  --orange: #f97316;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --purple: #8b5cf6;
  --shadow: 0 24px 70px rgba(236, 72, 153, 0.16);
  --shadow-soft: 0 16px 40px rgba(31, 41, 55, 0.10);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, #fff1f7 0%, #ffffff 45%, #eef8ff 100%);
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #be123c;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--red), var(--orange));
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.34);
}

.brand-name {
  font-size: 22px;
  letter-spacing: -0.03em;
}

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

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: #4b5563;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #e11d48;
  background: #fff1f2;
  transform: translateY(-1px);
}

.header-search input,
.mobile-nav input,
.section-search,
.search-card input {
  border: 1px solid rgba(236, 72, 153, 0.18);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  outline: none;
  padding: 12px 16px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.08);
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.header-search input:focus,
.mobile-nav input:focus,
.section-search:focus,
.search-card input:focus {
  border-color: rgba(236, 72, 153, 0.68);
  box-shadow: 0 16px 42px rgba(236, 72, 153, 0.18);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff1f2;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  background: #e11d48;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 16px;
  border-top: 1px solid var(--line);
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  color: #fff;
  background: #111827;
}

.hero-gradient,
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-gradient {
  background: linear-gradient(120deg, #ec4899 0%, #ef4444 42%, #f59e0b 72%, #38bdf8 100%);
  background-size: 240% 240%;
  animation: gradientMove 10s ease infinite;
}

.hero::before {
  z-index: 1;
  background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.35), transparent 24%), radial-gradient(circle at 18% 78%, rgba(59, 130, 246, 0.35), transparent 30%), rgba(0, 0, 0, 0.18);
}

.hero::after {
  z-index: 2;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.50), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 610px;
  padding: 58px 20px 94px;
}

.hero-slide {
  display: none;
  min-height: 510px;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: 50px;
}

.hero-slide.is-active {
  display: grid;
  animation: fadeRise 0.65s ease both;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fb7185;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.hero h1 {
  margin: 24px 0 8px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.12;
}

.hero p {
  margin: 0 0 28px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

.primary-button {
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--red));
  box-shadow: 0 18px 38px rgba(225, 29, 72, 0.32);
}

.ghost-button {
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.ghost-button.dark {
  color: #e11d48;
  background: #fff;
  border-color: rgba(236, 72, 153, 0.22);
}

.primary-button:hover,
.ghost-button:hover,
.mini-button:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 34px;
  isolation: isolate;
  transform: rotate(2deg);
  transition: transform 0.35s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-6px);
}

.hero-poster img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.38);
}

.poster-glow {
  position: absolute;
  inset: 10%;
  z-index: -1;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.38);
  filter: blur(34px);
}

.hero-dots {
  position: absolute;
  left: 20px;
  bottom: 42px;
  display: flex;
  gap: 10px;
  z-index: 4;
}

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

.hero-dot.is-active {
  background: #fff;
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.36);
}

.hero-wave {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 92px;
  background: linear-gradient(180deg, transparent, #fff7fb 88%);
}

.quick-panel,
.content-section,
.page-hero,
.detail-layout,
.breadcrumb {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.quick-panel {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
  margin-top: -46px;
  position: relative;
  z-index: 7;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 130px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quick-card h2 {
  margin: 0 0 6px;
  font-size: 21px;
}

.quick-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.quick-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--red));
  box-shadow: 0 14px 28px rgba(236, 72, 153, 0.24);
}

.search-card {
  align-items: stretch;
}

.search-card input {
  align-self: center;
  margin-left: auto;
}

.content-section {
  margin-top: 72px;
}

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

.section-heading.center {
  justify-content: center;
  text-align: center;
}

.section-heading p {
  margin: 0 0 7px;
  color: #e11d48;
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--pink), var(--red), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-link {
  color: #e11d48;
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.86);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 62px rgba(236, 72, 153, 0.18);
}

.movie-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111827;
}

.movie-thumb img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.movie-card:hover .movie-thumb img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.movie-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62));
  opacity: 0.75;
}

.play-icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(225, 29, 72, 0.88);
  transform: scale(0.86);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-icon,
.rank-cover:hover .play-icon {
  opacity: 1;
  transform: scale(1);
}

.badge-year {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.34);
}

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

.card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.card-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
}

.card-meta span:not(:last-child)::after,
.detail-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: #fda4af;
}

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

.movie-card h3 a:hover,
.rank-info h3 a:hover {
  color: #e11d48;
}

.movie-card p,
.rank-info p,
.detail-card p,
.side-card p,
.page-hero p {
  color: var(--muted);
  line-height: 1.78;
}

.movie-card p {
  min-height: 76px;
  margin: 0 0 12px;
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  display: inline-flex;
  color: #be123c;
  background: #ffe4e6;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

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

.category-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 28px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(236, 72, 153, 0.22);
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(17, 24, 39, 0.82));
}

.category-card span {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.62;
}

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

.category-card.large {
  min-height: 280px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 54px 122px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.rank-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.rank-cover {
  overflow: hidden;
  border-radius: 18px;
}

.rank-cover img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rank-info h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.rank-info p {
  margin: 0 0 8px;
}

.mini-button {
  min-height: 40px;
  padding: 0 18px;
  color: #e11d48;
  background: #fff1f2;
}

.movie-card-wide {
  display: grid;
  grid-template-columns: 42% 1fr;
}

.wide-thumb img {
  aspect-ratio: 4 / 3;
}

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

.page-hero {
  margin-top: 38px;
  padding-top: 74px;
  padding-bottom: 74px;
  border-radius: 34px;
  color: #fff;
  background: radial-gradient(circle at 88% 15%, rgba(255, 255, 255, 0.32), transparent 26%), linear-gradient(135deg, #ec4899, #ef4444 52%, #f97316);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 20px 0 14px;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.05em;
}

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

.page-hero .eyebrow {
  color: #e11d48;
}

.breadcrumb {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

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

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

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

.player-shell,
.detail-card,
.side-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.player-shell {
  overflow: hidden;
}

.player-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
  z-index: 1;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #020617;
}

.player-cover img {
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.08), rgba(2, 6, 23, 0.68));
}

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

.play-badge {
  position: absolute;
  inset: 0;
  z-index: 4;
  margin: auto;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 36px;
  background: linear-gradient(135deg, var(--pink), var(--red));
  box-shadow: 0 24px 54px rgba(225, 29, 72, 0.42);
}

.player-message {
  margin: 0;
  padding: 12px 18px;
  min-height: 0;
  color: #be123c;
  font-weight: 800;
}

.player-message:empty {
  display: none;
}

.detail-card {
  margin-top: 22px;
  padding: 28px;
}

.detail-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.detail-title-row .eyebrow {
  color: #e11d48;
  background: #fff1f2;
  border-color: rgba(236, 72, 153, 0.18);
}

.detail-card h1 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.detail-card h2,
.side-card h2 {
  margin: 26px 0 12px;
  font-size: 24px;
}

.detail-card p {
  font-size: 17px;
  margin: 0 0 12px;
}

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

.compact-button {
  min-width: 108px;
  min-height: 42px;
  padding: 0 18px;
}

.detail-side {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 18px;
}

.poster-side img {
  border-radius: 22px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.poster-side h2 {
  margin-top: 18px;
}

.side-recommend {
  display: grid;
  gap: 12px;
}

.side-recommend .movie-card-wide {
  grid-template-columns: 106px 1fr;
  border-radius: 18px;
  box-shadow: none;
  border: 1px solid var(--line);
}

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

.side-recommend .movie-card h3 {
  font-size: 16px;
}

.side-recommend .movie-card p,
.side-recommend .tag-row {
  display: none;
}

.site-footer {
  margin-top: 90px;
  padding: 42px 20px 34px;
  background: #111827;
  color: rgba(255, 255, 255, 0.84);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

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

.copyright {
  max-width: 1280px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.empty-tip {
  text-align: center;
  margin: 42px 0 0;
  color: var(--muted);
  font-weight: 800;
}

[hidden] {
  display: none !important;
}

@keyframes gradientMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

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

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

  .quick-panel {
    grid-template-columns: 1fr;
  }

  .rank-list.compact {
    grid-template-columns: 1fr;
  }

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

  .detail-side {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header-inner {
    gap: 12px;
  }

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

  .hero-slide.is-active {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 30px;
  }

  .hero-inner {
    padding-top: 34px;
  }

  .hero-poster {
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-dots {
    position: static;
    margin-top: 24px;
  }

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

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

  .rank-item {
    grid-template-columns: 42px 92px minmax(0, 1fr);
  }

  .rank-item .mini-button {
    grid-column: 2 / -1;
    justify-self: start;
  }

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

  .wide-thumb img {
    aspect-ratio: 16 / 10;
  }

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

  .search-card input {
    width: 100%;
    margin-left: 0;
  }

  .section-heading,
  .detail-title-row,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .section-search {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .movie-grid,
  .all-grid,
  .wide-section .movie-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 38px 78px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .rank-number {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 16px;
  }

  .detail-card,
  .side-card {
    padding: 18px;
  }

  .play-badge {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
