* {
  box-sizing: border-box;
}

:root {
  --bg: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --brand: #059669;
  --brand-dark: #047857;
  --teal: #0d9488;
  --sky: #0284c7;
  --rose: #e11d48;
  --amber: #f59e0b;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 46%, #ecfdf5 100%);
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.nav-wrap {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 168px;
}

.brand-mark,
.footer-brand span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  box-shadow: 0 14px 25px rgba(5, 150, 105, 0.28);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-2deg);
}

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

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

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.desktop-nav a,
.mobile-panel nav a {
  color: #334155;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-panel nav a.active {
  color: var(--brand);
}

.desktop-nav a:hover {
  transform: translateY(-1px);
}

.nav-search {
  margin-left: auto;
  width: min(320px, 30vw);
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 12px 48px 12px 18px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16);
}

.nav-search button {
  position: absolute;
  right: 6px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--teal));
}

.menu-toggle {
  display: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #0f172a;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid #e5e7eb;
  padding: 18px 24px 24px;
  background: rgba(255, 255, 255, 0.98);
}

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

.mobile-panel form {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.mobile-panel input {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 14px;
}

.mobile-panel button {
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
  color: #fff;
  background: var(--brand);
}

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.site-main {
  padding-top: 72px;
}

.hero-slider {
  position: relative;
  height: min(68vh, 620px);
  min-height: 520px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 1.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 25%, rgba(20, 184, 166, 0.38), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.82), rgba(15, 23, 42, 0.58) 48%, rgba(15, 23, 42, 0.12));
}

.hero-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

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

.hero-pills span,
.hero-pills a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.hero-pills span {
  background: var(--brand);
}

.hero-pills a {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  margin: 24px 0 16px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 680px;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
  margin: 0 0 22px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

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

.btn-primary,
.btn-ghost,
.page-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  box-shadow: 0 18px 32px rgba(5, 150, 105, 0.34);
}

.btn-primary:hover,
.btn-ghost:hover,
.page-actions a:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.btn-ghost.light {
  color: #0f172a;
  background: #f1f5f9;
  border-color: #e5e7eb;
}

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

.hero-dot {
  width: 42px;
  height: 5px;
  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: 72px;
  background: #fff;
}

.quick-search-panel,
.content-section,
.filter-card,
.category-grid,
.story-card,
.detail-hero,
.watch-section {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.quick-search-panel {
  margin-top: -44px;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.quick-search-panel form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: 26px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.quick-search-panel label {
  font-weight: 900;
  color: var(--brand);
  padding-left: 8px;
}

.quick-search-panel input,
.big-search input,
.filter-search input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 18px;
  padding: 14px 16px;
  background: #f1f5f9;
}

.quick-search-panel button,
.big-search button,
.filter-search button,
.filter-buttons button {
  border: 0;
  border-radius: 18px;
  padding: 14px 22px;
  cursor: pointer;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--teal));
}

.quick-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-links a {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  color: #0f172a;
  font-weight: 800;
}

.content-section {
  padding-top: 64px;
}

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

.section-head span,
.page-hero span {
  display: inline-flex;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2,
.page-hero h1,
.story-card h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.section-head a {
  color: var(--brand);
  font-weight: 900;
}

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

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

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

.movie-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
  position: relative;
  display: block;
  height: 270px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(20, 184, 166, 0.28), transparent 34%),
    linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.movie-card-compact .poster-frame {
  height: 220px;
}

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

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

.card-category,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.rank-badge {
  left: 14px;
  right: auto;
  background: linear-gradient(135deg, var(--rose), var(--amber));
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

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

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

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

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
  margin-bottom: 12px;
}

.meta-line span {
  border-radius: 999px;
  background: #f1f5f9;
  padding: 5px 9px;
}

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

.card-body .tag-row span,
.detail-tags span {
  color: #047857;
  background: #ecfdf5;
}

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

.zone-card,
.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 24px;
  padding: 22px;
  color: #fff;
  background: #0f172a;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.zone-card::after,
.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.78), rgba(5, 150, 105, 0.58));
}

.zone-img,
.category-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.zone-card:hover .zone-img,
.category-tile:hover .category-art {
  transform: scale(1.1);
}

.zone-card strong,
.category-tile strong {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

.zone-card em,
.category-tile em {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
  line-height: 1.65;
}

.ranking-section {
  padding-bottom: 72px;
}

.ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

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

.ranking-full {
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ranking-list a {
  display: grid;
  grid-template-columns: 48px 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.ranking-index {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  font-weight: 900;
}

.ranking-cover {
  width: 72px;
  height: 54px;
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
}

.ranking-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-text strong,
.ranking-text em {
  display: block;
}

.ranking-text strong {
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-text em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.inner-page {
  padding-bottom: 72px;
}

.page-hero {
  margin: 0 auto;
  max-width: 1280px;
  padding: 64px 24px 0;
}

.page-hero > div {
  border-radius: 32px;
  padding: 54px;
  min-height: 260px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #059669, #0d9488 55%, #0284c7);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  color: #fff;
}

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

.page-actions {
  margin-top: 24px;
}

.page-actions a {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.filter-card {
  margin-top: 26px;
}

.filter-card {
  display: grid;
  gap: 16px;
  border-radius: 24px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.filter-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-buttons button {
  color: #0f172a;
  background: #f1f5f9;
}

.filter-buttons button.is-active,
.filter-search button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--teal));
}

.category-grid {
  padding-top: 28px;
}

.category-tile {
  display: flex;
  align-items: flex-end;
  min-height: 260px;
}

.category-body {
  display: block;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.category-samples span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
}

.detail-page {
  background: linear-gradient(135deg, #0f172a 0, #0f172a 460px, #f8fafc 461px, #ecfdf5 100%);
}

.detail-hero {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 60px;
  color: #fff;
}

.detail-poster {
  border-radius: 30px;
  overflow: hidden;
  min-height: 500px;
  background:
    radial-gradient(circle at 34% 18%, rgba(20, 184, 166, 0.3), transparent 32%),
    linear-gradient(135deg, #1f2937, #334155);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.34);
}

.detail-poster img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #a7f3d0;
  font-weight: 800;
  margin-bottom: 18px;
}

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
}

.lead-text {
  margin: 0 0 24px;
  color: #d1d5db;
  font-size: 20px;
  line-height: 1.8;
}

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

.detail-meta span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(255, 255, 255, 0.12);
}

.detail-meta b {
  color: #fff;
}

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

.watch-section {
  padding-top: 48px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.28);
  aspect-ratio: 16 / 9;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  color: #fff;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.18), rgba(2, 6, 23, 0.62));
}

.play-layer span {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-indent: 5px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  box-shadow: 0 18px 42px rgba(5, 150, 105, 0.4);
}

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

.player-shell.is-playing .play-layer {
  display: none;
}

.story-card {
  margin-top: 34px;
  border-radius: 28px;
  background: #fff;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.story-card h2 {
  font-size: 28px;
  margin: 0 0 14px;
}

.story-card p {
  color: #475569;
  font-size: 17px;
  line-height: 1.95;
  margin: 0 0 28px;
}

.related-section {
  padding-bottom: 76px;
}

.big-search {
  margin-top: 26px;
  max-width: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #1f2937 55%, #111827);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand {
  min-width: 0;
  color: #fff;
  font-size: 19px;
}

.site-footer p {
  color: #94a3b8;
  line-height: 1.8;
}

.site-footer h2 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 16px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 0 0 10px;
  color: #cbd5e1;
}

.site-footer a:hover {
  color: #6ee7b7;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.back-top {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.is-hidden {
  display: none !important;
}

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

  .detail-hero {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero-slider {
    height: auto;
    min-height: 640px;
  }

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

  .quick-search-panel {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .quick-search-panel form,
  .filter-search,
  .big-search {
    grid-template-columns: 1fr;
  }

  .featured-grid,
  .compact-grid,
  .library-grid,
  .zone-grid,
  .category-grid,
  .home-ranking,
  .ranking-full,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-poster {
    min-height: auto;
    max-width: 360px;
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text small {
    display: none;
  }

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

  .hero-content,
  .quick-search-panel,
  .content-section,
  .filter-card,
  .category-grid,
  .story-card,
  .detail-hero,
  .watch-section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-hero > div {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .featured-grid,
  .compact-grid,
  .library-grid,
  .zone-grid,
  .category-grid,
  .home-ranking,
  .ranking-full,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .poster-frame,
  .movie-card-compact .poster-frame {
    height: 260px;
  }

  .ranking-list a {
    grid-template-columns: 42px 64px minmax(0, 1fr);
  }

  .detail-info h1 {
    font-size: 36px;
  }

  .watch-section {
    padding-top: 30px;
  }

  .player-shell {
    border-radius: 18px;
  }

  .story-card {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
