:root {
  --bg: #020617;
  --panel: rgba(30, 41, 59, 0.52);
  --panel-strong: rgba(15, 23, 42, 0.88);
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(34, 211, 238, 0.45);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --shadow: 0 24px 60px rgba(8, 145, 178, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, rgba(8, 145, 178, 0.18), transparent 34rem), var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.36);
}

.brand-icon span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

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

.brand-text em {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

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

.nav-link {
  position: relative;
  color: var(--soft);
  font-weight: 650;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--cyan);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.88);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  transition: max-height 0.3s ease, border-color 0.3s ease;
}

.mobile-nav.is-open {
  max-height: 520px;
  border-color: var(--border);
}

.mobile-nav .nav-link {
  display: block;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 13px 0;
}

.hero {
  position: relative;
  height: 76vh;
  min-height: 560px;
  margin-top: 64px;
  overflow: hidden;
  background: #0f172a;
}

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

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

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

.hero-shade,
.detail-bg-shade {
  position: absolute;
  inset: 0;
}

.hero-shade--bottom {
  background: linear-gradient(0deg, var(--bg), rgba(2, 6, 23, 0.72), transparent 74%);
}

.hero-shade--left {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.28), transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-copy {
  max-width: 680px;
  padding: 48px 0;
}

.hero-badges,
.detail-tags,
.tag-cloud,
.chip-row,
.hero-meta,
.detail-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-badges span,
.hero-badges a,
.detail-tags span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(8, 145, 178, 0.15);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 650;
}

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

.hero h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.08;
}

.hero p,
.page-hero p,
.lead-text {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-meta {
  margin: 20px 0 28px;
  color: var(--muted);
}

.hero-meta span + span::before {
  content: "·";
  margin-right: 10px;
  color: #64748b;
}

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

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: #fff;
  box-shadow: 0 16px 34px rgba(34, 211, 238, 0.28);
}

.btn-soft {
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.62);
  color: var(--soft);
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.68);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow--prev {
  left: 24px;
  transform: translateY(-50%);
}

.hero-arrow--next {
  right: 24px;
  transform: translateY(-50%);
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

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

.home-stack,
.page-section {
  padding: 56px 0;
}

.home-stack {
  display: grid;
  gap: 72px;
}

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

.section-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.section-head h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 54%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

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

.text-link {
  color: var(--cyan);
  font-weight: 750;
}

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

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 2 / 3;
}

.movie-card--large .card-cover {
  aspect-ratio: 16 / 9;
}

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

.movie-card:hover .card-cover img,
.list-card:hover img {
  transform: scale(1.08);
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .card-gradient {
  opacity: 1;
}

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding-left: 4px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.9);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-year {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.card-body strong,
.list-content strong,
.rank-info strong {
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.movie-card:hover strong,
.list-card:hover strong,
.rank-row:hover strong {
  color: var(--cyan);
}

.card-body em,
.list-content em,
.rank-info em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
}

.card-meta span {
  overflow: hidden;
  max-width: 50%;
  padding: 3px 8px;
  border-radius: 8px;
  background: rgba(51, 65, 85, 0.55);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
  display: none;
}

.rail-item {
  flex: 0 0 280px;
}

.rail-actions {
  display: flex;
  gap: 10px;
}

.rail-actions button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.9);
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.rail-actions button:hover {
  background: rgba(51, 65, 85, 0.95);
  color: var(--cyan);
}

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

.category-tile {
  min-height: 136px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.78), rgba(8, 145, 178, 0.12));
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.category-tile strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

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

.chip-row,
.year-line {
  margin-bottom: 24px;
}

.chip,
.year-dot {
  border: 0;
  cursor: pointer;
}

.chip {
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.88);
  color: var(--soft);
  font-weight: 750;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.chip.is-active,
.chip:hover {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: #fff;
  box-shadow: 0 14px 32px rgba(34, 211, 238, 0.22);
}

.panel {
  display: none;
}

.panel.is-active {
  display: block;
}

.year-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.year-line::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 8px;
  left: 8px;
  height: 2px;
  background: #1e293b;
}

.year-dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #1e293b;
  color: var(--muted);
  font-weight: 850;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.year-dot.is-active,
.year-dot:hover {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  transform: scale(1.12);
}

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

.list-card {
  display: flex;
  overflow: hidden;
  min-height: 138px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.list-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.list-cover {
  flex: 0 0 132px;
  overflow: hidden;
  background: #0f172a;
}

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

.list-content {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 16px;
  min-width: 0;
}

.list-content span {
  color: #64748b;
  font-size: 12px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 60px 74px 1fr 70px;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-row:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

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

.rank-thumb {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 2 / 3;
  background: #0f172a;
}

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

.rank-info {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.rank-info span {
  color: #64748b;
  font-size: 13px;
}

.rank-score {
  justify-self: end;
  color: #facc15;
  font-size: 22px;
  font-weight: 900;
}

.page-main {
  padding-top: 64px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 58px;
  background: radial-gradient(circle at 78% 12%, rgba(34, 211, 238, 0.22), transparent 30rem), linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.94));
  border-bottom: 1px solid var(--border);
}

.page-hero--compact h1 {
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.search-box {
  margin-top: 26px;
}

.search-box input {
  width: min(560px, 100%);
  height: 52px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  outline: 0;
  background: rgba(15, 23, 42, 0.72);
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-box input:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 92px 0 48px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  filter: blur(4px) saturate(1.05);
  transform: scale(1.03);
}

.detail-bg-shade {
  background: linear-gradient(0deg, var(--bg), rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.58));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  background: #0f172a;
}

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

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

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

.detail-tags {
  margin-top: 16px;
}

.tag-cloud {
  margin: 18px 0 26px;
}

.tag-cloud span {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(30, 41, 59, 0.6);
  color: var(--soft);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 56px 0 24px;
}

.detail-main-col {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.watch-card,
.article-card,
.side-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.watch-card,
.article-card {
  padding: 22px;
}

.watch-card h2,
.article-card h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.article-card p {
  margin: 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.9;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #000;
}

.video-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 24px;
  border: 0;
  background: rgba(2, 6, 23, 0.46);
  color: #fff;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-cover-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.22), transparent 22rem), linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18));
}

.video-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding-left: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 42px rgba(34, 211, 238, 0.36);
  font-size: 30px;
}

.video-cover strong {
  position: relative;
  z-index: 1;
  font-size: 20px;
}

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

.detail-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.side-card {
  padding: 20px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  margin: 0;
}

.side-card dt {
  color: #64748b;
}

.side-card dd {
  margin: 0;
  color: var(--soft);
}

.side-related {
  display: grid;
  gap: 12px;
}

.side-related .list-card {
  min-height: 96px;
}

.side-related .list-cover {
  flex-basis: 78px;
}

.side-related .list-content {
  padding: 10px;
}

.side-related .list-content em,
.side-related .list-content span {
  display: none;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 38px 0 26px;
}

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

.site-footer p {
  max-width: 430px;
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

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

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

.footer-bottom {
  padding: 16px 0 28px;
  color: #64748b;
  font-size: 14px;
}

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

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

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

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

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

  .menu-toggle,
  .mobile-nav {
    display: block;
  }

  .hero {
    height: auto;
    min-height: 620px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-copy {
    padding-right: 12px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid--three,
  .movie-grid--four,
  .movie-grid--six,
  .category-grid,
  .list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-poster {
    width: min(260px, 72vw);
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-text em {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p,
  .page-hero p,
  .lead-text {
    font-size: 16px;
  }

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

  .btn {
    width: 100%;
  }

  .movie-grid--three,
  .movie-grid--four,
  .movie-grid--six,
  .category-grid {
    gap: 12px;
  }

  .card-body {
    padding: 11px;
  }

  .card-body em,
  .card-meta {
    display: none;
  }

  .list-grid,
  .movie-grid--three,
  .movie-grid--four,
  .movie-grid--six,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .list-cover {
    flex-basis: 108px;
  }

  .rank-row {
    grid-template-columns: 44px 58px 1fr;
  }

  .rank-score {
    display: none;
  }

  .year-line {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .year-line::before {
    display: none;
  }

  .watch-card,
  .article-card,
  .side-card {
    padding: 16px;
  }
}
