:root {
  --rose: #f43f5e;
  --pink: #ec4899;
  --orange: #f97316;
  --amber: #f59e0b;
  --slate: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #fff7f9;
  --panel: rgba(255, 255, 255, 0.92);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate);
  background: linear-gradient(180deg, #fff7fb 0%, #ffffff 36%, #fff7ed 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.header-inner {
  max-width: 1240px;
  height: 72px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--orange));
  box-shadow: 0 14px 30px rgba(244, 63, 94, 0.32);
}

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

.brand-text strong {
  font-size: 20px;
  background: linear-gradient(90deg, var(--rose), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.main-nav > a,
.nav-dropdown > button {
  border: 0;
  padding: 8px 0;
  color: #334155;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}

.main-nav > a:hover,
.nav-dropdown > button:hover {
  color: var(--rose);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid rgba(244, 63, 94, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #475569;
}

.dropdown-panel a:hover {
  color: var(--rose);
  background: #fff1f2;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-search {
  display: flex;
  align-items: center;
  min-width: 280px;
}

.top-search input {
  width: 190px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #fecdd3;
  border-right: 0;
  border-radius: 999px 0 0 999px;
  outline: 0;
  background: #ffffff;
}

.top-search input:focus {
  border-color: var(--rose);
}

.top-search button {
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 0 999px 999px 0;
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose), var(--pink));
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  background: #fff1f2;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--rose);
}

.mobile-panel {
  display: none;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px 16px;
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid #ffe4e6;
  color: #475569;
}

.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #111827;
}

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

.hero-slide {
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.08);
}

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 35%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(90deg, rgba(159, 18, 57, 0.95), rgba(219, 39, 119, 0.78), rgba(249, 115, 22, 0.58)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.22));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  color: #ffffff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #be123c;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: #fff7ed;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.72;
}

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

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.detail-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
}

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

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

.primary-button {
  color: var(--rose);
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(255, 255, 255, 0.22);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.ghost-button.dark {
  border-color: #fecdd3;
  color: var(--rose);
  background: #fff1f2;
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.38);
  transform: rotate(2deg);
}

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

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

.hero-controls button {
  width: 44px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-controls button.is-active {
  background: #ffffff;
}

.section-wrap,
.page-main,
.detail-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 22px;
}

.no-top {
  padding-top: 0;
}

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

.compact-head {
  margin-bottom: 18px;
}

.section-head h2,
.page-hero h1,
.detail-info h1,
.detail-text h2 {
  margin: 10px 0 0;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-kicker {
  color: var(--rose);
  background: #fff1f2;
}

.section-more {
  min-height: 38px;
  color: var(--rose);
  background: #fff1f2;
}

.quick-search-panel {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.quick-search-panel::before,
.full-search,
.page-hero,
.category-overview,
.player-box,
.detail-text {
  content: "";
  display: block;
  border: 1px solid rgba(244, 63, 94, 0.10);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.quick-search-panel::before {
  position: absolute;
  inset: 36px 22px 28px;
  z-index: -1;
}

.search-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(244, 63, 94, 0.08);
}

.site-search {
  flex: 1;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  outline: 0;
  background: #fff7f9;
}

.site-search:focus {
  border-color: var(--rose);
  background: #ffffff;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pills button {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #be123c;
  background: #ffe4e6;
  cursor: pointer;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 22px;
  border-radius: 26px;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 28px 55px rgba(15, 23, 42, 0.20);
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.tile-icon {
  display: block;
  font-size: 34px;
  margin-bottom: 16px;
}

.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
  display: block;
}

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

.category-tile em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-style: normal;
}

.tone-rose { background: linear-gradient(135deg, #f43f5e, #fb7185); }
.tone-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.tone-orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.tone-amber { background: linear-gradient(135deg, #f59e0b, #f97316); }
.tone-violet { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.tone-slate { background: linear-gradient(135deg, #334155, #0f172a); }
.tone-green { background: linear-gradient(135deg, #10b981, #22c55e); }
.tone-cyan { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.tone-blue { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.tone-purple { background: linear-gradient(135deg, #7c3aed, #db2777); }

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(244, 63, 94, 0.10);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.14);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1f2, #fed7aa);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.04);
}

.poster-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.58), transparent);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.32);
}

.card-body {
  padding: 18px;
}

.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #f43f5e;
  font-size: 12px;
  font-weight: 800;
}

.card-body h3 {
  margin: 10px 0 8px;
  font-size: 19px;
  line-height: 1.3;
}

.card-body h3 a:hover {
  color: var(--rose);
}

.card-body p {
  margin: 0;
  min-height: 44px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.58;
}

.card-body .tag-row {
  margin-top: 14px;
}

.card-body .tag-row span,
.detail-tags span {
  color: #be123c;
  background: #fff1f2;
}

.compact-card .card-body h3 {
  font-size: 17px;
}

.compact-card .card-body p {
  min-height: 0;
}

.side-rank {
  position: sticky;
  top: 96px;
  padding: 20px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 36px 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 10px;
  border-radius: 18px;
  background: #fff7f9;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: #ffe4e6;
  transform: translateX(3px);
}

.row-rank {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  font-weight: 900;
}

.rank-row img {
  width: 54px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.row-title {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 800;
}

.row-info {
  grid-column: 3 / 4;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--muted);
  font-size: 12px;
}

.rank-row strong {
  color: var(--rose);
}

.page-hero {
  margin-bottom: 34px;
  padding: 46px;
}

.slim-hero,
.rank-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #fff1f2);
}

.category-hero,
.rank-hero {
  color: #ffffff;
}

.category-hero h1,
.category-hero p,
.rank-hero h1,
.rank-hero p {
  color: #ffffff;
}

.category-hero .section-kicker,
.rank-hero .section-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
}

.overview-stack {
  display: grid;
  gap: 24px;
}

.category-overview {
  padding: 26px;
  color: #ffffff;
}

.category-overview-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.category-overview-head > span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 30px;
}

.category-overview h2 {
  margin: 0 0 8px;
}

.category-overview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

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

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

.wide-rank {
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.detail-main {
  padding-top: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: #64748b;
  font-size: 14px;
}

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

.detail-hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
  padding: 28px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #be123c, #db2777, #f97316);
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.32);
}

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

.detail-info h1 {
  color: #ffffff;
  font-size: clamp(34px, 6vw, 64px);
}

.detail-one-line {
  max-width: 780px;
  margin: 18px 0 22px;
  color: #fff7ed;
  font-size: 19px;
  line-height: 1.72;
}

.detail-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.17);
}

.player-section {
  margin-bottom: 34px;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-box video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.18));
  cursor: pointer;
}

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

.play-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 18px 45px rgba(244, 63, 94, 0.38);
  font-size: 34px;
}

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

.detail-text {
  padding: 34px;
}

.detail-text h2 {
  margin-top: 0;
  font-size: 30px;
}

.detail-text h2 + p {
  margin-top: 12px;
}

.detail-text p {
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
}

.related-wrap {
  padding-left: 0;
  padding-right: 0;
}

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

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(244, 63, 94, 0.10);
  background: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner strong {
  color: var(--rose);
  font-size: 20px;
}

.footer-inner p {
  margin: 6px 0 0;
  color: #64748b;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: #475569;
}

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

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

@media (max-width: 1100px) {
  .main-nav,
  .top-search {
    display: none;
  }

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

  .mobile-panel.is-open {
    display: block;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 30px;
  }

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

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

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

  .side-rank {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 66px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text em {
    display: none;
  }

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

  .hero-content {
    min-height: 690px;
    padding: 52px 16px 86px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-poster {
    width: 210px;
    justify-self: start;
  }

  .section-wrap,
  .page-main,
  .detail-main {
    padding: 34px 16px;
  }

  .quick-search-panel {
    margin-top: -24px;
  }

  .section-head,
  .footer-inner,
  .search-line {
    align-items: stretch;
    flex-direction: column;
  }

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

  .card-body {
    padding: 14px;
  }

  .card-body p {
    display: none;
  }

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

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

  .page-hero,
  .detail-text {
    padding: 24px;
  }

  .rank-row {
    grid-template-columns: 32px 46px minmax(0, 1fr);
  }

  .rank-row strong {
    display: none;
  }

  .row-info {
    grid-column: 3 / 4;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .category-grid,
  .movie-grid,
  .mini-grid,
  .rank-grid,
  .search-grid,
  .related-grid,
  .wide-rank {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .page-actions,
  .detail-actions {
    flex-direction: column;
  }

  .primary-button,
  .ghost-button,
  .section-more {
    width: 100%;
  }
}
