* {
  box-sizing: border-box;
}

:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: #1e293b;
  --panel-deep: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-light: #cbd5e1;
  --red: #ef4444;
  --red-deep: #dc2626;
  --orange: #f97316;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-text,
.footer-brand span:last-child {
  font-size: 20px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  padding-left: 2px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  color: var(--muted-light);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--red), var(--orange));
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

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

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: rgba(15, 23, 42, 0.75);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

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

.mobile-panel .nav-link {
  display: block;
  padding: 12px 8px;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 5s ease;
}

.hero-slide.active > img {
  transform: scale(1.11);
}

.hero-overlay,
.detail-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.82) 42%, rgba(2, 6, 23, 0.38) 100%);
}

.hero-content {
  position: absolute;
  left: max(16px, calc((100% - 1180px) / 2));
  bottom: 86px;
  width: min(680px, calc(100% - 32px));
  display: grid;
  gap: 18px;
}

.eyebrow,
.hero-content .eyebrow,
.detail-info .eyebrow,
.page-hero > span,
.section-title > span {
  width: max-content;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(239, 68, 68, 0.32);
  border-radius: 999px;
  padding: 6px 12px;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.18);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
}

.hero-content h1,
.hero-content h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.02;
  max-width: 760px;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.65);
}

.hero-content p {
  margin: 0;
  max-width: 650px;
  color: var(--muted-light);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.primary-btn,
.ghost-btn,
.section-title a,
.category-card-large span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.34);
}

.ghost-btn,
.section-title a,
.category-card-large span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-title a:hover,
.category-card-large a:hover span {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.section {
  padding: 72px 0;
}

.hero-search {
  padding-top: 48px;
}

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

.section-title.centered {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.section-title h2,
.page-hero h1,
.story-section h2,
.player-section h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-title p,
.page-hero p {
  margin: 12px 0 0;
  color: var(--muted-light);
  line-height: 1.8;
}

.wide-band {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.search-panel {
  margin: 0 auto 32px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.search-panel input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 16px;
  padding: 0 18px;
  color: #fff;
  outline: none;
  background: rgba(2, 6, 23, 0.72);
}

.search-panel input:focus {
  border-color: rgba(239, 68, 68, 0.8);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-chip {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted-light);
  background: rgba(30, 41, 59, 0.72);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #fff;
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.22);
}

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

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

.movie-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(30, 41, 59, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 68, 68, 0.34);
  box-shadow: 0 26px 70px rgba(239, 68, 68, 0.16);
}

.poster-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #111827;
}

.card-small .poster-wrap,
.explore-grid .poster-wrap,
.search-grid .poster-wrap {
  height: 190px;
}

.card-large .poster-wrap {
  height: 280px;
}

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

.movie-card:hover .poster-wrap img {
  transform: scale(1.1);
}

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0.04));
  transition: opacity 0.2s ease;
}

.movie-card:hover .poster-wrap::after {
  opacity: 0.88;
}

.year-badge,
.meta-badges span {
  position: absolute;
  z-index: 2;
  border-radius: 9px;
  padding: 5px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}

.year-badge {
  top: 12px;
  right: 12px;
}

.meta-badges {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-badges span:first-child {
  background: rgba(239, 68, 68, 0.88);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  border-radius: 999px;
  color: #fff;
  opacity: 0;
  background: rgba(239, 68, 68, 0.92);
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
  min-height: 156px;
  padding: 16px;
}

.card-body h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.movie-card:hover .card-body h2 {
  color: #f87171;
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span {
  border-radius: 999px;
  padding: 4px 8px;
  color: #fecaca;
  font-size: 12px;
  background: rgba(239, 68, 68, 0.13);
}

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

.category-tile {
  position: relative;
  min-height: 150px;
  border-radius: 20px;
  overflow: hidden;
  background: #111827;
  border: 1px solid var(--line);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.5s ease, opacity 0.2s ease;
}

.category-tile span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  font-size: 20px;
  font-weight: 900;
}

.category-tile:hover img {
  opacity: 0.82;
  transform: scale(1.08);
}

.horizontal-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-snap-type: x proximity;
}

.horizontal-item {
  width: 310px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

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

.compact-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.74);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 68, 68, 0.35);
}

.compact-card a {
  display: grid;
  grid-template-columns: auto 70px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.compact-card img {
  width: 70px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
}

.compact-card h2 {
  margin: 0 0 8px;
  font-size: 16px;
}

.compact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.rank-number {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.page-main {
  padding-top: 98px;
  padding-bottom: 80px;
}

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

.breadcrumb a {
  color: #fca5a5;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 10px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 42px;
  background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.3), transparent 34%), linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  box-shadow: var(--shadow);
}

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

.page-hero p {
  max-width: 820px;
}

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

.category-card-large {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.25);
}

.category-card-large a {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  min-height: 210px;
  padding: 18px;
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  min-height: 174px;
}

.category-covers img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.category-card-large h2 {
  margin: 10px 0;
  font-size: 26px;
}

.category-card-large p {
  color: var(--muted-light);
  line-height: 1.8;
}

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

.detail-main {
  padding-top: 0;
}

.detail-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  padding-top: 96px;
}

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

.detail-hero-content {
  position: relative;
  z-index: 2;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: end;
  gap: 34px;
  padding-top: 36px;
}

.detail-poster img {
  width: 300px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.detail-info h1 {
  margin: 16px 0;
  max-width: 780px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.detail-info p {
  max-width: 780px;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-content {
  padding-top: 64px;
}

.player-section,
.story-section {
  margin-bottom: 48px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.player-section h2,
.story-section h2 {
  margin-bottom: 18px;
}

.watch-player {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.28), rgba(2, 6, 23, 0.52));
  cursor: pointer;
}

.play-layer span {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 999px;
  font-size: 36px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 0 70px rgba(239, 68, 68, 0.45);
}

.watch-player.is-ready {
  cursor: auto;
}

.watch-player.is-ready .play-layer {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.story-section p {
  color: var(--muted-light);
  font-size: 17px;
  line-height: 1.95;
}

.related-section {
  padding-top: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), #020617);
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.footer-shell p {
  color: var(--muted);
  line-height: 1.8;
}

.footer-shell h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer-shell a:not(.footer-brand) {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-shell a:hover {
  color: #fca5a5;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid var(--line);
  color: #64748b;
  font-size: 14px;
  text-align: center;
}

.search-empty {
  display: none;
  margin: 24px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted-light);
  text-align: center;
  background: rgba(15, 23, 42, 0.72);
}

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

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

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

  .mobile-toggle {
    display: block;
  }

  body.nav-open .mobile-panel {
    display: block;
  }

  .hero-carousel {
    height: 76vh;
    min-height: 560px;
  }

  .hero-content {
    bottom: 72px;
  }

  .hero-arrow {
    display: none;
  }

  .section-title {
    display: grid;
    align-items: start;
  }

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

  .category-strip,
  .ranking-grid,
  .ranking-list,
  .category-large-grid {
    grid-template-columns: 1fr;
  }

  .category-card-large a {
    grid-template-columns: 1fr;
  }

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

  .detail-poster img {
    width: 220px;
    height: 310px;
  }

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

@media (max-width: 560px) {
  .shell,
  .nav-shell,
  .mobile-panel,
  .footer-shell,
  .footer-bottom {
    width: min(100% - 22px, 1180px);
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 38px;
  }

  .hero-actions {
    display: grid;
  }

  .movie-grid,
  .explore-grid,
  .search-grid,
  .category-grid,
  .ranking-featured {
    grid-template-columns: 1fr;
  }

  .poster-wrap,
  .card-small .poster-wrap,
  .explore-grid .poster-wrap,
  .search-grid .poster-wrap {
    height: 250px;
  }

  .page-hero,
  .player-section,
  .story-section {
    border-radius: 20px;
    padding: 20px;
  }

  .compact-card a {
    grid-template-columns: auto 58px 1fr;
    gap: 10px;
  }

  .compact-card img {
    width: 58px;
    height: 76px;
  }
}
