:root {
  --bg: #f8fffc;
  --bg-soft: #ecfdf5;
  --text: #111827;
  --muted: #6b7280;
  --line: #d1fae5;
  --card: #ffffff;
  --green: #10b981;
  --green-dark: #059669;
  --teal: #14b8a6;
  --amber: #f59e0b;
  --shadow: 0 20px 45px rgba(15, 118, 110, 0.12);
  --shadow-soft: 0 10px 28px rgba(15, 118, 110, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(16, 185, 129, 0.13), transparent 26rem),
    radial-gradient(circle at 88% 0%, rgba(20, 184, 166, 0.14), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, var(--bg-soft) 48%, #f0fdfa 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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: 80;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 185, 129, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(16, 185, 129, 0.28);
  transform: translateZ(0);
}

.brand:hover .brand-mark {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--green-dark), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link,
.mobile-link {
  color: #374151;
  font-weight: 700;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-link {
  padding: 10px 14px;
}

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

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-box input,
.filter-box select {
  border: 1px solid rgba(16, 185, 129, 0.25);
  outline: none;
  border-radius: 999px;
  background: #ffffff;
  transition: 0.2s ease;
}

.header-search input {
  width: 178px;
  padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.filter-box input:focus,
.filter-box select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.header-search button,
.mobile-search button,
.big-search button {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  font-weight: 800;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #374151;
  background: #f3f4f6;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-panel.open {
  display: block;
}

.mobile-panel-inner {
  padding: 14px 0 18px;
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.mobile-search input {
  flex: 1;
  padding: 11px 14px;
}

.mobile-links {
  display: grid;
  gap: 6px;
}

.mobile-link {
  display: block;
  padding: 12px 14px;
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #ffffff;
  background: #071b19;
}

.hero-track {
  position: relative;
  min-height: 640px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  padding: 110px max(32px, calc((100vw - 1180px) / 2)) 88px;
  transition: opacity 0.55s ease;
}

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

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

.hero-bg img {
  opacity: 0.44;
  filter: blur(1px) saturate(1.1);
  transform: scale(1.04);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 78, 59, 0.94) 0%, rgba(6, 78, 59, 0.74) 42%, rgba(15, 23, 42, 0.42) 100%),
    radial-gradient(circle at 18% 24%, rgba(16, 185, 129, 0.44), transparent 28rem);
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 1;
}

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

.hero-eyebrow,
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: #a7f3d0;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 660px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

.hero-tags span,
.detail-tags a,
.tag-row span {
  display: inline-flex;
  align-items: center;
  color: #065f46;
  background: #d1fae5;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 10px;
}

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

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

.primary-btn,
.ghost-btn,
.wide-link,
.section-action,
.filter-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
}

.primary-btn {
  color: #ffffff;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 18px 34px rgba(16, 185, 129, 0.3);
}

.primary-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 42px rgba(16, 185, 129, 0.36);
}

.ghost-btn {
  color: #ffffff;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ghost-btn.light {
  color: #064e3b;
  border-color: rgba(16, 185, 129, 0.22);
  background: #ecfdf5;
}

.hero-poster {
  justify-self: end;
  width: min(360px, 31vw);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-poster span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: #064e3b;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 30px;
  backdrop-filter: blur(10px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

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

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

.main-stack {
  display: grid;
  gap: 42px;
  padding: 54px 0;
}

.section-block,
.category-strip,
.ranking-panel,
.category-preview,
.ranking-full,
.search-results-panel,
.content-card,
.watch-card,
.sidebar-card,
.info-grid-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section-block,
.category-strip,
.category-preview,
.ranking-full,
.search-results-panel {
  padding: 28px;
}

.no-top {
  margin-top: 0;
}

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

.compact-heading {
  margin-bottom: 18px;
}

.section-kicker {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 12px;
  box-shadow: 0 12px 22px rgba(16, 185, 129, 0.22);
}

.section-heading h2,
.preview-head h2,
.ranking-panel h2,
.sidebar-card h2,
.content-card h2,
.watch-card h2,
.filter-box h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: -0.04em;
}

.section-heading p,
.preview-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section-action {
  flex-shrink: 0;
  color: var(--green-dark);
  background: #ecfdf5;
  padding: 10px 14px;
}

.section-action:hover,
.wide-link:hover,
.filter-all:hover {
  transform: translateY(-1px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--teal));
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transition: 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #d1fae5, #ccfbf1);
}

.movie-card-compact .poster-wrap {
  aspect-ratio: 16 / 11;
}

.poster-wrap img,
.compact-poster img,
.detail-cover img,
.hero-poster img {
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-wrap img,
.compact-card:hover .compact-poster img,
.detail-cover:hover img,
.hero-poster:hover img {
  transform: scale(1.06);
}

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent);
}

.score-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 900;
}

.score-pill {
  right: 12px;
  bottom: 12px;
  color: #064e3b;
  background: #ffffff;
  padding: 6px 10px;
}

.rank-badge {
  left: 12px;
  top: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), #ef4444);
}

.card-body {
  padding: 18px;
}

.meta-row,
.compact-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.meta-row a {
  color: var(--green-dark);
  background: #ecfdf5;
  border-radius: 999px;
  padding: 4px 9px;
}

.movie-card h2,
.compact-info h3 {
  margin: 10px 0 8px;
  line-height: 1.35;
}

.movie-card h2 {
  font-size: 20px;
}

.movie-card h2 a:hover,
.compact-info h3 a:hover {
  color: var(--green-dark);
}

.movie-card p,
.compact-info p {
  margin: 0 0 14px;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row span {
  font-size: 12px;
  padding: 5px 8px;
}

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

.category-tile {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  position: relative;
  color: #064e3b;
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 184, 166, 0.22), transparent 8rem),
    linear-gradient(135deg, #ffffff, #ecfdf5);
  border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.08);
  transition: 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-tile strong {
  font-size: 22px;
}

.category-tile span {
  color: #047857;
  font-size: 14px;
}

.category-tile em {
  font-style: normal;
  font-weight: 900;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 26px;
  align-items: start;
}

.ranking-panel {
  padding: 24px;
  position: sticky;
  top: 94px;
}

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

.ranking-list.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 18px;
  transition: 0.2s ease;
}

.compact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.compact-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, #d1fae5, #ccfbf1);
  border-radius: 14px;
}

.compact-info h3 {
  font-size: 16px;
}

.compact-info p {
  font-size: 13px;
  margin-bottom: 8px;
}

.compact-rank {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #ffffff;
  background: var(--green);
  border-radius: 999px;
}

.wide-link {
  width: 100%;
  margin-top: 18px;
  color: var(--green-dark);
  background: #ecfdf5;
  padding: 12px;
}

.page-hero {
  color: #ffffff;
  padding: 78px 0;
  background:
    radial-gradient(circle at 24% 20%, rgba(167, 243, 208, 0.3), transparent 22rem),
    linear-gradient(135deg, #059669, #0f766e);
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1;
  letter-spacing: -0.05em;
}

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

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

.filter-sidebar {
  position: sticky;
  top: 94px;
}

.filter-box {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.filter-box h2 {
  font-size: 24px;
}

.filter-box label {
  display: grid;
  gap: 8px;
  color: #374151;
  font-weight: 800;
}

.filter-box input,
.filter-box select {
  width: 100%;
  padding: 12px 14px;
}

.filter-all {
  color: var(--green-dark);
  background: #ecfdf5;
  padding: 12px;
}

.library-panel {
  min-width: 0;
}

.filter-item.is-hidden {
  display: none;
}

.category-preview {
  display: grid;
  gap: 18px;
}

.preview-head a {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
}

.preview-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.search-hero .big-search {
  max-width: 680px;
  margin-top: 28px;
}

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

.big-search input {
  flex: 1;
  padding: 16px 18px;
}

.big-search button {
  padding: 14px 26px;
}

.detail-hero {
  color: #ffffff;
  padding: 58px 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(16, 185, 129, 0.35), transparent 26rem),
    linear-gradient(135deg, #062c25, #0f172a 72%);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-cover {
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  background: linear-gradient(135deg, #d1fae5, #ccfbf1);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

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

.detail-intro h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-intro p {
  max-width: 860px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

.detail-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.watch-card,
.content-card,
.info-grid-card,
.sidebar-card {
  padding: 24px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 20px;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #ffffff;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.68));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-layer.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.play-circle {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.32);
  font-size: 30px;
}

.play-layer strong {
  font-size: 18px;
}

.content-card p {
  margin: 14px 0 0;
  color: #374151;
  font-size: 18px;
}

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

.info-grid-card div {
  display: grid;
  gap: 5px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 16px;
}

.info-grid-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.info-grid-card strong {
  color: #111827;
}

.detail-sidebar {
  position: sticky;
  top: 94px;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(16, 185, 129, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 36px;
  padding: 42px 0 28px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-grid a:not(.brand) {
  display: block;
  color: var(--muted);
  margin: 8px 0;
}

.footer-grid a:hover {
  color: var(--green-dark);
}

.footer-brand p {
  max-width: 390px;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: var(--muted);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  font-size: 14px;
}

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

  .menu-toggle {
    display: block;
  }

  .hero-slide {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 96px;
  }

  .hero-poster {
    display: none;
  }

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

  .ranking-panel,
  .filter-sidebar,
  .detail-sidebar {
    position: static;
  }

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

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

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

  .brand-text small {
    display: none;
  }

  .hero-carousel,
  .hero-track {
    min-height: 590px;
  }

  .hero-slide {
    padding: 92px 20px 86px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

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

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

  .section-block,
  .category-strip,
  .category-preview,
  .ranking-full,
  .search-results-panel,
  .watch-card,
  .content-card,
  .info-grid-card,
  .sidebar-card {
    padding: 18px;
    border-radius: 20px;
  }

  .featured-grid,
  .latest-grid,
  .category-movie-grid,
  .compact-grid,
  .category-grid,
  .preview-list,
  .ranking-list.two-col {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
  }

  .big-search,
  .mobile-search {
    flex-direction: column;
  }
}
