:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #06b6d4;
  --teal: #0d9488;
  --orange: #f97316;
  --amber: #f59e0b;
  --green: #16a34a;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--slate-900);
  background: linear-gradient(180deg, var(--slate-50), #ffffff 380px);
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.25);
  font-size: 14px;
}

.brand-text {
  font-size: 21px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link,
.mobile-link {
  padding: 9px 13px;
  border-radius: 12px;
  color: var(--slate-700);
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.is-active,
.mobile-link.is-active {
  color: var(--blue);
  background: #eff6ff;
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-search input {
  width: 220px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  outline: none;
  color: var(--slate-800);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.header-search button,
.mobile-search button {
  height: 40px;
  padding: 0 15px;
  border: 0;
  color: #ffffff;
  background: var(--blue);
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--slate-100);
  cursor: pointer;
}

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

.mobile-panel {
  border-top: 1px solid var(--slate-200);
  background: #ffffff;
}

.mobile-panel-inner {
  padding: 14px 0 18px;
}

.mobile-panel nav {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(120deg, var(--blue) 0%, var(--cyan) 52%, var(--teal) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 32%, rgba(255, 255, 255, 0.2), transparent 34%), rgba(2, 6, 23, 0.18);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: linear-gradient(45deg, rgba(255,255,255,0.12) 25%, transparent 25%), linear-gradient(-45deg, rgba(255,255,255,0.12) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.12) 75%), linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.12) 75%);
  background-size: 56px 56px;
  background-position: 0 0, 0 28px, 28px -28px, -28px 0;
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-desc {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

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

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  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;
}

.primary-btn {
  color: var(--blue);
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.22);
}

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-pill {
  padding: 8px 13px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-weight: 700;
}

.hero-panel {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.24);
  backdrop-filter: blur(18px);
}

.hero-panel-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #075985;
  background: #cffafe;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.hero-panel h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.25;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-panel-meta span {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.featured-overlap {
  position: relative;
  z-index: 4;
  margin-top: -86px;
}

.featured-grid,
.movie-grid,
.horizontal-grid,
.category-grid,
.category-overview-grid,
.compact-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

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

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

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

.page-section {
  padding: 64px 0;
}

.soft-section,
.warm-section {
  padding: 64px 0;
}

.soft-section {
  background: linear-gradient(120deg, #f8fafc, #eff6ff);
}

.warm-section {
  background: linear-gradient(120deg, #fffbeb, #fff7ed);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

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

.section-link {
  min-height: 40px;
  color: var(--blue);
  background: #eff6ff;
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.movie-cover {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background: var(--slate-200);
}

.movie-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .movie-cover img,
.compact-card:hover img {
  transform: scale(1.08);
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,23,0.06), rgba(2,6,23,0.58));
  opacity: 0.85;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.play-icon svg,
.player-button svg,
.movie-score svg,
.detail-score svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.play-icon svg {
  width: 56px;
  height: 56px;
  padding: 15px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.85);
}

.movie-card:hover .play-icon {
  opacity: 1;
}

.movie-category,
.movie-duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.movie-category {
  left: 12px;
  top: 12px;
  background: var(--blue);
}

.movie-duration {
  right: 12px;
  bottom: 12px;
  background: rgba(2, 6, 23, 0.76);
}

.rank-badge {
  left: 12px;
  bottom: 12px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.movie-body {
  padding: 18px;
}

.movie-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.movie-body h3 a:hover {
  color: var(--blue);
}

.movie-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 9px 0 0;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta,
.movie-score {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 13px;
  color: var(--slate-500);
  font-size: 13px;
}

.movie-score {
  justify-content: space-between;
  align-items: center;
}

.movie-score span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #a16207;
  font-weight: 800;
}

.movie-card-large .movie-cover {
  height: 320px;
}

.movie-card-large .movie-body {
  padding: 22px;
}

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

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.movie-card-horizontal .movie-cover {
  height: 100%;
  min-height: 142px;
}

.movie-card-horizontal .movie-body {
  padding: 18px 18px 18px 0;
}

.category-tile,
.category-overview-main {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-icon,
.category-overview-main span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 999px;
  box-shadow: 0 14px 25px rgba(37, 99, 235, 0.18);
}

.category-tile strong,
.category-overview-main h2 {
  font-size: 19px;
  color: var(--slate-900);
}

.category-tile em,
.category-overview-main p {
  color: var(--slate-600);
  font-style: normal;
  font-size: 14px;
}

.category-overview-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.category-overview-main {
  min-height: 230px;
  border-radius: 24px 24px 0 0;
}

.category-mini-links {
  display: grid;
  gap: 8px;
  padding: 18px 22px 22px;
}

.category-mini-links a {
  color: var(--slate-600);
  font-size: 14px;
}

.category-mini-links a:hover {
  color: var(--blue);
}

.page-hero {
  color: #ffffff;
  background: linear-gradient(120deg, var(--blue), var(--cyan) 55%, var(--teal));
}

.slim-hero,
.rank-hero,
.search-hero {
  padding: 62px 0 70px;
}

.page-hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

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

.breadcrumb .sep {
  opacity: 0.6;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.filter-search {
  margin-bottom: 16px;
}

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

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.filter-row > span {
  min-width: 42px;
  color: var(--slate-600);
  font-weight: 800;
}

.filter-chip {
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  color: var(--slate-700);
  background: var(--slate-100);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #ffffff;
  background: var(--blue);
}

.compact-list {
  display: grid;
  gap: 14px;
}

.compact-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  background: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
  background: #eff6ff;
  transform: translateX(2px);
}

.compact-cover {
  position: relative;
  display: block;
  height: 72px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--slate-200);
}

.compact-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.small-rank {
  position: absolute;
  left: 6px;
  top: 6px;
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.compact-info {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.compact-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-info em {
  color: var(--slate-500);
  font-size: 13px;
  font-style: normal;
}

.detail-top {
  padding: 34px 0 72px;
  background: linear-gradient(180deg, var(--slate-900) 0, var(--slate-900) 360px, var(--slate-50) 360px, var(--slate-50) 100%);
}

.detail-top .breadcrumb {
  margin-bottom: 20px;
}

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

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
}

.player-card,
.detail-content,
.side-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.player-shell {
  position: relative;
  background: #000000;
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.62));
  cursor: pointer;
}

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

.player-button {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 999px;
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.32);
  transition: transform 0.2s ease;
}

.player-cover:hover .player-button {
  transform: scale(1.08);
}

.player-button svg {
  width: 38px;
  height: 38px;
}

.detail-content {
  padding: 28px;
}

.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.detail-title-row h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.16;
}

.detail-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: #a16207;
  background: #fef3c7;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.lead-text {
  margin: 16px 0 0;
  color: var(--slate-700);
  font-size: 18px;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.detail-meta-grid span {
  display: grid;
  gap: 3px;
  padding: 13px;
  border-radius: 16px;
  background: var(--slate-50);
  color: var(--slate-700);
  font-size: 14px;
}

.detail-meta-grid strong {
  color: var(--slate-500);
  font-size: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.tag-list a {
  padding: 6px 10px;
  color: var(--blue);
  background: #eff6ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.text-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
}

.text-block h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.text-block p {
  margin: 0;
  color: var(--slate-700);
  white-space: pre-wrap;
}

.side-card {
  position: sticky;
  top: 94px;
  padding: 20px;
}

.site-footer {
  color: var(--slate-300);
  background: var(--slate-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr 1fr;
  gap: 36px;
  padding: 52px 0 34px;
}

.footer-brand {
  color: #ffffff;
  font-size: 20px;
}

.site-footer p {
  margin: 14px 0 0;
  color: var(--slate-300);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(203, 213, 225, 0.16);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--slate-500);
  font-size: 14px;
}

.is-hidden-card {
  display: none !important;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

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

  .hero-inner,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-bottom: 60px;
  }

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

  .detail-side .side-card {
    position: static;
  }
}

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

  .header-inner {
    min-height: 62px;
  }

  .brand-text {
    font-size: 18px;
  }

  .hero-home,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 66px 0 112px;
  }

  .hero-desc {
    font-size: 17px;
  }

  .featured-overlap {
    margin-top: -72px;
  }

  .featured-grid,
  .movie-grid.four-col,
  .movie-grid.three-col,
  .horizontal-grid,
  .category-grid,
  .category-overview-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal .movie-cover {
    height: 210px;
  }

  .movie-card-horizontal .movie-body {
    padding: 18px;
  }

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

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

  .detail-title-row {
    flex-direction: column;
  }

  .compact-card {
    grid-template-columns: 96px 1fr;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 460px) {
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }
}
