:root {
  color-scheme: dark;
  --bg: #0c0a09;
  --panel: #1c1917;
  --panel-soft: #292524;
  --line: #44403c;
  --muted: #a8a29e;
  --text: #f5f5f4;
  --amber: #f59e0b;
  --amber-deep: #d97706;
  --amber-soft: rgba(245, 158, 11, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

html {
  background: var(--bg);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(180, 83, 9, 0.18), transparent 34rem),
    linear-gradient(180deg, #1c1917 0%, #0c0a09 28rem, #0c0a09 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Microsoft YaHei", "PingFang SC", sans-serif;
}

img {
  width: 100%;
  object-fit: cover;
  background: #1c1917;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(28, 25, 23, 0.94);
  border-bottom: 1px solid rgba(68, 64, 60, 0.8);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.site-nav-wrap {
  max-width: 1280px;
  height: 4.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fffbeb;
  font-weight: 800;
}

.brand-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.28);
}

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

.brand-copy strong {
  font-size: 1.16rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.65rem 0.9rem;
  border-radius: 0.65rem;
  color: #d6d3d1;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.top-search,
.home-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-search input,
.home-search input,
.filter-control {
  min-width: 15rem;
  padding: 0.78rem 0.95rem;
  border: 1px solid #44403c;
  border-radius: 0.75rem;
  background: #292524;
  color: #f5f5f4;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search input:focus,
.home-search input:focus,
.filter-control:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
}

.top-search button,
.home-search button,
.filter-reset,
.primary-btn,
.ghost-btn,
.section-more,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.65rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.top-search button,
.home-search button,
.primary-btn,
.filter-reset:hover {
  color: #1c1917;
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.ghost-btn,
.filter-reset,
.section-more,
.text-link {
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.text-link:hover,
.top-search button:hover,
.home-search button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid #44403c;
  background: #292524;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.26rem auto;
  background: #f5f5f4;
}

.quick-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem 0.8rem;
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
}

.quick-nav a {
  white-space: nowrap;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(68, 64, 60, 0.85);
  border-radius: 999px;
  color: #d6d3d1;
  background: rgba(41, 37, 36, 0.8);
  font-size: 0.85rem;
}

.quick-nav a:hover {
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.5);
}

main,
.page-main,
.detail-main {
  width: 100%;
}

.hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid rgba(68, 64, 60, 0.75);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.9s ease, visibility 0.7s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.96) 0%, rgba(12, 10, 9, 0.78) 44%, rgba(12, 10, 9, 0.32) 100%),
    linear-gradient(180deg, rgba(12, 10, 9, 0.26) 0%, #0c0a09 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(245, 158, 11, 0.38);
  border-radius: 999px;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  color: #fffbeb;
  font-size: clamp(2.35rem, 6vw, 5.25rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  margin-top: 1.15rem;
  color: #d6d3d1;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.hero-tags,
.card-meta,
.detail-meta,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.hero-tags {
  margin-top: 1.35rem;
}

.hero-tags span,
.card-meta span,
.detail-meta span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(120, 53, 15, 0.52);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-poster {
  position: relative;
  display: block;
  width: min(340px, 100%);
  justify-self: end;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: var(--shadow);
  aspect-ratio: 2 / 3;
  background: #1c1917;
}

.hero-poster img {
  height: 100%;
  transition: transform 0.35s ease;
}

.hero-poster span,
.play-mark {
  position: absolute;
  display: grid;
  place-items: center;
  color: #1c1917;
  background: #fbbf24;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-poster span {
  right: 1rem;
  bottom: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}

.hero-poster:hover img,
.movie-card:hover img {
  transform: scale(1.055);
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.45rem;
  border: 1px solid rgba(68, 64, 60, 0.8);
  border-radius: 999px;
  background: rgba(28, 25, 23, 0.75);
  backdrop-filter: blur(10px);
}

.hero-controls button {
  color: #f5f5f4;
}

.hero-controls > button {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.6rem;
  line-height: 1;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-dot {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  background: #78716c;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 1.75rem;
  background: #f59e0b;
}

.home-search-zone,
.content-section,
.page-hero,
.detail-hero,
.breadcrumb,
.player-section {
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.home-search-zone {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 1.25rem;
  background: rgba(28, 25, 23, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.home-search-zone h2,
.section-heading h2,
.ranking-head h2,
.player-section h2,
.article-section h2 {
  color: #fffbeb;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.home-search-zone p,
.section-heading p,
.article-section p,
.category-overview-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.75;
}

.content-section {
  margin-top: 3.5rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.category-grid,
.category-overview-grid {
  display: grid;
  gap: 1rem;
}

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

.category-tile,
.category-overview-card,
.ranking-box,
.filter-panel,
.article-section,
.player-section {
  border: 1px solid rgba(68, 64, 60, 0.85);
  background: linear-gradient(180deg, rgba(41, 37, 36, 0.92), rgba(28, 25, 23, 0.94));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.category-tile {
  min-height: 11rem;
  padding: 1.25rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.18);
}

.category-tile strong {
  position: relative;
  color: #fffbeb;
  font-size: 1.18rem;
  font-weight: 900;
}

.category-tile span {
  position: relative;
  color: #a8a29e;
  line-height: 1.65;
  font-size: 0.92rem;
}

.category-tile:hover,
.movie-card:hover,
.category-overview-card:hover {
  border-color: rgba(245, 158, 11, 0.55);
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.05rem;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(68, 64, 60, 0.78);
  border-radius: 1rem;
  background: #1c1917;
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #292524;
}

.poster-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.poster-link img {
  height: 100%;
  transition: transform 0.35s ease;
}

.play-mark {
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  font-size: 0.85rem;
}

.rank-num {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.45rem;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  color: #1c1917;
  background: #fbbf24;
  font-size: 0.95rem;
}

.card-body {
  padding: 0.88rem;
}

.card-body h3 {
  color: #f5f5f4;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
}

.card-body p {
  min-height: 3.05rem;
  margin-top: 0.5rem;
  color: #a8a29e;
  font-size: 0.88rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  margin-top: 0.7rem;
}

.movie-card-small .card-body h3 {
  font-size: 0.95rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.35rem;
  align-items: start;
}

.ranking-box {
  border-radius: 1.1rem;
  padding: 1.1rem;
}

.sticky-box {
  position: sticky;
  top: 6rem;
}

.ranking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ranking-head a {
  color: #fbbf24;
  font-weight: 800;
}

.rank-list {
  display: grid;
  gap: 0.65rem;
}

.rank-item {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem;
  border-radius: 0.85rem;
  background: rgba(12, 10, 9, 0.36);
}

.rank-item:hover {
  background: rgba(245, 158, 11, 0.12);
}

.rank-item span {
  grid-row: span 2;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1c1917;
  background: #fbbf24;
  font-weight: 900;
  font-size: 0.84rem;
}

.rank-item strong {
  color: #f5f5f4;
  font-weight: 800;
  line-height: 1.35;
}

.rank-item em {
  color: #a8a29e;
  font-style: normal;
  font-size: 0.82rem;
}

.page-main {
  padding-top: 2rem;
}

.page-hero {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(68, 64, 60, 0.85);
  border-radius: 1.4rem;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.17), transparent 48%),
    linear-gradient(180deg, rgba(41, 37, 36, 0.96), rgba(28, 25, 23, 0.96));
  box-shadow: var(--shadow);
}

.compact-hero h1 {
  max-width: 900px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem;
  border-radius: 0.85rem;
  overflow: hidden;
}

.category-preview img {
  height: 7.5rem;
}

.category-overview-card h2 {
  color: #fffbeb;
  font-size: 1.35rem;
  font-weight: 900;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 1rem;
  border-radius: 1rem;
}

.filter-search input {
  width: 100%;
}

.filter-selects {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.filter-selects select {
  min-width: 9rem;
}

.movie-card.is-hidden {
  display: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 1.2rem;
  color: #a8a29e;
  font-size: 0.92rem;
}

.breadcrumb a {
  color: #fbbf24;
}

.detail-main {
  padding-bottom: 1rem;
}

.detail-hero {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(68, 64, 60, 0.86);
  border-radius: 1.4rem;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(41, 37, 36, 0.95), rgba(28, 25, 23, 0.95));
  box-shadow: var(--shadow);
}

.detail-cover {
  aspect-ratio: 2 / 3;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.32);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.detail-cover img {
  height: 100%;
}

.detail-meta,
.detail-tags {
  margin-top: 1rem;
}

.player-section {
  margin-top: 2.2rem;
  padding: 1.1rem;
  border-radius: 1.2rem;
}

.player-stage {
  position: relative;
  margin-top: 1rem;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  width: clamp(4.2rem, 10vw, 6rem);
  height: clamp(4.2rem, 10vw, 6rem);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1c1917;
  background: #fbbf24;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: 0 18px 65px rgba(0, 0, 0, 0.45);
}

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

.article-section {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border-radius: 1.1rem;
}

.article-section p {
  color: #d6d3d1;
  font-size: 1.02rem;
}

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid rgba(68, 64, 60, 0.82);
  background: rgba(28, 25, 23, 0.92);
}

.footer-inner {
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
}

.footer-inner p {
  margin-top: 0.55rem;
  color: #a8a29e;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
  align-content: start;
}

.footer-links a {
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  color: #d6d3d1;
  background: #292524;
}

.footer-links a:hover {
  color: #fbbf24;
}

.back-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  width: 2.9rem;
  height: 2.9rem;
  display: none;
  border-radius: 50%;
  color: #1c1917;
  background: #fbbf24;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  font-weight: 900;
}

.back-top.show {
  display: block;
}

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

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

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

  .sticky-box {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-nav-wrap {
    height: auto;
    min-height: 4.5rem;
    flex-wrap: wrap;
  }

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

  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding-bottom: 0.8rem;
  }

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

  .top-search {
    order: 3;
    width: 100%;
    padding-bottom: 0.8rem;
  }

  .top-search input {
    min-width: 0;
    flex: 1;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 5rem;
  }

  .hero-poster {
    justify-self: start;
    width: min(260px, 70vw);
  }

  .home-search-zone,
  .filter-panel,
  .footer-inner,
  .detail-hero,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .home-search,
  .filter-selects {
    flex-wrap: wrap;
  }

  .home-search input,
  .filter-selects select {
    min-width: 0;
    flex: 1 1 12rem;
  }

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

@media (max-width: 680px) {
  .site-nav-wrap,
  .quick-nav,
  .home-search-zone,
  .content-section,
  .page-hero,
  .detail-hero,
  .breadcrumb,
  .player-section,
  .footer-inner {
    width: min(100% - 1.4rem, 1280px);
  }

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

  .hero-content {
    width: min(100% - 1.4rem, 1280px);
  }

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

  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .card-body {
    padding: 0.72rem;
  }

  .card-body p {
    min-height: auto;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-info h1 {
    letter-spacing: -0.03em;
  }

  .hero-controls {
    bottom: 1rem;
  }
}
