:root {
  --bg: #fff7fb;
  --surface: #ffffff;
  --surface-soft: #fff1f7;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #ec4899;
  --primary-deep: #be185d;
  --rose: #fb7185;
  --line: rgba(236, 72, 153, 0.18);
  --shadow: 0 18px 48px rgba(190, 24, 93, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 113, 133, 0.20), transparent 28rem),
    linear-gradient(180deg, #fff7fb 0%, #ffffff 45%, #fff7fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

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

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

.header-inner {
  width: min(1240px, calc(100% - 28px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--rose));
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.34);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--primary), var(--rose), var(--primary-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

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

.nav-link {
  position: relative;
  color: #374151;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--rose));
  transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary-deep);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nav-search input {
  width: 180px;
  height: 40px;
  border: 2px solid rgba(236, 72, 153, 0.18);
  border-radius: 999px;
  padding: 0 15px;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus {
  border-color: rgba(236, 72, 153, 0.55);
  box-shadow: 0 0 0 5px rgba(236, 72, 153, 0.10);
}

.nav-search button,
.primary-btn,
.home-search button {
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--rose));
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button:hover,
.primary-btn:hover,
.home-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(236, 72, 153, 0.34);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: none;
  color: var(--primary-deep);
  background: rgba(236, 72, 153, 0.10);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  cursor: pointer;
}

.hero-carousel {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8, #ffe4e6);
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.50), rgba(17, 24, 39, 0.16)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.75), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  max-width: 1180px;
}

.hero-content h1 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-content h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
}

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

.hero-kicker,
.hero-tags,
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-kicker {
  margin-bottom: 18px;
}

.hero-kicker span,
.hero-tags span {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

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

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

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease;
}

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

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

.hero-dot {
  width: 38px;
  height: 6px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.2s ease, background 0.2s ease;
}

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

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

.home-search {
  display: flex;
  align-items: end;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(236, 72, 153, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.home-search label {
  display: grid;
  gap: 8px;
  flex: 1;
  color: var(--muted);
  font-weight: 800;
}

.home-search input {
  width: 100%;
  height: 52px;
  border: 2px solid rgba(236, 72, 153, 0.18);
  border-radius: 16px;
  padding: 0 18px;
  outline: none;
}

.content-section {
  padding: 72px 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

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

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

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

.movie-card {
  min-width: 0;
}

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

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(236, 72, 153, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(190, 24, 93, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.30);
  box-shadow: 0 20px 42px rgba(190, 24, 93, 0.18);
}

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe4e6, #fdf2f8);
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.type-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(236, 72, 153, 0.92);
  backdrop-filter: blur(8px);
}

.rank-badge {
  left: auto;
  right: 10px;
  background: rgba(17, 24, 39, 0.78);
}

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

.movie-card-body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
  color: #111827;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.movie-meta {
  margin-top: 10px;
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag-row span,
.detail-tags span {
  border-radius: 999px;
  padding: 4px 8px;
  color: #9d174d;
  font-size: 12px;
  font-weight: 700;
  background: #fce7f3;
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.section-more a {
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--primary-deep);
  font-weight: 900;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(190, 24, 93, 0.10);
}

.category-section {
  background: linear-gradient(135deg, rgba(253, 242, 248, 0.90), rgba(255, 241, 242, 0.90));
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(236, 72, 153, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(190, 24, 93, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(190, 24, 93, 0.16);
}

.category-glow {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.26), transparent 68%);
}

.category-tile h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 950;
}

.category-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.category-samples {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  padding: 78px 0 64px;
  background:
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.22), transparent 26rem),
    linear-gradient(135deg, #fff1f2, #fdf2f8);
}

.soft-hero,
.category-hero,
.rank-hero {
  border-bottom: 1px solid var(--line);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(236, 72, 153, 0.12);
}

.page-hero h1,
.page-hero-copy h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(4, minmax(140px, 0.6fr));
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 34px rgba(190, 24, 93, 0.09);
}

.search-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.search-field input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(236, 72, 153, 0.24);
  border-radius: 14px;
  padding: 0 13px;
  outline: none;
  color: #374151;
  background: #ffffff;
}

.filter-panel select {
  align-self: end;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(190, 24, 93, 0.10);
}

.category-overview-head h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 950;
}

.category-overview-head p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.category-overview-head a {
  display: inline-flex;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--rose));
}

.mini-poster-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.mini-poster-row a {
  display: grid;
  gap: 8px;
  color: #374151;
  font-size: 12px;
  font-weight: 800;
}

.mini-poster-row img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: #fce7f3;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumbs.light {
  color: rgba(255, 255, 255, 0.80);
}

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

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

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

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

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.68)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.95), transparent 70%);
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.40);
}

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

.detail-copy .lead {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.85;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.detail-item {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.detail-item strong {
  color: #ffffff;
  font-size: 14px;
}

.player-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #111827;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.22);
}

.player-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.42), rgba(251, 113, 133, 0.12));
}

.player-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 950;
}

.player-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  cursor: pointer;
}

.video-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.20), rgba(0, 0, 0, 0.42));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.video-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-ring {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 34px;
  background: linear-gradient(135deg, var(--primary), var(--rose));
  box-shadow: 0 18px 42px rgba(236, 72, 153, 0.40);
}

.two-column-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.text-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(190, 24, 93, 0.10);
}

.text-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 950;
}

.text-card p {
  margin: 0;
  color: #4b5563;
  line-height: 2;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #fff1f2, #fdf2f8);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand strong {
  font-size: 22px;
  font-weight: 950;
  color: var(--primary-deep);
}

.footer-brand p {
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 900;
  color: #374151;
}

.footer-links a:hover {
  color: var(--primary-deep);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

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

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

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

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    order: 5;
    display: none;
    width: 100%;
    margin-left: 0;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(190, 24, 93, 0.12);
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-search {
    order: 6;
    width: 100%;
  }

  .nav-search input {
    flex: 1;
    width: auto;
  }

  .hero-carousel {
    height: 560px;
  }

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

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

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

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

  .category-overview-card,
  .detail-layout,
  .two-column-text,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .container,
  .footer-inner {
    width: min(100% - 22px, 1180px);
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-carousel {
    height: 610px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.90), rgba(17, 24, 39, 0.40));
  }

  .hero-content {
    justify-content: end;
    padding-bottom: 86px;
  }

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

  .hero-content h2 {
    font-size: 24px;
  }

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

  .content-section {
    padding: 48px 0;
  }

  .section-heading {
    display: block;
  }

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

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

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

  .category-grid,
  .filter-panel,
  .mini-poster-row,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    padding: 54px 0 44px;
  }

  .detail-hero-inner {
    padding: 34px 0 52px;
  }

  .player-head {
    display: block;
  }

  .player-head p {
    margin-top: 8px;
  }

  .play-ring {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
