:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --orange: #f97316;
  --pink: #ec4899;
  --green: #22c55e;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 12%, rgba(34, 211, 238, 0.16), transparent 34rem),
    radial-gradient(circle at 88% 8%, rgba(59, 130, 246, 0.14), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
}

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

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

main {
  min-height: 70vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  box-shadow: 0 10px 35px rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(18px);
}

.nav-shell,
.footer-shell,
.hero-shell,
.hero-feature-grid,
.content-section,
.detail-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #051923;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.45);
}

.brand-text {
  font-size: 1.22rem;
  background: linear-gradient(90deg, #67e8f9, #60a5fa, #a78bfa);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

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

.nav-link {
  padding: 10px 15px;
  border-radius: 12px;
  color: #dbeafe;
  font-weight: 650;
  transition: 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(51, 65, 85, 0.72);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  color: var(--text);
  background: rgba(30, 41, 59, 0.85);
  font-size: 1.2rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 74px 0 64px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}

.glow-one {
  width: 320px;
  height: 320px;
  left: 8%;
  top: 18%;
  background: rgba(34, 211, 238, 0.18);
}

.glow-two {
  width: 420px;
  height: 420px;
  right: 6%;
  top: 2%;
  background: rgba(59, 130, 246, 0.16);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  gap: 36px;
  align-items: center;
}

.hero-copy-main {
  padding: 20px 0;
}

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

.hero-copy-main h1,
.page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #67e8f9 0%, #60a5fa 44%, #c084fc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy-main p,
.page-hero p {
  margin: 0;
  max-width: 640px;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

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

.primary-btn {
  color: #04111e;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 15px 35px rgba(34, 211, 238, 0.25);
}

.ghost-btn,
.section-more {
  color: #e0f2fe;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: rgba(15, 23, 42, 0.58);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.4);
}

.quick-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.quick-cats a {
  padding: 9px 13px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.58);
  transition: 0.22s ease;
}

.quick-cats a:hover {
  color: #fff;
  border-color: rgba(34, 211, 238, 0.58);
}

.hero-carousel {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-image-link,
.hero-image-link img,
.hero-image-mask {
  position: absolute;
  inset: 0;
}

.hero-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-mask {
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.44) 44%, rgba(2, 6, 23, 0.05) 100%);
}

.hero-slide-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
  z-index: 2;
}

.hero-slide-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.05;
}

.hero-slide-copy p {
  width: min(620px, 100%);
  margin: 0;
  color: #dbeafe;
  line-height: 1.8;
}

.compact-actions {
  margin-top: 20px;
}

.hero-dots {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.44);
  cursor: pointer;
}

.hero-dot.active {
  width: 28px;
  background: var(--cyan);
}

.hero-feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

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

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

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.section-heading p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.94));
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 28px 72px rgba(2, 6, 23, 0.45);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(2, 6, 23, 0.82) 100%);
}

.play-chip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #04111e;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
  font-size: 0.8rem;
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: rgba(249, 115, 22, 0.92);
  font-weight: 900;
}

.movie-info {
  padding: 16px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.category-pill {
  padding: 5px 9px;
  border-radius: 999px;
  color: #cffafe;
  background: rgba(8, 145, 178, 0.2);
}

.movie-info h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.38;
}

.movie-info h3 a:hover {
  color: var(--cyan);
}

.movie-info p {
  display: -webkit-box;
  min-height: 3.45em;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.tag-row span,
.genre-cloud span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(51, 65, 85, 0.8);
  font-size: 0.78rem;
}

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

.category-tile,
.category-overview-card a {
  position: relative;
  display: block;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.85);
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.3);
}

.category-tile img,
.category-overview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-tile:hover img,
.category-overview-card:hover img {
  transform: scale(1.08);
}

.tile-mask,
.category-overview-card span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.92));
}

.tile-content,
.category-overview-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  z-index: 2;
}

.tile-content strong,
.category-overview-card h2 {
  display: block;
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.tile-content em,
.category-overview-card p {
  display: block;
  margin: 0 0 12px;
  color: #cbd5e1;
  font-style: normal;
  line-height: 1.55;
}

.tile-content b,
.category-overview-card b {
  color: var(--cyan);
}

.rank-preview-section {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.28);
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rank-item {
  display: grid;
  grid-template-columns: 46px 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.76);
  transition: 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  border-color: rgba(34, 211, 238, 0.38);
}

.rank-num {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  font-weight: 900;
}

.rank-item img {
  width: 86px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong,
.rank-copy em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-copy strong {
  margin-bottom: 5px;
}

.rank-copy em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.88rem;
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(2, 6, 23, 0.98));
}

.footer-shell {
  padding: 46px 0 24px;
}

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

.footer-brand-block p,
.site-footer p,
.footer-bottom {
  color: var(--muted);
  line-height: 1.75;
}

.site-footer h3 {
  margin: 0 0 14px;
}

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

.footer-list a {
  color: var(--muted);
}

.footer-list a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  padding: 78px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(34, 211, 238, 0.18), transparent 26rem),
    radial-gradient(circle at 82% 8%, rgba(99, 102, 241, 0.16), transparent 24rem);
}

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

.slim-hero h1 {
  max-width: 860px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

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

.category-overview-card a {
  min-height: 260px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 220px;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
}

.filter-bar label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-weight: 700;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(2, 6, 23, 0.72);
  outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.empty-state {
  display: none;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.72);
}

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

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

.ranking-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.82);
  transition: 0.22s ease;
}

.ranking-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.38);
}

.ranking-link {
  display: grid;
  grid-template-columns: 56px 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
}

.ranking-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  font-weight: 950;
}

.ranking-link img {
  width: 120px;
  height: 76px;
  border-radius: 14px;
  object-fit: cover;
}

.ranking-content {
  min-width: 0;
}

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

.ranking-content strong {
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.ranking-content em {
  margin-bottom: 6px;
  color: var(--cyan);
  font-style: normal;
}

.ranking-content b {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: var(--cyan);
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 30px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow);
}

.player-wrap video,
.player-cover,
.player-cover img,
.player-shade {
  position: absolute;
  inset: 0;
}

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

.player-cover {
  z-index: 3;
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

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

.player-shade {
  background:
    radial-gradient(circle at center, rgba(34, 211, 238, 0.1), transparent 20rem),
    linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.22));
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  padding-left: 7px;
  color: #04111e;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 20px 55px rgba(34, 211, 238, 0.35);
  font-size: 2rem;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.detail-intro {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(2, 6, 23, 0.45);
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.05;
}

.lead-text {
  margin: 0 0 18px;
  color: #dbeafe;
  line-height: 1.85;
  font-size: 1.08rem;
}

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

.detail-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(2, 6, 23, 0.4);
}

.text-panel {
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.text-panel h2 {
  margin: 0 0 14px;
  font-size: 1.55rem;
}

.text-panel p {
  margin: 0 0 22px;
  color: #cbd5e1;
  line-height: 1.95;
}

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

.compact-card .poster-link {
  aspect-ratio: 16 / 9;
}

@media (max-width: 1060px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    min-height: 460px;
  }

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

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

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

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

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

  .hero-carousel {
    min-height: 430px;
    border-radius: 24px;
  }

  .hero-slide-copy {
    padding: 24px;
  }

  .hero-feature-grid,
  .movie-grid,
  .category-grid,
  .rank-list,
  .category-overview-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

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

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .ranking-link {
    grid-template-columns: 44px 92px minmax(0, 1fr);
    gap: 12px;
  }

  .ranking-link img {
    width: 92px;
    height: 64px;
  }

  .detail-intro {
    grid-template-columns: 1fr;
    padding: 18px;
  }

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

  .big-play {
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
  }

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

@media (max-width: 460px) {
  .nav-shell,
  .footer-shell,
  .hero-shell,
  .hero-feature-grid,
  .content-section,
  .detail-shell,
  .page-hero-copy {
    width: min(100% - 22px, 1180px);
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .hero-copy-main h1,
  .page-hero h1 {
    letter-spacing: -0.04em;
  }

  .hero-carousel {
    min-height: 390px;
  }

  .hero-actions {
    display: grid;
  }

  .primary-btn,
  .ghost-btn,
  .section-more {
    width: 100%;
  }
}
