:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.22);
  --line-strong: rgba(34, 211, 238, 0.38);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --yellow: #facc15;
  --green: #22c55e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.18), transparent 32rem),
    radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.18), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #08111f 42%, #020617 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(22px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111a;
  box-shadow: 0 12px 34px rgba(34, 211, 238, 0.28);
}

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

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

.nav-link,
.mobile-nav-link {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--text);
  background: rgba(34, 211, 238, 0.12);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.library-controls input,
.library-controls select {
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input,
.mobile-search input {
  width: 210px;
  padding: 10px 12px;
}

.header-search input:focus,
.mobile-search input:focus,
.library-controls input:focus,
.library-controls select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.header-search button,
.mobile-search button,
.library-controls button,
.btn-primary,
.btn-ghost {
  border: 0;
  cursor: pointer;
  color: var(--text);
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button,
.btn-primary {
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111a;
  box-shadow: 0 12px 34px rgba(34, 211, 238, 0.2);
}

.btn-primary.full {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.btn-ghost {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.75);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 600px;
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #020617;
  box-shadow: var(--shadow);
}

.hero-stage {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-overlay,
.detail-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 48%, rgba(2, 6, 23, 0.1) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.75) 0%, transparent 48%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 6vw, 72px);
  bottom: clamp(32px, 8vw, 90px);
  max-width: 650px;
}

.hero-kicker,
.section-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-kicker {
  padding: 8px 12px;
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
}

.hero h1 {
  max-width: 740px;
  margin: 18px 0 12px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 620px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: clamp(16px, 2vw, 20px);
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.detail-meta span,
.card-tags span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.58);
  font-size: 13px;
}

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

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(2, 6, 23, 0.62);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-panel {
  padding: 26px;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.12), transparent 20rem),
    rgba(2, 6, 23, 0.74);
}

.hero-panel-title {
  margin-bottom: 16px;
  color: var(--cyan);
  font-weight: 900;
}

.hero-thumbs {
  display: grid;
  gap: 14px;
}

.hero-thumb {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.52);
  color: var(--muted);
  transition: border 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.hero-thumb img {
  width: 90px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-thumb:hover,
.hero-thumb.is-active {
  color: var(--text);
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateX(-3px);
}

.content-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-alt {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  background: rgba(15, 23, 42, 0.34);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

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

.section-kicker {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--text);
}

.section-kicker b {
  color: var(--yellow);
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

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

.movie-card-large .poster-link {
  aspect-ratio: 16 / 11;
}

.poster-link img,
.compact-card img,
.rank-item img,
.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

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

.score-badge,
.play-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.score-badge {
  top: 12px;
  left: 12px;
  min-width: 44px;
  min-height: 30px;
  color: #221a00;
  background: var(--yellow);
}

.play-badge {
  right: 12px;
  bottom: 12px;
  padding: 7px 12px;
  color: #00111a;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

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

.card-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

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

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

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

.card-meta {
  color: var(--muted-2);
  font-size: 13px;
}

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

.category-tile,
.category-overview-card,
.side-card,
.text-card,
.player-card,
.category-strip,
.sitemap-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.category-tile {
  min-height: 146px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.18), transparent 12rem),
    var(--panel);
  transition: border 0.2s ease, transform 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.category-tile strong,
.category-overview-card strong {
  font-size: 21px;
}

.category-tile span,
.category-overview-card p,
.category-overview-card div,
.strip-title p {
  color: var(--muted);
}

.category-overview-card {
  padding: 24px;
  min-height: 220px;
  transition: border 0.2s ease, transform 0.2s ease;
}

.category-overview-card div {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  font-size: 14px;
}

.category-strip {
  margin-top: 18px;
  padding: 20px;
}

.strip-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.strip-title h3 {
  margin: 0;
  font-size: 22px;
}

.strip-title p {
  margin: 6px 0 0;
}

.strip-title a {
  color: var(--cyan);
  font-weight: 800;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.38);
  overflow: hidden;
}

.compact-card img {
  height: 68px;
  border-radius: 12px;
}

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

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

.rank-preview,
.rank-list {
  display: grid;
  gap: 12px;
}

.rank-item {
  display: grid;
  grid-template-columns: 54px 90px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.7);
  overflow: hidden;
  transition: border 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  border-color: var(--line-strong);
  transform: translateX(4px);
}

.rank-number {
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.rank-item img {
  width: 90px;
  height: 62px;
  border-radius: 12px;
}

.rank-info strong,
.rank-info em {
  display: block;
}

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

.rank-heat {
  color: var(--yellow);
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  width: min(var(--max), calc(100% - 32px));
  margin: 28px auto 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: var(--shadow);
}

.small-hero {
  padding: 72px clamp(22px, 6vw, 72px);
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.18), transparent 22rem),
    radial-gradient(circle at 90% 50%, rgba(59, 130, 246, 0.16), transparent 24rem),
    rgba(15, 23, 42, 0.78);
}

.page-hero h1 {
  margin: 12px 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.library-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 180px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.62);
}

.library-controls label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.library-controls input,
.library-controls select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
}

.library-controls button {
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.empty-state {
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.detail-hero {
  min-height: 520px;
}

.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(42px, 8vw, 96px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-hero p {
  color: #dbeafe;
  font-size: 19px;
}

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

.detail-main {
  display: grid;
  gap: 20px;
}

.player-card,
.text-card,
.side-card {
  padding: 18px;
}

.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  aspect-ratio: 16 / 9;
}

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

.video-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--text);
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.24), rgba(2, 6, 23, 0.72));
  cursor: pointer;
}

.video-start span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111a;
  font-size: 34px;
  box-shadow: 0 18px 44px rgba(34, 211, 238, 0.28);
}

.video-start strong {
  font-size: 18px;
}

.source-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  color: var(--muted);
}

.text-card h2,
.side-card h2 {
  margin: 0 0 12px;
}

.text-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 17px;
}

.poster-card img {
  height: 440px;
  border-radius: 18px;
  object-fit: cover;
}

.info-list {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 9px 12px;
  margin: 0 0 16px;
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  min-width: 0;
}

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

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

.sitemap-group {
  padding: 22px;
}

.sitemap-group h2 {
  margin: 0 0 14px;
}

.sitemap-group h2 a:hover,
.sitemap-group li a:hover {
  color: var(--cyan);
}

.sitemap-group ul {
  columns: 2;
  margin: 0;
  padding-left: 18px;
}

.sitemap-group li {
  margin-bottom: 8px;
  break-inside: avoid;
}

.sitemap-group span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.8);
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 28px;
  color: var(--muted);
}

.footer-brand {
  color: var(--text);
  font-size: 22px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--text);
}

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

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

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

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

  .nav-toggle {
    display: block;
  }

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

  .hero-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

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

  .poster-card img {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    height: 66px;
  }

  .brand-text {
    font-size: 17px;
  }

  .mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .mobile-search input {
    width: 100%;
  }

  .hero {
    min-height: auto;
    border-radius: 22px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-content {
    left: 22px;
    right: 22px;
    bottom: 70px;
  }

  .hero-panel {
    padding: 18px;
  }

  .hero-thumb {
    grid-template-columns: 74px 1fr;
  }

  .hero-thumb img {
    width: 74px;
    height: 54px;
  }

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

  .section-alt {
    padding-left: 16px;
    padding-right: 16px;
  }

  .movie-grid,
  .latest-grid,
  .category-grid,
  .category-overview-grid,
  .compact-grid,
  .sitemap-wrap {
    grid-template-columns: 1fr;
  }

  .library-controls {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 42px 70px 1fr;
  }

  .rank-item img {
    width: 70px;
    height: 54px;
  }

  .rank-heat {
    grid-column: 3;
  }

  .detail-hero {
    min-height: 480px;
  }

  .detail-hero-content {
    padding: 34px 22px;
  }

  .poster-card img {
    height: auto;
  }

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

  .sitemap-group ul {
    columns: 1;
  }
}
