:root {
  --bg: #f8fafc;
  --ink: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --slate: #0f172a;
  --blue: #1e3a8a;
  --yellow: #facc15;
  --orange: #f97316;
  --red: #ef4444;
  --radius: 22px;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  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,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, #0f172a, #1e3a8a, #0f172a);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.28);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.34);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-4deg);
}

.brand-text {
  font-size: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 15px;
}

.desktop-nav a,
.mobile-panel a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease, background 0.25s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--yellow);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
}

.header-search input,
.mobile-panel input,
.filter-panel input,
.filter-panel select {
  border: 0;
  outline: 0;
}

.header-search input {
  width: 180px;
  padding: 8px 10px;
  color: #fff;
  background: transparent;
}

.header-search input::placeholder,
.mobile-panel input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.header-search button,
.mobile-panel button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  color: #111827;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-panel form {
  display: flex;
  gap: 8px;
  margin: 4px 0 8px;
}

.mobile-panel input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  padding: 11px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.mobile-panel a {
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 38%, rgba(250, 204, 21, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.1));
}

.hero-content {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 50px;
}

.hero-copy {
  max-width: 710px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #111827;
  background: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

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

.hero p,
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.hero-meta span,
.detail-meta span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, #eab308, #f97316);
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.35);
}

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

.primary-btn:hover {
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.5);
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-poster {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-4px);
}

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

.hero-poster span {
  display: block;
  padding: 15px;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.92);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  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.active {
  width: 34px;
  background: var(--yellow);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -46px;
  position: relative;
  z-index: 5;
}

.intro-strip a {
  min-height: 110px;
  padding: 22px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  box-shadow: var(--shadow);
}

.intro-strip strong {
  display: block;
  color: var(--yellow);
  font-size: 34px;
  line-height: 1;
}

.intro-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.section-block {
  padding: 70px 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.section-heading a {
  color: #2563eb;
  font-weight: 800;
}

.section-heading.on-dark h2,
.section-heading.on-dark a {
  color: #fff;
}

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

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

.media-card {
  position: relative;
}

.media-card a {
  display: block;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.media-card a:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.thumb {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111827;
}

.thumb img,
.category-cover img,
.detail-poster,
.player-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb img,
.media-card-wide img,
.media-card-landscape img {
  transition: transform 0.5s ease;
}

.media-card a:hover img {
  transform: scale(1.09);
}

.thumb-mask {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.media-card a:hover .thumb-mask {
  opacity: 1;
}

.hot-badge,
.rank-no,
.score-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.rank-no {
  left: 10px;
  right: auto;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.card-copy {
  padding: 13px;
}

.card-copy h3,
.media-card-landscape h3,
.wide-copy h3 {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-copy p,
.media-card-landscape p,
.wide-copy p {
  display: -webkit-box;
  min-height: 40px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.badge-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.card-meta {
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.dark-section {
  color: #fff;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
}

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

.media-card-wide a {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 225px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.media-card-wide img {
  height: 100%;
  object-fit: cover;
}

.wide-copy {
  padding: 20px;
}

.wide-copy h3,
.dark-section .wide-copy h3,
.glow-section .wide-copy h3 {
  color: #fff;
}

.wide-copy p,
.dark-section .wide-copy p,
.glow-section .wide-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.badge-row span,
.tag-row span {
  border-radius: 999px;
  padding: 4px 9px;
  color: #334155;
  background: #e2e8f0;
  font-size: 12px;
  font-weight: 700;
}

.dark-section .badge-row span,
.glow-section .badge-row span,
.detail-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 32px;
}

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

.media-card-landscape .landscape-thumb {
  aspect-ratio: 16 / 10;
}

.media-card-landscape h3,
.media-card-landscape p {
  padding: 0 14px;
}

.media-card-landscape h3 {
  padding-top: 14px;
}

.media-card-landscape p {
  padding-bottom: 14px;
}

.rank-box {
  position: sticky;
  top: 92px;
  align-self: start;
  border-radius: 28px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.rank-line {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto 42px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: #f8fafc;
  transition: background 0.25s ease, transform 0.25s ease;
}

.rank-line:hover {
  background: #e0f2fe;
  transform: translateX(3px);
}

.rank-line span,
.rank-feature span {
  color: var(--orange);
  font-weight: 900;
}

.rank-line strong,
.rank-line em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.rank-line b {
  color: #ca8a04;
}

.glow-section {
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(250, 204, 21, 0.22), transparent 28%),
    linear-gradient(135deg, #581c87, #831843, #7c2d12);
}

.scroll-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(260px, 1fr));
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

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

.category-tile {
  min-height: 170px;
  border-radius: 24px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e40af);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
}

.category-tile span {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
}

.category-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  padding: 86px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(250, 204, 21, 0.22), transparent 32%),
    linear-gradient(135deg, #0f172a, #1d4ed8, #0f172a);
}

.small-hero,
.search-hero,
.ranking-hero,
.category-hero {
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

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

.filter-shell {
  position: relative;
  z-index: 4;
  margin-top: -32px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 160px;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border-radius: 14px;
  padding: 12px 14px;
  color: #0f172a;
  background: #f1f5f9;
}

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

.category-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  border-radius: 26px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.category-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: 18px;
  background: #0f172a;
}

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

.category-copy h2 {
  margin: 0 0 10px;
  color: #0f172a;
}

.category-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.mini-links {
  display: grid;
  gap: 7px;
}

.mini-links a {
  color: #2563eb;
  font-weight: 700;
}

.ranking-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  align-items: center;
}

.rank-feature-box {
  display: grid;
  gap: 10px;
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.rank-feature {
  display: grid;
  grid-template-columns: 28px 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

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

.rank-feature strong,
.rank-feature em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-feature em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-style: normal;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: #fff;
  background: #020617;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(250, 204, 21, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.45));
}

.detail-head {
  position: relative;
  padding: 46px 0 74px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  border: 5px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  max-width: 850px;
}

.detail-one-line {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
}

.player-section {
  margin-top: -70px;
  position: relative;
  z-index: 5;
}

.player-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 8px solid #0f172a;
  border-radius: 30px;
  background: #020617;
  box-shadow: var(--shadow);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: rgba(2, 6, 23, 0.38);
  cursor: pointer;
}

.player-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.play-circle {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding-left: 5px;
  color: #fff;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 16px 38px rgba(249, 115, 22, 0.42);
  font-size: 30px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  padding-top: 54px;
}

.detail-content article,
.info-panel {
  border-radius: 26px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.detail-content h2,
.info-panel h2 {
  margin: 0 0 16px;
}

.detail-content p {
  margin: 0 0 26px;
  color: #334155;
  font-size: 17px;
}

.info-panel {
  align-self: start;
  position: sticky;
  top: 92px;
}

.info-panel dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

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

.info-panel dd {
  margin: 0;
  font-weight: 700;
}

.info-panel a {
  color: #2563eb;
}

.site-footer {
  margin-top: 60px;
  color: #fff;
  background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 50px 0 34px;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 18px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.66);
}

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

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
}

[data-card].is-hidden {
  display: none;
}

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

  .menu-toggle {
    display: block;
  }

  .hero-content,
  .split-layout,
  .ranking-lead,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

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

  .rank-box,
  .info-panel {
    position: static;
  }
}

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

  .header-inner {
    min-height: 64px;
  }

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

  .hero {
    height: 660px;
  }

  .hero-content {
    align-items: end;
    padding-bottom: 92px;
  }

  .hero-meta,
  .detail-meta {
    gap: 8px;
  }

  .intro-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -28px;
  }

  .poster-grid,
  .dense-grid,
  .compact-grid,
  .wide-grid,
  .category-grid,
  .category-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

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

  .media-card-wide a,
  .category-card,
  .detail-layout,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .media-card-wide img {
    aspect-ratio: 16 / 10;
  }

  .rank-line {
    grid-template-columns: 28px minmax(0, 1fr) 40px;
  }

  .rank-line em {
    display: none;
  }

  .detail-layout {
    gap: 24px;
  }

  .detail-poster {
    width: 210px;
  }

  .player-section {
    margin-top: -42px;
  }

  .player-frame {
    border-width: 4px;
    border-radius: 18px;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .poster-grid,
  .dense-grid,
  .compact-grid,
  .wide-grid,
  .category-grid,
  .category-overview {
    grid-template-columns: 1fr 1fr;
  }

  .card-copy h3 {
    font-size: 14px;
  }

  .intro-strip a {
    min-height: 92px;
    padding: 16px;
  }

  .intro-strip strong {
    font-size: 26px;
  }
}
