:root {
  color-scheme: light;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --text: #1f2937;
  --muted: #64748b;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  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: linear-gradient(135deg, var(--slate-50) 0%, var(--amber-50) 48%, var(--slate-100) 100%);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--amber-200);
  box-shadow: 0 4px 20px rgba(146, 64, 14, 0.08);
}

.header-inner {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--amber-800));
  box-shadow: 0 10px 26px rgba(217, 119, 6, 0.28);
}

.brand-name {
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--amber-700), var(--amber-900, #78350f));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-weight: 650;
  color: #374151;
}

.primary-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--amber-600);
  transition: transform 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--amber-700);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--slate-700);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.icon-button:hover {
  color: var(--amber-700);
  background: var(--amber-100);
}

.mobile-menu-button {
  display: none;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--amber-200);
  padding: 10px 16px 16px;
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-nav a {
  padding: 10px 2px;
  color: #374151;
  font-weight: 650;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
  background-position: center;
  background-size: cover;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.16) 100%),
    radial-gradient(circle at 25% 50%, rgba(217, 119, 6, 0.34), transparent 38%);
}

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

.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(245, 158, 11, 0.42), transparent 30%),
    radial-gradient(circle at 80% 40%, rgba(180, 83, 9, 0.28), transparent 35%),
    linear-gradient(135deg, #111827, #0f172a 55%, #451a03);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 84px 0 96px;
}

.hero-copy {
  width: min(680px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--amber-200);
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.32);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(38px, 7vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 0 0 24px;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-meta span,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  color: var(--white);
  background: var(--amber-600);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.34);
}

.button-primary:hover {
  transform: translateY(-2px) scale(1.01);
  background: var(--amber-700);
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.44);
}

.button-light {
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.button-light:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(520px, 100%);
  margin-top: 26px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 12px;
  color: var(--slate-800);
}

.hero-search button {
  border: 0;
  border-radius: 999px;
  background: var(--amber-600);
  color: white;
  height: 42px;
  padding: 0 18px;
  font-weight: 750;
  cursor: pointer;
}

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

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

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

.section {
  padding: 66px 0;
}

.section.compact {
  padding: 42px 0;
}

.section-panel {
  padding: 44px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--amber-50), #fff7ed);
}

.section-dark {
  padding: 48px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
  box-shadow: var(--shadow);
}

.section-heading {
  margin-bottom: 30px;
}

.section-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--amber-700);
  font-weight: 800;
  margin-bottom: 8px;
}

.section-heading h2,
.page-title h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--slate-800);
}

.section-heading p,
.page-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
}

.feature-cover,
.poster-cover,
.media-cover,
.rank-cover {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.24), transparent 28%),
    linear-gradient(135deg, var(--slate-800), var(--slate-900));
}

.feature-cover {
  aspect-ratio: 16 / 9;
}

.feature-cover img,
.poster-cover img,
.media-cover img,
.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.2s ease;
}

.feature-card:hover img,
.poster-card:hover img,
.media-card:hover img,
.rank-card:hover img {
  transform: scale(1.08);
}

.cover-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.05));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover .cover-overlay,
.poster-card:hover .cover-overlay,
.media-card:hover .cover-overlay {
  opacity: 1;
}

.play-badge {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--amber-600);
  box-shadow: 0 18px 38px rgba(217, 119, 6, 0.38);
  transform: scale(0.85);
  transition: transform 0.25s ease;
}

.feature-card:hover .play-badge,
.poster-card:hover .play-badge,
.media-card:hover .play-badge {
  transform: scale(1);
}

.feature-body,
.poster-body,
.media-body {
  padding: 18px;
}

.card-title {
  margin: 0 0 8px;
  color: var(--slate-800);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-card:hover .card-title,
.poster-card:hover .card-title,
.media-card:hover .card-title,
.rank-card:hover .card-title {
  color: var(--amber-700);
}

.card-desc {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.tag,
.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--amber-700);
  background: var(--amber-100);
}

.tag.slate,
.meta-chip.slate {
  color: var(--slate-600);
  background: var(--slate-100);
}

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

.category-card {
  display: block;
  padding: 22px;
  min-height: 160px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-400);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.category-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--amber-500), #ea580c);
}

.category-card h3 {
  margin: 0 0 8px;
  color: var(--slate-800);
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.poster-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.82);
  background: white;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.poster-card:hover {
  transform: translateY(-5px);
  border-color: var(--amber-400);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.poster-cover {
  aspect-ratio: 2 / 3;
}

.poster-cover .cover-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.06));
}

.poster-body {
  padding: 12px;
}

.poster-body .card-title {
  min-height: 42px;
  font-size: 15px;
  margin-bottom: 9px;
}

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

.media-card {
  display: flex;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  background: white;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-400);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.media-cover {
  width: 180px;
  min-width: 180px;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
}

.masonry {
  columns: 3 280px;
  column-gap: 22px;
}

.masonry .feature-card {
  margin-bottom: 22px;
  break-inside: avoid;
}

.page-hero {
  padding: 58px 0 42px;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255, 251, 235, 0.86), rgba(241, 245, 249, 0.92));
  border-bottom: 1px solid var(--amber-100);
}

.page-title {
  display: grid;
  gap: 10px;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

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

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

.detail-panel,
.side-panel,
.text-panel {
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.detail-panel {
  overflow: hidden;
}

.detail-content {
  padding: 28px;
}

.detail-content h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.12;
  color: var(--slate-800);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--slate-200);
}

.article-block {
  margin: 0 0 28px;
}

.article-block h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--slate-800);
}

.article-block p {
  margin: 0;
  color: #374151;
  line-height: 1.86;
}

.review-box {
  padding: 22px;
  border-radius: 16px;
  color: #374151;
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #020617;
}

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

.player-loading,
.player-message,
.player-big-play {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.player-loading {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(255, 255, 255, 0.24);
  border-top-color: var(--amber-500);
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

.player-loading.hidden,
.player-big-play.hidden,
.player-message.hidden {
  display: none;
}

.player-message {
  width: min(88%, 520px);
  padding: 18px 22px;
  border-radius: 16px;
  color: white;
  text-align: center;
  background: rgba(15, 23, 42, 0.86);
}

.player-big-play {
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(217, 119, 6, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.player-big-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--amber-700);
}

.side-panel {
  position: sticky;
  top: 88px;
  padding: 22px;
}

.side-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

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

.related-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.related-item .rank-cover {
  width: 118px;
  min-width: 118px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
}

.related-item h3 {
  margin: 0 0 5px;
  color: var(--slate-800);
  font-size: 14px;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-item span {
  color: var(--muted);
  font-size: 12px;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 68px 160px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  background: white;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.rank-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  font-size: 20px;
  font-weight: 850;
  background: linear-gradient(135deg, var(--amber-500), #ea580c);
}

.rank-card .rank-cover {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}

.rank-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.rank-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-status {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.empty-state {
  display: none;
  padding: 46px 24px;
  border-radius: var(--radius-xl);
  color: var(--muted);
  text-align: center;
  background: white;
  border: 1px dashed var(--slate-300);
}

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

.site-footer {
  margin-top: 66px;
  color: #cbd5e1;
  background: linear-gradient(90deg, var(--slate-800), var(--slate-900), var(--slate-800));
  border-top: 1px solid var(--slate-700);
}

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

.footer-grid p {
  color: #94a3b8;
  line-height: 1.75;
  max-width: 520px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 17px;
}

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

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

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  font-size: 14px;
  text-align: center;
}

.text-panel {
  padding: 34px;
}

.text-panel h2 {
  margin: 30px 0 10px;
  color: var(--slate-800);
}

.text-panel h2:first-child {
  margin-top: 0;
}

.text-panel p {
  color: #475569;
  line-height: 1.85;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

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

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

  .side-panel {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: inline-grid;
  }

  .hero {
    min-height: 560px;
  }

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

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

  .media-list {
    grid-template-columns: 1fr;
  }

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

  .rank-card {
    grid-template-columns: 56px 130px minmax(0, 1fr);
  }

  .rank-card .button {
    grid-column: 2 / -1;
    justify-self: start;
  }
}

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

  .header-inner {
    height: 62px;
  }

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

  .hero {
    min-height: 590px;
  }

  .hero-content {
    padding: 68px 0 96px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-search {
    align-items: stretch;
  }

  .hero-search {
    border-radius: 18px;
    flex-direction: column;
  }

  .hero-search input {
    width: 100%;
    min-height: 42px;
  }

  .hero-search button {
    width: 100%;
  }

  .section {
    padding: 44px 0;
  }

  .section-panel,
  .section-dark {
    padding: 24px;
    border-radius: 24px;
  }

  .grid-featured,
  .poster-grid,
  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .feature-body {
    padding: 14px;
  }

  .media-card {
    display: block;
  }

  .media-cover {
    width: 100%;
    min-width: 0;
    margin-bottom: 14px;
  }

  .detail-content {
    padding: 20px;
  }

  .rank-card {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .rank-card .rank-cover {
    grid-column: 1 / -1;
  }

  .rank-card .button {
    grid-column: 1 / -1;
  }

  .related-item .rank-cover {
    width: 104px;
    min-width: 104px;
  }
}
