:root {
  --bg: #f8fafc;
  --bg-soft: #eef2f7;
  --surface: #ffffff;
  --surface-dark: #0f172a;
  --surface-dark-2: #111827;
  --text: #1e293b;
  --muted: #64748b;
  --muted-dark: #cbd5e1;
  --line: #e2e8f0;
  --accent: #f59e0b;
  --accent-2: #fbbf24;
  --accent-dark: #92400e;
  --danger: #ef4444;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 52%, #f8fafc 100%);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.25);
}

.header-inner {
  max-width: var(--container);
  height: 68px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
  font-size: 15px;
}

.site-search-form {
  position: relative;
  margin-left: auto;
  width: min(360px, 36vw);
}

.site-search-form input {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  outline: none;
  border-radius: 999px;
  padding: 0 16px 0 44px;
  color: #ffffff;
  background: rgba(51, 65, 85, 0.82);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-search-form input::placeholder {
  color: #94a3b8;
}

.site-search-form input:focus {
  border-color: rgba(245, 158, 11, 0.88);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
  background: rgba(30, 41, 59, 0.98);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  color: #94a3b8;
  transform: translateY(-50%);
  font-size: 20px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  background: rgba(51, 65, 85, 0.88);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #ffffff;
}

.site-nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.nav-link {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 12px;
  color: #cbd5e1;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fbbf24;
  background: rgba(51, 65, 85, 0.95);
  transform: translateY(-1px);
}

main {
  min-height: 70vh;
}

.hero-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 24%, rgba(251, 191, 36, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.78) 44%, rgba(15, 23, 42, 0.26) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.88) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 84px 22px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 13px;
  border: 1px solid rgba(251, 191, 36, 0.38);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #92400e;
  background: #fef3c7;
  font-size: 12px;
  font-weight: 700;
}

.hero-actions,
.intro-actions,
.detail-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.btn,
.intro-actions a,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.intro-actions a:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.btn-primary,
.intro-actions a:first-child {
  color: #111827;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.35);
}

.btn-ghost,
.intro-actions a:last-child {
  color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.34);
  background: rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(12px);
}

.btn-ghost.light {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dot.is-active {
  width: 28px;
  background: var(--accent-2);
}

.page-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 44px 22px;
}

.home-intro {
  margin-top: -72px;
  position: relative;
  z-index: 8;
}

.intro-card {
  padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.intro-card h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.intro-card p {
  max-width: 840px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.section-heading p {
  margin: 8px 0 0;
  max-width: 720px;
  color: var(--muted);
}

.section-more {
  flex: 0 0 auto;
  color: var(--accent-dark);
  background: #fef3c7;
}

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

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

.movie-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.movie-card a {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111827;
}

.movie-card-wide .poster-wrap {
  aspect-ratio: 16 / 10;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.06);
  filter: brightness(0.92) saturate(1.08);
}

.poster-year,
.rank-badge {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  background: #fbbf24;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.poster-year {
  right: 12px;
}

.rank-badge {
  left: 12px;
}

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

.movie-meta {
  margin: 0 0 6px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.movie-card h3 {
  margin: 0;
  min-height: 48px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 850;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-line {
  margin: 9px 0 12px;
  min-height: 44px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-grid,
.category-overview-grid {
  display: grid;
  gap: 20px;
}

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

.category-tile,
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 191, 36, 0.38), transparent 34%),
    linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.2);
}

.category-tile strong {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 24px;
  margin-bottom: 12px;
}

.category-tile p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #dbeafe;
}

.category-glow {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.2);
}

.ranking-strip {
  border-radius: 24px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 40px 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.rank-num {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #111827;
  background: #fbbf24;
  font-weight: 900;
}

.rank-item img {
  width: 58px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
  background: #111827;
}

.rank-title {
  color: var(--text);
  font-weight: 850;
  line-height: 1.35;
}

.rank-meta {
  grid-column: 3;
  color: var(--muted);
  font-size: 12px;
  margin-top: -18px;
}

.subpage {
  padding-bottom: 34px;
}

.page-hero,
.detail-hero {
  max-width: var(--container);
  margin: 30px auto 0;
  padding: 54px 22px;
  border-radius: 0 0 34px 34px;
}

.page-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 8%, rgba(251, 191, 36, 0.32), transparent 30%),
    linear-gradient(135deg, #0f172a, #1e293b 55%, #111827);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #dbeafe;
  font-size: 18px;
}

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

.category-card {
  display: block;
  padding: 0;
  min-height: 0;
  background: #0f172a;
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  height: 158px;
  overflow: hidden;
}

.category-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.category-card-body {
  padding: 22px;
}

.category-card-body h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-card-body p {
  min-height: 56px;
  margin: 0 0 16px;
  color: #cbd5e1;
}

.category-card-body span {
  color: #fbbf24;
  font-weight: 800;
}

.filter-panel {
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.strong-filter {
  padding: 20px;
}

.filter-field {
  position: relative;
}

.filter-field span {
  position: absolute;
  left: 16px;
  top: 50%;
  color: var(--muted);
  transform: translateY(-50%);
  font-size: 22px;
}

.filter-input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  padding: 0 18px 0 46px;
  color: var(--text);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.filter-chips button {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 0 12px;
  color: var(--accent-dark);
  background: #fef3c7;
  font-size: 13px;
  font-weight: 800;
}

.empty-state {
  display: none;
  margin: 26px 0 0;
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
}

.empty-state.is-visible {
  display: block;
}

.detail-page {
  background:
    radial-gradient(circle at 50% 0, rgba(251, 191, 36, 0.12), transparent 32%),
    linear-gradient(180deg, #111827 0, #111827 460px, transparent 461px);
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: center;
  color: #ffffff;
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  background: #0f172a;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: #cbd5e1;
  font-size: 14px;
}

.breadcrumb a {
  color: #fbbf24;
}

.detail-info h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 790px;
  margin: 18px 0 0;
  color: #e2e8f0;
  font-size: 19px;
}

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

.detail-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(30, 41, 59, 0.78);
}

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

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #020617;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.24);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 45%, rgba(251, 191, 36, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.62));
  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;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.44);
  font-size: 32px;
  transform: translateX(3px);
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.content-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

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

.content-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.9;
}

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

.site-footer {
  margin-top: 28px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 42px 22px 28px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 34px;
}

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

.footer-inner p {
  max-width: 420px;
  margin: 0;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.9);
}

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 16px 22px 24px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

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

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

  .detail-hero {
    grid-template-columns: 260px 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    height: auto;
    min-height: 66px;
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-search-form {
    order: 3;
    width: 100%;
  }

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

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
  }

  .hero-slider {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero-control {
    display: none;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .detail-hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-logo {
    font-size: 21px;
  }

  .hero-slider {
    min-height: 620px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

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

  .page-section {
    padding: 32px 16px;
  }

  .page-hero,
  .detail-hero {
    margin-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-intro {
    margin-top: -42px;
  }

  .intro-card {
    padding: 24px;
  }

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

  .movie-card h3 {
    min-height: 0;
  }

  .movie-line {
    min-height: 0;
  }

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