:root {
  --pink: #ec4899;
  --red: #ef4444;
  --orange: #f97316;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --green: #10b981;
  --yellow: #f59e0b;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: #fff1f2;
  --line: rgba(31, 41, 55, 0.10);
  --shadow: 0 24px 60px rgba(31, 41, 55, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #fff1f7 0%, #ffffff 45%, #eff6ff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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: 80;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(236, 72, 153, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark,
.footer-brand span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--red));
  box-shadow: 0 10px 22px rgba(239, 68, 68, 0.35);
  animation: heartbeat 1.8s ease-in-out infinite;
}

.brand-name {
  color: transparent;
  background: linear-gradient(90deg, var(--pink), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link,
.mobile-nav-link {
  font-weight: 800;
  color: #374151;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

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

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--red);
  background: rgba(244, 63, 94, 0.10);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(244, 63, 94, 0.10);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--red);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.12);
}

.mobile-nav.open {
  display: grid;
  animation: slideDown 0.25s ease both;
}

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

.hero-section {
  position: relative;
  height: min(680px, calc(100vh - 76px));
  min-height: 540px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--pink), var(--red), var(--yellow));
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition: opacity 0.65s ease, transform 0.8s ease;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.38) 48%, rgba(236, 72, 153, 0.24)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.72), transparent 44%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  max-width: 1180px;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 780px;
  margin: 16px 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -0.06em;
  text-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
  max-width: 640px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.75;
}

.hero-kicker,
.page-hero span,
.section-heading span,
.detail-kicker {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--red));
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

.tag-row span {
  color: var(--red);
  background: rgba(244, 63, 94, 0.08);
  border-color: rgba(244, 63, 94, 0.12);
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--red));
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.32);
}

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 56px rgba(239, 68, 68, 0.36);
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-controls button {
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 32px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.65;
}

.hero-dot.active {
  width: 34px;
  opacity: 1;
  background: #ffffff;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(to top, #fff1f7, transparent);
  pointer-events: none;
}

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

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

.section-heading.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(90deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
}

.section-heading a {
  color: var(--red);
  font-weight: 900;
}

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

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

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

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

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

.movie-card > a {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card > a:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #fce7f3);
}

.movie-card-compact .poster-wrap {
  aspect-ratio: 16 / 10;
}

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

.movie-card > a:hover .poster-wrap img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.hot-badge,
.score-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.hot-badge {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  background: var(--red);
}

.score-badge {
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}

.rank-badge {
  left: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #facc15, var(--orange));
}

.card-content {
  padding: 18px;
}

.card-content h2,
.card-content h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.movie-card > a:hover h2,
.movie-card > a:hover h3 {
  color: var(--red);
}

.card-meta,
.card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.card-desc {
  margin: 8px 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-band,
.recommend-band {
  background: linear-gradient(90deg, rgba(254, 226, 226, 0.72), rgba(252, 231, 243, 0.74), rgba(219, 234, 254, 0.72));
}

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

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

.category-tile {
  display: block;
  min-height: 190px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--red));
  font-size: 22px;
  font-weight: 900;
}

.category-tile h2 {
  margin: 18px 0 10px;
  font-size: 22px;
  font-weight: 950;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.10);
}

.search-box,
.select-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.search-box input,
.select-box select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(244, 63, 94, 0.14);
  border-radius: 16px;
  outline: 0;
  padding: 0 16px;
  color: var(--ink);
  background: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-box input:focus,
.select-box select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.quick-links a {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(244, 63, 94, 0.10);
  font-weight: 900;
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 72px max(16px, calc((100vw - 1180px) / 2));
  color: #ffffff;
  background: linear-gradient(120deg, var(--pink), var(--red), var(--orange));
}

.small-hero,
.rank-hero {
  min-height: 340px;
}

.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.8;
}

.category-hero {
  min-height: 440px;
}

.category-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(236, 72, 153, 0.36));
}

.category-hero > div {
  position: relative;
  z-index: 2;
}

.top-rank-grid .movie-card:first-child > a {
  border: 3px solid rgba(250, 204, 21, 0.72);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 52px 74px minmax(0, 1fr) minmax(160px, 260px) 56px;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(31, 41, 55, 0.12);
}

.rank-row img {
  width: 74px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  background: #fee2e2;
}

.rank-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--red));
  font-weight: 950;
}

.rank-title {
  min-width: 0;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-meta {
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row strong {
  color: var(--red);
  font-size: 20px;
}

.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-weight: 800;
}

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

.detail-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 18%, rgba(236, 72, 153, 0.15), transparent 36%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(31, 41, 55, 0.22);
}

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

.detail-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #facc15, var(--orange));
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.detail-info h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.detail-line {
  max-width: 820px;
  margin: 0 0 22px;
  color: #4b5563;
  font-size: 19px;
  line-height: 1.8;
}

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

.detail-meta span {
  padding: 9px 13px;
  border-radius: 14px;
  color: #374151;
  background: rgba(244, 63, 94, 0.08);
  font-weight: 800;
}

.detail-tags {
  margin-bottom: 28px;
}

.detail-tags span {
  color: var(--red);
  background: #fff1f2;
  border-color: rgba(244, 63, 94, 0.16);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #020617;
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.32);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 16px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.16));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--red);
  background: #ffffff;
  font-size: 34px;
  text-indent: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  animation: pulse 1.8s ease-in-out infinite;
}

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

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

.detail-body article {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.10);
}

.detail-body h2 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 950;
  color: var(--red);
}

.detail-body p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.95;
}

.site-footer {
  color: #e5e7eb;
  background: linear-gradient(90deg, #111827, #1f2937);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 28px;
}

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

.footer-grid p {
  max-width: 500px;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.footer-grid a:not(.footer-brand) {
  display: block;
  margin: 10px 0;
  color: #d1d5db;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9ca3af;
  text-align: center;
}

.hidden-by-filter {
  display: none !important;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.12);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.08);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .menu-toggle {
    display: block;
  }

  .hero-section {
    min-height: 600px;
  }

  .hero-copy {
    justify-content: flex-end;
    padding-bottom: 125px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

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

  .grid-five,
  .grid-four,
  .grid-three,
  .category-grid,
  .category-grid.large,
  .detail-body,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    padding: 18px;
  }

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

  .rank-row {
    grid-template-columns: 42px 62px minmax(0, 1fr) 48px;
  }

  .rank-row img {
    width: 62px;
    height: 46px;
  }

  .rank-meta {
    display: none;
  }
}

@media (max-width: 540px) {
  .nav-shell {
    height: 66px;
  }

  .brand-name {
    font-size: 21px;
  }

  .hero-section {
    height: auto;
    min-height: 620px;
  }

  .hero-tags span {
    font-size: 12px;
  }

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

  .page-hero {
    min-height: 300px;
  }

  .card-grid {
    gap: 16px;
  }

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