:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-soft: 0 14px 45px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 22px 60px rgba(2, 132, 199, 0.20);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--slate-700);
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.65) 0%, #ffffff 36%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(186, 230, 253, 0.72);
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--sky-400), var(--blue-500));
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.34);
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 20px;
  color: transparent;
  background: linear-gradient(90deg, var(--sky-600), var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-copy em {
  margin-top: 3px;
  font-size: 12px;
  font-style: normal;
  color: var(--slate-500);
}

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

.nav-link,
.mobile-nav-link {
  border-radius: 12px;
  color: #526579;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 9px 16px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: #0369a1;
  background: rgba(224, 242, 254, 0.9);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--slate-700);
}

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

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

.mobile-nav-link {
  padding: 10px 14px;
}

.page-flow {
  display: grid;
  gap: 56px;
  padding: 32px 0 8px;
}

.hero-shell {
  display: grid;
  gap: 18px;
  margin-bottom: 8px;
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--slate-900);
  box-shadow: var(--shadow-soft);
}

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

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

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

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: clamp(24px, 7vw, 78px);
  width: min(640px, calc(100% - 48px));
  transform: translateY(-50%);
  color: #fff;
}

.hero-kicker,
.detail-meta,
.movie-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-kicker span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-kicker span:first-child {
  background: var(--sky-500);
}

.hero-content h1 {
  margin: 18px 0 16px;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  color: #fff;
}

.hero-content p {
  max-width: 660px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.hero-meta span + span::before {
  content: "•";
  margin-right: 12px;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 22px 0 28px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 9px;
  font-size: 13px;
}

.hero-tags span {
  padding: 6px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

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

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

.primary-button {
  color: #fff;
  background: var(--sky-500);
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.35);
}

.primary-button:hover {
  background: var(--sky-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

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

.hero-arrow.prev {
  left: 18px;
}

.hero-arrow.next {
  right: 18px;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: #fff;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(186, 230, 253, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.hero-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  color: var(--slate-700);
  background: #fff;
  outline: none;
}

.hero-search input {
  padding: 0 16px;
}

.hero-search button,
.filter-panel button {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sky-500), var(--blue-500));
  cursor: pointer;
}

.hero-search button {
  padding: 0 24px;
}

.content-section {
  display: grid;
  gap: 22px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.15;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--slate-500);
}

.section-heading a {
  color: var(--sky-600);
  font-weight: 700;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 250px;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 4px 18px;
  scroll-snap-type: x proximity;
}

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

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

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

.poster-card {
  min-width: 0;
}

.poster-link,
.large-card,
.list-card,
.category-overview-card,
.filter-panel,
.player-card,
.detail-section {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
}

.poster-link {
  display: grid;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.poster-link:hover {
  border-color: rgba(14, 165, 233, 0.42);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--slate-100);
}

.poster-frame img,
.large-cover img,
.list-poster img,
.detail-poster img,
.category-tile img,
.category-overview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.poster-link:hover .poster-frame img,
.large-card:hover img,
.list-card:hover img,
.category-tile:hover img,
.category-overview-card:hover img {
  transform: scale(1.06);
}

.poster-layer,
.cover-shade,
.tile-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.64));
  transition: opacity 0.22s ease;
}

.poster-link:hover .poster-layer,
.category-tile:hover .tile-shade {
  opacity: 1;
}

.type-badge,
.rank-badge,
.pill {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
}

.type-badge {
  top: 10px;
  right: 10px;
  padding: 4px 9px;
  font-size: 12px;
}

.rank-badge {
  top: 10px;
  left: 10px;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: linear-gradient(135deg, #f97316, #eab308);
}

.poster-info {
  display: grid;
  gap: 8px;
  padding: 13px;
}

.poster-info strong,
.movie-title {
  overflow: hidden;
  color: var(--slate-900);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.poster-link:hover .poster-info strong,
.movie-title:hover {
  color: var(--sky-600);
}

.poster-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--slate-500);
  font-size: 13px;
}

.poster-meta em {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-row span {
  padding: 4px 8px;
  color: var(--sky-600);
  background: var(--sky-50);
}

.tag-row.compact span {
  padding: 3px 7px;
  font-size: 12px;
}

.large-cover {
  position: relative;
  display: block;
  height: 380px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.large-cover .cover-shade {
  opacity: 1;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.82));
}

.pill.strong {
  top: 18px;
  left: 18px;
  padding: 6px 12px;
  background: rgba(14, 165, 233, 0.9);
}

.large-copy {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: #fff;
}

.large-copy strong {
  font-size: 26px;
}

.large-copy em {
  display: -webkit-box;
  overflow: hidden;
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.list-stack,
.ranking-list {
  display: grid;
  gap: 16px;
}

.list-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.list-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.list-poster {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: var(--slate-100);
}

.list-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
}

.list-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 14px;
  color: var(--slate-500);
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  color: var(--slate-500);
  font-size: 14px;
}

.category-grid,
.category-overview-grid {
  display: grid;
  gap: 18px;
}

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

.category-tile {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 16%, rgba(15, 23, 42, 0.82));
}

.category-tile span:not(.tile-shade) {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.category-tile strong {
  font-size: 20px;
}

.category-tile em {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sub-hero {
  position: relative;
  padding: 74px 0 64px;
  overflow: hidden;
  color: var(--slate-900);
  background: radial-gradient(circle at 12% 12%, rgba(56, 189, 248, 0.22), transparent 34%), linear-gradient(135deg, #f0f9ff, #ffffff 58%, #eff6ff);
  border-bottom: 1px solid rgba(186, 230, 253, 0.72);
}

.sub-hero p {
  margin: 0 0 12px;
  color: var(--sky-600);
  font-weight: 800;
}

.sub-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.08;
}

.sub-hero span {
  display: block;
  max-width: 760px;
  color: var(--slate-500);
  font-size: 18px;
  line-height: 1.8;
}

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

.category-overview-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 150px;
  overflow: hidden;
  border-radius: 16px;
}

.category-thumbs img {
  min-width: 0;
  border-radius: 12px;
  background: var(--slate-100);
}

.category-overview-card strong {
  color: var(--slate-900);
  font-size: 22px;
}

.category-overview-card em {
  color: var(--slate-500);
  font-style: normal;
  line-height: 1.7;
}

.filter-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.filter-panel h2 {
  margin: 0;
  color: var(--slate-900);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 14px;
}

.filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 700;
}

.filter-panel input,
.filter-panel select {
  padding: 0 13px;
}

.filter-status {
  margin: 0;
  color: var(--slate-500);
  font-size: 14px;
}

.detail-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: var(--slate-900);
}

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

.detail-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.28));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 32px 0 56px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #fff;
}

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

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

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

.detail-copy h1 {
  margin: 20px 0 16px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
}

.detail-copy p {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.8;
}

.player-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.video-wrap {
  position: relative;
  background: #020617;
  aspect-ratio: 16 / 9;
}

.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #020617;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.72));
  cursor: pointer;
}

.video-overlay.is-hidden {
  display: none;
}

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  padding-left: 5px;
  border-radius: 50%;
  color: #fff;
  background: var(--sky-500);
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.38);
}

.video-overlay strong {
  font-size: 20px;
}

.detail-section {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.detail-section h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: 26px;
}

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

.site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--slate-200);
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  padding: 42px 0;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--slate-900);
}

.footer-grid a:not(.brand) {
  display: table;
  margin: 10px 0;
  color: var(--slate-500);
}

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

.footer-brand p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--slate-500);
  line-height: 1.8;
}

.brand.compact .brand-mark {
  width: 36px;
  height: 36px;
}

.footer-bottom {
  padding: 18px 16px 28px;
  color: var(--slate-500);
  text-align: center;
}

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

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

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

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

  .menu-toggle {
    display: inline-block;
  }

  .hero-slider {
    height: 520px;
  }

  .hero-content {
    left: 22px;
    width: calc(100% - 44px);
  }

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

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

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

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

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

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

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

  .page-flow {
    gap: 42px;
    padding-top: 22px;
  }

  .hero-slider {
    height: 500px;
    border-radius: 18px;
  }

  .hero-mask {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.88));
  }

  .hero-content {
    top: auto;
    bottom: 64px;
    transform: none;
  }

  .hero-arrow {
    display: none;
  }

  .scroll-row {
    grid-auto-columns: 210px;
  }

  .movie-grid.four-col,
  .movie-grid.six-col,
  .category-grid,
  .category-overview-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .list-card {
    grid-template-columns: 116px 1fr;
  }

  .list-poster {
    min-height: 160px;
  }

  .list-body {
    padding: 14px;
  }

  .list-body p,
  .list-body .tag-row {
    display: none;
  }

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

  .detail-hero {
    min-height: auto;
  }

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

  .detail-copy p {
    font-size: 16px;
  }

  .video-wrap {
    aspect-ratio: 4 / 3;
  }
}
