* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-50: #f0fdfa;
  --white: #ffffff;
  --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 10px 24px rgba(15, 23, 42, 0.11);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-800);
  background: linear-gradient(180deg, var(--slate-50), var(--white) 35%, var(--slate-100));
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-800), var(--slate-700), var(--slate-800));
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.18);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, var(--teal-400), var(--teal-600));
  box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.12);
  flex: 0 0 auto;
}

.brand-mark span {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--white);
  margin-left: 3px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--slate-300);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.nav-link {
  position: relative;
  color: var(--slate-100);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

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

.mobile-nav-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mobile-nav-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
}

.mobile-nav {
  display: none;
  padding: 8px 16px 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.12);
  background: var(--slate-800);
}

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

.mobile-link {
  display: block;
  padding: 12px 8px;
  border-radius: 12px;
  color: var(--slate-100);
  font-size: 15px;
  font-weight: 600;
}

.mobile-link:hover,
.mobile-link.is-active {
  color: var(--teal-400);
  background: rgba(255, 255, 255, 0.06);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.74) 45%, rgba(15, 23, 42, 0.18));
}

.hero-content {
  position: absolute;
  inset: 0;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1180px;
  color: var(--white);
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--teal-500);
  background: rgba(20, 184, 166, 0.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-content h1 {
  width: min(760px, 100%);
  margin: 18px 0 18px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-content p {
  width: min(680px, 100%);
  margin: 0 0 24px;
  color: var(--slate-200);
  font-size: 18px;
  line-height: 1.8;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta span,
.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--slate-100);
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: var(--teal-500);
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.35);
}

.primary-button:hover {
  background: var(--teal-600);
  transform: translateY(-2px) scale(1.02);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
}

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

.small-actions .primary-button,
.small-actions .ghost-button {
  min-height: 42px;
  padding: 0 18px;
}

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

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

.hero-dot.is-active {
  background: var(--teal-400);
}

.section-shell,
.ranking-band,
.player-shell,
.detail-shell,
.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.section-shell {
  padding: 64px 0;
}

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.player-head h2,
.detail-text h2,
.category-body h2,
.card-body h2 {
  margin: 0;
  color: var(--slate-900);
  letter-spacing: -0.035em;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.section-heading p {
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.section-heading.dark h2,
.section-heading.dark p {
  color: var(--white);
}

.section-heading.dark p {
  color: var(--slate-300);
}

.text-link {
  color: var(--teal-600);
  font-weight: 800;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--teal-700);
}

.text-link.light {
  color: var(--teal-400);
}

.quick-search {
  padding-top: 34px;
  padding-bottom: 34px;
}

.search-panel,
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.search-panel h2 {
  margin: 10px 0 0;
  color: var(--slate-900);
  font-size: 24px;
}

.filter-row,
.toolbar {
  flex-wrap: wrap;
}

.filter-row {
  display: flex;
  gap: 10px;
  min-width: min(520px, 100%);
}

.movie-search,
.region-filter,
.type-filter {
  min-height: 44px;
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  color: var(--slate-800);
  background: var(--white);
  outline: none;
}

.movie-search {
  flex: 1 1 230px;
  min-width: 220px;
  padding: 0 14px;
}

.region-filter,
.type-filter {
  padding: 0 12px;
}

.movie-search:focus,
.region-filter:focus,
.type-filter:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.16);
}

.category-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 2px 4px;
  scrollbar-width: thin;
}

.category-chip {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  color: var(--slate-700);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.category-chip:hover,
.category-chip.is-active {
  color: var(--white);
  border-color: var(--teal-500);
  background: var(--teal-500);
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
}

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--slate-900);
}

.movie-card.is-compact .card-media {
  aspect-ratio: 3 / 4;
}

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

.movie-card:hover .card-media img {
  transform: scale(1.08);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, 0.62));
  opacity: 0.6;
  transition: opacity 0.24s ease;
}

.movie-card:hover .card-media::after {
  opacity: 0.86;
}

.play-dot {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(20, 184, 166, 0.92);
  font-size: 14px;
  transform: scale(0.92);
  transition: transform 0.2s ease;
}

.movie-card:hover .play-dot {
  transform: scale(1.04);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-500);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(20, 184, 166, 0.28);
}

.card-body {
  padding: 18px;
}

.card-body h2 {
  font-size: 18px;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: var(--teal-600);
}

.card-body p {
  min-height: 52px;
  margin: 10px 0 14px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.65;
}

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

.card-meta {
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 800;
}

.card-meta span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--slate-300);
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  padding: 5px 8px;
  border-radius: 8px;
  color: var(--teal-700);
  background: var(--teal-50);
  font-size: 12px;
  font-weight: 800;
}

.ranking-band {
  padding: 54px 34px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.23);
}

.ranking-band .movie-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
}

.ranking-band .card-body h2,
.ranking-band .card-body p {
  color: var(--white);
}

.ranking-band .card-body p,
.ranking-band .card-meta {
  color: var(--slate-300);
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.horizontal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.horizontal-card img {
  width: 150px;
  height: 105px;
  object-fit: cover;
}

.horizontal-card strong,
.horizontal-card small {
  display: block;
}

.horizontal-card strong {
  color: var(--slate-900);
  font-size: 18px;
}

.horizontal-card small {
  margin-top: 8px;
  color: var(--slate-500);
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: var(--white);
  background: radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.28), transparent 28%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
}

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

.page-hero h1 {
  margin: 18px 0 14px;
  color: var(--white);
  font-size: clamp(36px, 6vw, 58px);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--slate-200);
  font-size: 18px;
  line-height: 1.8;
}

.compact-hero {
  padding: 70px 0;
}

.ranking-hero {
  background: radial-gradient(circle at 20% 10%, rgba(20, 184, 166, 0.34), transparent 25%), linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

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

.category-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.category-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--slate-900);
}

.category-cover img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.category-body {
  padding: 22px;
}

.category-body h2 {
  font-size: 23px;
}

.category-body p {
  min-height: 76px;
  color: var(--slate-600);
  line-height: 1.7;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.45;
}

.detail-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.84));
}

.detail-shell {
  position: relative;
  z-index: 2;
  padding: 38px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--slate-300);
  font-size: 14px;
  font-weight: 700;
}

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

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

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.42);
}

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

.detail-copy h1 {
  margin: 18px 0 16px;
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
}

.detail-copy .lead {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--slate-200);
  font-size: 18px;
  line-height: 1.85;
}

.detail-copy .detail-meta span {
  color: var(--white);
}

.large-tags span {
  padding: 8px 12px;
}

.player-section {
  padding: 56px 0 18px;
  background: linear-gradient(180deg, var(--slate-950), var(--slate-900));
}

.player-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.player-head h2 {
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(26px, 4vw, 40px);
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--slate-950);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.45);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  pointer-events: auto;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.26), rgba(2, 6, 23, 0.82));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.big-play {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--teal-500);
  box-shadow: 0 18px 38px rgba(20, 184, 166, 0.35);
  font-size: 34px;
  padding-left: 5px;
}

.player-overlay strong {
  font-size: 22px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
}

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

.detail-text article {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.detail-text h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.detail-text p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.9;
}

.site-footer {
  margin-top: 48px;
  padding: 54px 0 22px;
  color: var(--slate-300);
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
}

.footer-logo .brand-text strong {
  color: var(--white);
}

.footer-brand p {
  max-width: 480px;
  color: var(--slate-400);
  line-height: 1.75;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

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

.site-footer a:hover {
  color: var(--teal-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(226, 232, 240, 0.12);
  color: var(--slate-400);
  font-size: 14px;
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
  }

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

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

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

  .mobile-nav-button {
    display: block;
  }

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

  .hero-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.95));
  }

  .hero-content {
    padding-top: 28px;
    justify-content: flex-end;
    padding-bottom: 92px;
  }

  .search-panel,
  .toolbar,
  .section-heading,
  .player-head {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-row,
  .movie-search,
  .region-filter,
  .type-filter {
    width: 100%;
    min-width: 0;
  }

  .four-cols,
  .three-cols,
  .category-grid,
  .horizontal-grid,
  .detail-text {
    grid-template-columns: 1fr;
  }

  .ranking-band {
    width: min(1180px, calc(100% - 20px));
    padding: 36px 16px;
    border-radius: 24px;
  }

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

  .detail-poster {
    max-width: 280px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .section-shell,
  .ranking-band,
  .player-shell,
  .detail-shell,
  .footer-grid,
  .footer-bottom,
  .page-hero > div {
    width: min(100% - 22px, 1180px);
  }

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

  .brand-text small {
    display: none;
  }

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

  .hero-content p,
  .page-hero p,
  .detail-copy .lead {
    font-size: 16px;
  }

  .hero-actions,
  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .horizontal-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .horizontal-card img {
    width: 112px;
    height: 92px;
  }

  .player-wrap {
    border-radius: 18px;
  }

  .big-play {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}
