:root {
  --bg: #f8fafc;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f3f4f6;
  --line: #e5e7eb;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #f97316;
  --red: #ef4444;
  --slate: #0f172a;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 24px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 40%, #f8fafc 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.sub-page .site-header,
.detail-page .site-header {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name {
  font-size: clamp(20px, 2.3vw, 28px);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--red));
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35);
}

.brand-mark svg,
.nav-toggle svg,
.search-field svg,
.play-dot svg,
.big-play svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 10px 20px 20px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

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

.hero {
  position: relative;
  height: min(720px, 95vh);
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber), var(--orange) 45%, var(--red));
}

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

.hero-slide {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.75s ease, transform 1.2s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.15) contrast(1.05);
}

.hero-overlay,
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 25%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.42) 52%, rgba(15, 23, 42, 0.12)),
    linear-gradient(180deg, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.86));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;
  padding: 160px 20px 100px;
  color: #ffffff;
}

.hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 8vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.hero-content h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.05;
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 23px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow,
.detail-hero .eyebrow,
.page-hero .eyebrow {
  color: #fde68a;
}

.hero-tags,
.detail-tags,
.detail-links,
.filter-row,
.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.detail-tag,
.tag-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

.detail-tag,
.tag-link {
  color: var(--amber-dark);
  background: #fff7ed;
  border-color: #fed7aa;
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.center-action {
  justify-content: center;
}

.primary-btn,
.ghost-btn,
.ghost-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.35);
}

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

.ghost-dark-btn {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

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

.hero-controls button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-controls button.active {
  width: 36px;
  background: #ffffff;
}

.stats-section {
  position: relative;
  z-index: 8;
  max-width: 1180px;
  margin: -58px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 26px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section-block {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 20px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.page-hero h1,
.detail-intro h1,
.detail-article h2,
.detail-info-card h2,
.latest-panel h2,
.category-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.section-heading p,
.page-hero p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

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

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

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

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

.movie-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

.movie-card a:hover .poster-wrap img {
  transform: scale(1.06);
}

.year-badge,
.rank-num,
.play-dot,
.mini-rank {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.year-badge {
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
  font-size: 12px;
}

.rank-num {
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--red));
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.play-dot {
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.92);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35);
}

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

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

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

.movie-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 800;
}

.movie-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff7ed;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.latest-panel,
.detail-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 24px;
}

.sticky-panel {
  position: sticky;
  top: 96px;
}

.latest-panel h2,
.detail-info-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.compact-list {
  display: grid;
  gap: 12px;
}

.compact-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border-radius: 18px;
  background: var(--soft);
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
  background: #fff7ed;
  transform: translateX(4px);
}

.compact-card img {
  width: 72px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.compact-info {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.compact-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.mini-rank {
  position: static;
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: var(--amber);
  font-size: 13px;
}

.category-entry {
  max-width: none;
  background: linear-gradient(135deg, #fff7ed, #ffffff 48%, #f8fafc);
}

.category-entry > .section-heading,
.category-entry > .category-cloud,
.category-entry > .center-action {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.category-cloud {
  justify-content: center;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #fed7aa;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.08);
  color: var(--ink);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-chip span {
  color: var(--amber-dark);
  font-size: 13px;
}

.category-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.18);
}

.search-panel {
  margin: 0 0 28px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.search-panel.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  background: var(--soft);
}

.search-field span {
  color: var(--amber-dark);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.filter-row {
  margin-top: 14px;
}

.filter-btn {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
  font-weight: 800;
}

.filter-btn.active,
.filter-btn:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: none;
}

.result-count {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 360px;
  padding: 132px 20px 72px;
  color: #ffffff;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(135deg, var(--slate), #7c2d12 48%, var(--amber-dark));
}

.page-hero > div {
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero h1,
.page-hero p {
  color: #ffffff;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

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

.category-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.category-card-main {
  display: block;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #fff7ed);
}

.category-count {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--amber-dark);
  background: #ffedd5;
  font-size: 13px;
  font-weight: 900;
}

.category-card h2 {
  margin-top: 18px;
  font-size: 30px;
}

.category-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.category-samples {
  display: grid;
  gap: 8px;
  padding: 0 24px 24px;
}

.category-samples a {
  color: var(--muted);
  font-size: 14px;
}

.category-samples a:hover {
  color: var(--amber-dark);
}

.detail-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--slate), #451a03);
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: blur(2px) saturate(1.2);
}

.detail-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;
  padding: 138px 20px 78px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: end;
}

.detail-poster {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

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

.detail-intro h1 {
  color: #ffffff;
  font-size: clamp(42px, 6vw, 76px);
}

.detail-intro p {
  max-width: 760px;
  margin: 18px 0 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.player-block {
  padding-top: 60px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), rgba(2, 6, 23, 0.68));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.big-play {
  width: 82px;
  height: 82px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--red));
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.35);
}

.big-play svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  stroke: none;
}

.player-overlay strong {
  font-size: 22px;
}

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

.detail-article {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.detail-article h2 {
  margin: 0 0 16px;
  font-size: 32px;
}

.detail-article h2:not(:first-child) {
  margin-top: 32px;
}

.detail-article p {
  margin: 0;
  color: #374151;
  font-size: 17px;
}

.detail-info-card dl {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px 16px;
  margin: 0;
}

.detail-info-card dt {
  color: var(--muted);
  font-weight: 700;
}

.detail-info-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

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

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 36px;
}

.footer-logo {
  color: #ffffff;
  font-size: 24px;
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
  color: #94a3b8;
}

.footer-group {
  display: grid;
  gap: 8px;
}

.footer-group h2 {
  margin: 0 0 10px;
  color: #fbbf24;
  font-size: 18px;
}

.footer-group a {
  color: #cbd5e1;
}

.footer-group a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 18px 20px;
  text-align: center;
  color: #94a3b8;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  transform: translateY(-3px);
}

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

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

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

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

  .sticky-panel {
    position: static;
  }
}

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

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

  .hero {
    min-height: 650px;
  }

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

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .detail-poster {
    width: min(240px, 70vw);
  }

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

@media (max-width: 560px) {
  .nav-shell {
    min-height: 66px;
  }

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

  .hero {
    min-height: 680px;
  }

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

  .stats-section {
    margin-top: -38px;
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 54px 16px;
  }

  .movie-grid,
  .library-grid,
  .featured-grid,
  .ranking-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-body p {
    min-height: auto;
  }

  .page-hero {
    padding-top: 110px;
  }

  .detail-article,
  .detail-info-card,
  .latest-panel {
    padding: 20px;
  }

  .video-frame {
    border-radius: 20px;
  }
}
