:root {
  --cyan: #06b6d4;
  --blue: #2563eb;
  --purple: #7c3aed;
  --pink: #ec4899;
  --orange: #f97316;
  --slate: #0f172a;
  --muted: #64748b;
  --surface: #ffffff;
  --soft: #eff6ff;
  --line: #dbeafe;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: #172033;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 48%, #ecfeff 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.24);
}

.nav-wrap {
  max-width: 1240px;
  height: 68px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.brand {
  color: white;
  flex: 0 0 auto;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: white;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.nav-search {
  flex: 1;
  max-width: 430px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  overflow: hidden;
}

.nav-search input,
.mobile-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 12px 16px;
  color: #172033;
  background: transparent;
}

.nav-search button,
.mobile-search button {
  border: 0;
  padding: 10px 18px;
  color: white;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 999px;
  margin-right: 4px;
  cursor: pointer;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link {
  opacity: 0.94;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 12px 22px 18px;
  background: rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(12px);
}

.mobile-menu a {
  display: block;
  color: white;
  padding: 10px 2px;
  font-weight: 700;
}

.mobile-search {
  display: flex;
  margin-bottom: 8px;
  background: white;
  border-radius: 999px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--slate);
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.42), transparent 32%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(37, 99, 235, 0.55), rgba(15, 23, 42, 0.28)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.8), transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 620px;
  margin: 0 auto;
  padding: 90px 22px 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.hero-label,
.section-eyebrow,
.page-hero span,
.ranking-hero span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 22px 0 10px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.04;
}

.hero-copy h2 {
  margin: 0 0 18px;
  color: #cffafe;
  font-size: clamp(24px, 4vw, 44px);
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions,
.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.primary-btn {
  color: var(--blue);
  background: white;
  box-shadow: var(--shadow);
}

.ghost-btn {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(10px);
}

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

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

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

.hero-dot.is-active {
  width: 34px;
  background: white;
}

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

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

.intro-card,
.content-card,
.watch-card,
.related-box,
.category-overview-card,
.ranking-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 234, 254, 0.9);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 26px;
}

.intro-card span {
  color: var(--cyan);
  font-weight: 800;
}

.intro-card strong {
  display: block;
  margin: 10px 0;
  font-size: 22px;
}

.intro-card p,
.category-card p,
.category-overview-card p,
.footer-about p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

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

.section-head h2 {
  margin: 12px 0 0;
  color: #172033;
  font-size: clamp(28px, 3vw, 38px);
}

.section-more {
  color: white;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: white;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.poster-wrap {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
}

.movie-card-small .poster-wrap {
  height: 170px;
}

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

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

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.5));
}

.movie-year,
.movie-duration {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 6px 10px;
  color: white;
  background: rgba(15, 23, 42, 0.68);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.movie-year {
  left: 12px;
}

.movie-duration {
  right: 12px;
}

.movie-body {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.movie-kicker {
  width: fit-content;
  padding: 5px 10px;
  color: white;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.movie-body strong {
  color: #172033;
  font-size: 18px;
  line-height: 1.35;
}

.movie-desc {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.category-area {
  padding-top: 20px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.category-card:nth-child(2n) {
  background: linear-gradient(135deg, #10b981, #06b6d4, #2563eb);
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, #ec4899, #f97316, #7c3aed);
}

.category-glow {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(2px);
}

.category-card strong {
  position: relative;
  display: block;
  font-size: 24px;
  margin-bottom: 12px;
}

.category-card p {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
}

.category-sample {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
}

.category-sample a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-band {
  background: linear-gradient(90deg, #fce7f3, #ffedd5, #e0f2fe);
}

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

.feature-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.feature-large {
  grid-row: span 2;
  min-height: 544px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.1));
}

.feature-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  color: white;
}

.feature-copy em {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.feature-copy strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 26px;
}

.feature-copy span {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.ranking-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.panel-head,
.overview-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-head span,
.overview-title span {
  font-size: 22px;
  font-weight: 900;
}

.panel-head a,
.overview-title a {
  color: var(--blue);
  font-weight: 800;
}

.rank-list,
.overview-samples {
  display: grid;
  gap: 14px;
}

.compact-item {
  display: grid;
  grid-template-columns: auto 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.compact-item:hover {
  background: #f8fafc;
}

.compact-item img {
  width: 92px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

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

.compact-item strong {
  color: #172033;
  font-size: 14px;
}

.compact-item em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.rank-num {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.page-hero {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 72px 22px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(110deg, #0891b2, #2563eb, #1d4ed8);
}

.page-hero div {
  max-width: 880px;
}

.page-hero h1 {
  margin: 18px 0;
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}

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

.category-overview-card {
  padding: 24px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 12px 14px;
  color: #172033;
  background: #f8fafc;
  outline: 0;
}

.empty-state {
  display: none;
  margin: 30px 0 0;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  background: white;
  border-radius: 20px;
}

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

.ranking-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 64px max(22px, calc((100vw - 1240px) / 2));
  color: white;
  background: linear-gradient(135deg, #0f172a, #1d4ed8, #06b6d4);
}

.ranking-hero img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}

.ranking-hero h1 {
  margin: 18px 0;
  font-size: clamp(32px, 5vw, 58px);
}

.ranking-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 70px 150px minmax(0, 1fr) 120px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: white;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.15);
}

.ranking-number {
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.ranking-card img {
  width: 150px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
}

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

.ranking-info strong {
  font-size: 18px;
}

.ranking-info em {
  margin: 6px 0;
  color: var(--muted);
  font-style: normal;
}

.ranking-info span {
  display: -webkit-box;
  overflow: hidden;
  color: #475569;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ranking-score {
  display: grid;
  gap: 8px;
  color: #f59e0b;
  font-size: 22px;
  font-weight: 900;
  text-align: right;
}

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

.detail-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: white;
  background: var(--slate);
}

.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(1.1);
  transform: scale(1.04);
}

.detail-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(6, 182, 212, 0.42), transparent 26%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.2));
}

.detail-copy {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 22px 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #cffafe;
}

.detail-copy h1 {
  max-width: 880px;
  margin: 0 0 20px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.1;
}

.detail-copy p {
  max-width: 780px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.detail-badges span,
.tag-row span {
  display: inline-flex;
  padding: 8px 13px;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

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

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

.watch-card {
  padding: 18px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #020617;
  border-radius: 22px;
}

.movie-video,
.video-cover,
.video-cover img {
  width: 100%;
  height: 100%;
}

.movie-video {
  display: block;
  background: #020617;
}

.video-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #020617;
}

.video-cover.is-hidden {
  display: none;
}

.video-cover img {
  object-fit: cover;
  opacity: 0.68;
}

.play-icon {
  position: absolute;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: white;
  border-radius: 999px;
  font-size: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.content-card {
  padding: 26px;
}

.content-card h2,
.related-box h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: #334155;
  line-height: 1.9;
  font-size: 16px;
}

.meta-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 20px;
}

.meta-card dl div {
  padding: 14px;
  background: #f8fafc;
  border-radius: 16px;
}

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

.meta-card dd {
  margin: 6px 0 0;
  color: #172033;
  font-weight: 800;
}

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

.tag-row span {
  color: var(--blue);
  background: #eff6ff;
  border-color: #dbeafe;
}

.detail-sidebar {
  position: sticky;
  top: 92px;
}

.related-box {
  padding: 22px;
}

.site-footer {
  color: white;
  background: linear-gradient(135deg, #0f172a, #172554, #0f172a);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 22px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand .brand-mark {
  color: white;
  background: var(--cyan);
}

.site-footer h3 {
  color: #67e8f9;
  margin: 0 0 14px;
}

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

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
  color: #67e8f9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 10px;
    font-size: 14px;
  }

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

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

  .ranking-panel,
  .detail-sidebar {
    position: static;
  }
}

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

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

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

  .hero-slider,
  .hero-image,
  .hero-copy {
    min-height: 560px;
  }

  .intro-strip,
  .movie-grid,
  .compact-grid,
  .category-grid,
  .category-overview-grid,
  .feature-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .feature-large {
    min-height: 320px;
  }

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

  .ranking-card {
    text-align: left;
  }

  .ranking-number,
  .ranking-score {
    text-align: left;
  }

  .ranking-card img {
    width: 100%;
    height: 190px;
  }

  .meta-card dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-name {
    display: none;
  }

  .nav-wrap {
    height: 62px;
    padding: 0 14px;
  }

  .hero-copy {
    padding: 70px 16px 90px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-section {
    padding: 42px 16px;
  }

  .poster-wrap {
    height: 210px;
  }

  .detail-copy {
    padding: 70px 16px 54px;
  }

  .watch-card,
  .content-card,
  .related-box {
    border-radius: 20px;
    padding: 16px;
  }

  .compact-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .compact-item .rank-num {
    display: none;
  }

  .compact-item img {
    width: 76px;
    height: 56px;
  }
}
