:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.76);
  --panel-solid: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(245, 158, 11, 0.36);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --teal: #14b8a6;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 158, 11, 0.16), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(20, 184, 166, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

body.detail-body {
  background: #020617;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.84);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  width: min(1260px, calc(100% - 24px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber), #ef4444);
  box-shadow: 0 16px 38px rgba(245, 158, 11, 0.32);
}

.brand-name {
  font-size: 20px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--soft);
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-light);
  background: rgba(245, 158, 11, 0.1);
}

.header-search {
  width: 320px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.72);
}

.header-search input,
.big-search input,
.filter-bar input,
.filter-bar select {
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
}

.header-search input {
  flex: 1;
  padding: 10px 14px;
}

.header-search button,
.big-search button {
  border: 0;
  padding: 10px 18px;
  color: #111827;
  font-weight: 700;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.7);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
}

.hero-slides,
.hero-slide {
  min-height: 72vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  align-items: center;
  gap: 54px;
  padding: 106px max(32px, calc((100vw - 1180px) / 2)) 76px;
  background-size: cover;
  background-position: center;
  transform: scale(1.025);
  transition: opacity 0.65s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.76) 44%, rgba(2, 6, 23, 0.25) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.18) 56%, rgba(2, 6, 23, 0.74) 100%);
}

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

.eyebrow,
.page-hero span,
.section-heading span {
  color: var(--amber-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.hero-content h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--soft);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.75;
}

.hero-badges,
.tag-list,
.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span,
.tag,
.pill-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.68);
}

.tag {
  color: var(--amber-light);
  border-color: rgba(245, 158, 11, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.slim-actions {
  margin-top: 18px;
}

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

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

.btn.primary {
  color: #111827;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.28);
}

.btn.ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.65);
}

.btn.text {
  color: var(--amber-light);
}

.hero-poster {
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.7);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-poster img,
.poster-wrap img,
.detail-poster img,
.podium-card img,
.rank-row img {
  height: 100%;
  object-fit: cover;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(12px);
  font-size: 36px;
  line-height: 1;
}

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

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

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

.hero-dot {
  width: 30px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-dot.active {
  background: var(--amber-light);
}

.page-main {
  padding: 44px 0 80px;
}

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

.section-heading h2,
.page-hero h1 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.section-heading a {
  color: var(--amber-light);
  font-weight: 800;
}

.compact h2 {
  font-size: 26px;
}

.left-only {
  justify-content: flex-start;
}

.quick-links,
.container-wrap {
  margin-top: 52px;
}

.pill-links a:hover {
  color: #111827;
  background: var(--amber-light);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 26px;
}

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

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

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

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

.movie-card {
  display: block;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.64);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 50px rgba(245, 158, 11, 0.13);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0f172a;
}

.poster-wrap img {
  transition: transform 0.42s ease;
}

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

.score,
.play-corner {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.score {
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  color: var(--amber-light);
  font-weight: 900;
  font-size: 12px;
}

.play-corner {
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #111827;
  background: var(--amber-light);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.25);
}

.movie-card-body {
  padding: 13px;
}

.movie-card h3 {
  margin: 0 0 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 850;
}

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

.movie-meta {
  color: var(--amber-light);
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.small-card .movie-card-body {
  padding: 11px;
}

.small-card h3 {
  font-size: 15px;
}

.rank-panel,
.detail-side,
.detail-article,
.filter-shell,
.category-card,
.podium-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.sticky-panel {
  position: sticky;
  top: 96px;
  padding: 20px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: auto 56px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.rank-row:hover {
  border-color: var(--line-strong);
}

.rank-num {
  width: 28px;
  color: var(--amber-light);
  font-weight: 950;
  text-align: center;
}

.rank-row img {
  width: 56px;
  height: 74px;
  border-radius: 12px;
}

.rank-info {
  min-width: 0;
}

.rank-info strong,
.rank-info em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-info em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.scroll-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 180px;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x proximity;
}

.scroll-strip .movie-card {
  scroll-snap-align: start;
}

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

.category-card {
  overflow: hidden;
}

.category-card-main {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
}

.category-glow {
  position: absolute;
  inset: auto -40px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.28), transparent 65%);
}

.category-card h2 {
  position: relative;
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
}

.category-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-card strong {
  position: relative;
  color: var(--amber-light);
}

.category-sample {
  display: grid;
  gap: 8px;
  padding: 0 22px 20px;
}

.category-sample a {
  color: var(--soft);
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page-hero {
  min-height: 260px;
  display: grid;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.55)),
    radial-gradient(circle at right top, rgba(245, 158, 11, 0.2), transparent 34rem);
  box-shadow: var(--shadow);
}

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

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

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

.feature-tile {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 14px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -100px 60px rgba(2, 6, 23, 0.78);
}

.feature-tile span {
  color: var(--amber-light);
  font-size: 12px;
}

.feature-tile strong {
  margin-top: 6px;
  font-size: 17px;
}

.filter-shell {
  padding: 22px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px 190px;
  gap: 12px;
  margin-bottom: 22px;
}

.filter-bar input,
.filter-bar select,
.big-search input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 14px;
  background: rgba(2, 6, 23, 0.45);
}

.filter-bar select {
  color: var(--soft);
}

.filter-bar option {
  background: #0f172a;
}

.category-overview-row {
  margin-bottom: 52px;
}

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

.podium-card {
  padding: 18px;
  text-align: center;
}

.podium-card img {
  width: min(230px, 80%);
  aspect-ratio: 3 / 4;
  margin: 0 auto 16px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.podium-card span {
  color: var(--amber-light);
  font-weight: 900;
}

.podium-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 22px;
}

.podium-card em {
  color: var(--muted);
  font-style: normal;
}

.rank-page-layout {
  grid-template-columns: 380px minmax(0, 1fr);
}

.full-rank {
  padding: 20px;
}

.extended {
  max-height: none;
}

.big-search {
  width: min(640px, 100%);
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.big-search input {
  flex: 1;
}

.big-search button {
  border-radius: 16px;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  margin-top: -44px;
  padding: 112px 0 70px;
  background-size: cover;
  background-position: center;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.32)),
    linear-gradient(0deg, rgba(2, 6, 23, 1), rgba(2, 6, 23, 0.18) 55%, rgba(2, 6, 23, 0.8));
}

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

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

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

.detail-intro {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-poster {
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  margin: 10px 0 14px;
  max-width: 820px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 760px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.8;
}

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

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.play-mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  border: 0;
  color: var(--text);
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.16), rgba(2, 6, 23, 0.75));
  cursor: pointer;
}

.play-mask.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.play-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  box-shadow: 0 22px 60px rgba(245, 158, 11, 0.35);
  font-size: 34px;
}

.play-mask strong {
  font-size: clamp(20px, 4vw, 34px);
}

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

.detail-article,
.detail-side {
  padding: 26px;
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 900;
}

.detail-article p {
  margin: 0 0 24px;
  color: var(--soft);
  line-height: 1.9;
  font-size: 16px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.info-list span {
  color: var(--muted);
}

.info-list strong {
  text-align: right;
}

.site-footer {
  margin-top: 72px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.72);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
}

.footer-brand {
  color: var(--amber-light);
  font-size: 20px;
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--soft);
}

.is-filtered-out {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.62);
}

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

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

  .hero-slide,
  .category-hero,
  .two-column,
  .rank-page-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }

  .hero-poster {
    width: min(320px, 70vw);
  }
}

@media (max-width: 820px) {
  .site-header-inner {
    height: auto;
    min-height: 66px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    order: 4;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-link {
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.68);
  }

  .header-search {
    width: 100%;
    order: 5;
  }

  .hero-slide {
    min-height: auto;
    display: block;
    padding: 96px 18px 72px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-poster {
    margin-top: 28px;
    transform: none;
  }

  .hero-arrow {
    display: none;
  }

  .movie-grid,
  .home-grid,
  .mini-grid,
  .category-movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .category-grid,
  .podium-grid,
  .feature-tiles,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .category-hero,
  .page-hero {
    padding: 28px;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

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

  .detail-poster {
    width: min(280px, 78vw);
  }

  .big-search {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container-wrap {
    width: min(100% - 22px, 1180px);
  }

  .movie-grid,
  .home-grid,
  .mini-grid,
  .category-movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .movie-card-body {
    padding: 10px;
  }

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

  .movie-card p {
    font-size: 12px;
  }

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

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