:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --card: #ffffff;
  --slate: #0f172a;
  --slate-soft: #1e293b;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --amber: #f59e0b;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, #0f172a, #1e293b, #0f172a);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.28);
}

.header-inner {
  max-width: 1240px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.32);
}

.brand-name {
  font-size: 21px;
  background: linear-gradient(90deg, #fb923c, #fde68a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  padding: 10px 15px;
  border-radius: 13px;
  color: #e2e8f0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(249, 115, 22, 0.95);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  padding: 0 20px 16px;
  background: #0f172a;
}

.mobile-link {
  display: block;
  max-width: 1240px;
  margin: 6px auto;
  padding: 12px 14px;
  border-radius: 13px;
  color: #e2e8f0;
}

.mobile-link.active,
.mobile-link:hover {
  background: var(--orange);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #fff;
  background: linear-gradient(135deg, #172554, #1d4ed8 45%, #0f172a);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0, transparent 72%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.28), transparent 28%), radial-gradient(circle at 78% 25%, rgba(6, 182, 212, 0.28), transparent 26%), rgba(2, 6, 23, 0.22);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 20px 42px;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: 46px;
  align-items: center;
}

.hero-slide.active {
  display: grid;
  animation: heroFade 0.55s ease both;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  max-width: 800px;
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero h2 {
  margin: 28px 0 10px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.16;
}

.hero-lead,
.hero-summary {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 19px;
}

.hero-summary {
  color: #e0f2fe;
}

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

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #e0f2fe;
  padding: 6px 10px;
  font-size: 13px;
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

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

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

.hero-poster {
  position: relative;
  display: block;
  width: min(100%, 410px);
  margin-left: auto;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.45);
}

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

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 6, 23, 0.78));
}

.hero-play,
.poster-play {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(249, 115, 22, 0.92);
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.34);
}

.hero-play {
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-controls button {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 28px;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.55;
}

.hero-dot.active {
  width: 34px;
  opacity: 1;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-quick-links a {
  padding: 10px 15px;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-strip {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: -42px auto 20px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.stat-card strong {
  display: block;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.content-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 20px;
}

.content-section.warm {
  max-width: none;
  background: linear-gradient(90deg, #fff7ed, #fffbeb);
}

.content-section.warm > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-head h2 {
  position: relative;
  margin: 0 0 5px;
  padding-left: 18px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--amber));
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-more {
  flex: 0 0 auto;
  color: var(--orange-dark);
  font-weight: 800;
}

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

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

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

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

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

.movie-card-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}

.poster-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  left: 10px;
  bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(249, 115, 22, 0.95);
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  top: 10px;
  bottom: auto;
  background: linear-gradient(135deg, #ef4444, var(--orange));
}

.poster-play {
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.movie-card-link:hover .poster-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.movie-card-body h3 {
  min-height: 43px;
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta,
.movie-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.movie-desc {
  min-height: 41px;
  margin-top: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-tags {
  margin-top: 12px;
}

.movie-tags span {
  color: #475569;
  background: #f1f5f9;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.55fr);
  gap: 36px;
}

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

.ranking-link {
  display: grid;
  grid-template-columns: 48px 54px minmax(0, 1fr) auto 62px;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-link:hover {
  transform: translateX(4px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
}

.ranking-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  font-weight: 900;
}

.ranking-link img {
  width: 54px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  background: #1e293b;
}

.ranking-title {
  min-width: 0;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-info {
  color: var(--muted);
  font-size: 13px;
}

.ranking-score {
  justify-self: end;
  color: var(--orange-dark);
  font-weight: 900;
}

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

.category-grid.small {
  grid-template-columns: 1fr;
}

.category-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.category-card > a {
  display: block;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
}

.category-card.orange > a {
  background: linear-gradient(135deg, #9a3412, #f97316);
}

.category-card.cyan > a {
  background: linear-gradient(135deg, #155e75, #06b6d4);
}

.category-card.emerald > a {
  background: linear-gradient(135deg, #065f46, #10b981);
}

.category-card.amber > a {
  background: linear-gradient(135deg, #92400e, #f59e0b);
}

.category-card span {
  display: inline-flex;
  margin-bottom: 10px;
  font-weight: 900;
}

.category-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.category-mini-links {
  display: grid;
  gap: 8px;
  padding: 18px 22px 22px;
}

.category-mini-links a {
  color: #334155;
  font-weight: 700;
}

.category-mini-links a:hover {
  color: var(--orange-dark);
}

.page-hero {
  color: #fff;
  background: radial-gradient(circle at 20% 10%, rgba(249, 115, 22, 0.26), transparent 25%), linear-gradient(135deg, #0f172a, #1d4ed8 50%, #0f172a);
}

.page-hero.slim {
  padding: 82px 20px;
}

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

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

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

.filter-panel {
  margin-bottom: 26px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.search-line {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.search-line input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
}

.search-line input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.search-line button,
.filter-chip {
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-weight: 800;
  cursor: pointer;
}

.search-line button {
  flex: 0 0 auto;
  padding: 0 18px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
}

.filter-row > span {
  color: var(--muted);
  font-weight: 900;
  margin-right: 4px;
}

.filter-chip {
  padding: 8px 13px;
}

.filter-chip.active,
.filter-chip:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.empty-state {
  display: none;
  margin-top: 24px;
  padding: 32px;
  text-align: center;
  border-radius: 22px;
  color: var(--muted);
  background: #fff;
}

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

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

.detail-hero {
  color: #fff;
  background: radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.25), transparent 28%), radial-gradient(circle at 82% 10%, rgba(6, 182, 212, 0.23), transparent 26%), linear-gradient(135deg, #020617, #172554 55%, #0f172a);
}

.detail-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 20px 72px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 26px;
  color: #cbd5e1;
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: #fb923c;
}

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

.detail-cover {
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 3 / 4;
  background: #1e293b;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.42);
}

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

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

.detail-one-line {
  max-width: 800px;
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: 19px;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 800px;
  margin-bottom: 18px;
}

.detail-meta-grid span {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-tags {
  margin-bottom: 26px;
}

.player-section {
  max-width: 1240px;
  margin: -42px auto 0;
  padding: 0 20px 30px;
  position: relative;
  z-index: 2;
}

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

.player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.66));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 18px 45px rgba(249, 115, 22, 0.36);
  font-size: 34px;
}

.player-message {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 12px;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.72);
  display: none;
}

.player-message.visible {
  display: block;
}

.detail-text {
  padding-top: 34px;
}

.prose-section {
  max-width: 920px;
}

.prose-card {
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.prose-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.prose-card h2:not(:first-child) {
  margin-top: 28px;
}

.prose-card p {
  margin: 0 0 14px;
  color: #334155;
  font-size: 17px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 20px 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 30px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
}

.footer-grid p {
  margin: 0;
  color: #94a3b8;
}

.footer-links {
  display: grid;
  gap: 9px;
}

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

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  color: #94a3b8;
}

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

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

  .split-section,
  .hero-slide,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    margin: 0;
  }

  .detail-cover {
    width: min(100%, 330px);
  }

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

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

  .menu-toggle {
    display: flex;
  }

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

  .hero-inner {
    padding-top: 52px;
  }

  .hero {
    min-height: auto;
  }

  .hero-slide.active {
    display: block;
  }

  .hero-poster {
    margin-top: 28px;
    width: min(100%, 300px);
  }

  .stat-strip {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .section-head,
  .search-line {
    align-items: stretch;
    flex-direction: column;
  }

  .featured-grid,
  .six-grid,
  .all-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

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

  .ranking-link {
    grid-template-columns: 38px 48px minmax(0, 1fr) 48px;
  }

  .ranking-info {
    display: none;
  }

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

  .player-section {
    margin-top: -18px;
  }

  .prose-card {
    padding: 24px;
  }
}

@media (max-width: 430px) {
  .featured-grid,
  .six-grid,
  .all-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1,
  .page-hero h1,
  .detail-info h1 {
    letter-spacing: -0.025em;
  }
}
