:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-strong: #fff7ed;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --amber: #d97706;
  --amber-dark: #92400e;
  --orange: #ea580c;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

button,
a,
input {
  outline-color: rgba(217, 119, 6, 0.45);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

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

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

.brand-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #fff;
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.26);
}

.brand-text {
  font-size: 1.35rem;
}

.desktop-nav,
.header-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  position: relative;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.header-search input,
.hero-search input,
.inline-search input,
.search-page-form input,
.filter-panel input {
  border: 0;
  background: transparent;
  color: var(--text);
}

.header-search input {
  width: 190px;
  padding: 8px 10px;
}

.header-search button,
.hero-search button,
.inline-search button,
.search-page-form button,
.filter-chips button {
  border: 0;
  border-radius: 999px;
  background: var(--amber);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search button {
  padding: 8px 14px;
}

.header-search button:hover,
.hero-search button:hover,
.inline-search button:hover,
.search-page-form button:hover,
.filter-chips button:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(217, 119, 6, 0.2);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--amber-dark);
  background: #fff;
  font-size: 1.4rem;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav.is-open {
  display: grid;
  gap: 6px;
}

.mobile-link {
  padding: 11px 12px;
  border-radius: 12px;
  color: #374151;
  font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--amber-dark);
  background: #fff7ed;
}

.hero-carousel {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

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

.hero-backdrop,
.detail-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.08);
}

.hero-backdrop::after,
.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.66) 46%, rgba(17, 24, 39, 0.26)),
    radial-gradient(circle at 76% 14%, rgba(245, 158, 11, 0.34), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  align-items: center;
  gap: 56px;
  min-height: 690px;
  padding: 64px 0 92px;
}

.hero-copy {
  color: #fff;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fbbf24;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-copy h1 {
  margin-top: 18px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 760px;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
}

.hero-copy p,
.page-hero p,
.detail-copy .lead-text {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
  line-height: 1.9;
}

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

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

.hero-tags span,
.detail-tags a,
.tag-row span {
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-tags span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.ghost-button,
.text-button,
.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #fff;
  box-shadow: 0 18px 36px rgba(217, 119, 6, 0.3);
}

.ghost-button {
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.rank-action:hover {
  transform: translateY(-2px);
}

.hero-search,
.inline-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(620px, 100%);
  margin-top: 30px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-search input,
.inline-search input,
.search-page-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  color: #fff;
}

.hero-search input::placeholder,
.inline-search input::placeholder,
.search-page-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search button,
.inline-search button,
.search-page-form button {
  padding: 12px 20px;
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 32px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}

.hero-poster img {
  aspect-ratio: 3 / 4.2;
  height: 520px;
  object-fit: cover;
  background: linear-gradient(135deg, #78350f, #111827);
}

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

.hero-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.hero-dot.is-active {
  width: 34px;
  background: #fbbf24;
}

.section-block {
  padding: 58px 0;
}

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

.section-heading h2,
.page-hero h1,
.detail-article h2,
.home-panel h2 {
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-link,
.text-button {
  color: var(--amber-dark);
  font-weight: 900;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #f59e0b, #111827);
}

.movie-poster img {
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.76);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

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

.movie-meta {
  color: var(--amber-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.movie-card h3 {
  margin-top: 9px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-info h3 a:hover,
.overview-body h2 a:hover {
  color: var(--amber);
}

.movie-card p {
  display: -webkit-box;
  min-height: 4.8em;
  margin-top: 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.tag-row span,
.detail-tags a {
  padding: 6px 9px;
  background: #fff7ed;
  color: var(--amber-dark);
}

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

.category-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  color: #fff;
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 38px rgba(120, 53, 15, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(120, 53, 15, 0.26);
}

.category-card span,
.category-card em {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-style: normal;
}

.category-card strong {
  margin: 8px 0;
  font-size: 1.4rem;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
}

.home-panel {
  align-self: start;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #78350f, #f59e0b);
  color: #fff;
  box-shadow: var(--shadow);
}

.home-panel h2 {
  margin-top: 14px;
  color: #fff;
  font-size: 2rem;
}

.home-panel p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.rank-num {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: #fff7ed;
  color: var(--amber-dark);
  font-weight: 900;
}

.rank-cover {
  overflow: hidden;
  border-radius: 16px;
  background: #111827;
}

.rank-cover img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.rank-info h3 {
  font-size: 1.08rem;
  font-weight: 900;
}

.rank-info p {
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rank-meta {
  margin-top: 7px;
  color: var(--amber-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.rank-action {
  padding: 10px 14px;
  background: #111827;
  color: #fff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(251, 191, 36, 0.38), transparent 28%),
    linear-gradient(135deg, #111827 0%, #78350f 58%, #d97706 100%);
  color: #fff;
}

.page-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.inline-search,
.search-page-form {
  border-color: rgba(255, 255, 255, 0.26);
}

.filter-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.filter-panel input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f9fafb;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chips button {
  padding: 8px 13px;
  background: #fff7ed;
  color: var(--amber-dark);
}

.filter-chips button.is-active {
  background: var(--amber);
  color: #fff;
}

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

.overview-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.overview-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 8px;
  background: #111827;
}

.overview-thumbs img {
  height: 140px;
  border-radius: 14px;
  object-fit: cover;
}

.overview-body {
  padding: 24px;
}

.overview-body span {
  color: var(--amber-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.overview-body h2 {
  margin-top: 8px;
  font-size: 1.5rem;
  font-weight: 900;
}

.overview-body p {
  margin: 12px 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  background: #111827;
  color: #fff;
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  padding: 44px 0 76px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
}

.detail-poster img {
  aspect-ratio: 3 / 4.15;
  object-fit: cover;
  background: linear-gradient(135deg, #78350f, #111827);
}

.detail-copy h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 24px;
}

.detail-meta-grid span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.detail-tags {
  margin-top: 20px;
}

.detail-tags a {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.detail-main {
  display: grid;
  gap: 34px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 30px 75px rgba(15, 23, 42, 0.25);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.32), rgba(2, 6, 23, 0.78));
  color: #fff;
  text-align: center;
}

.player-shell.is-playing .player-overlay {
  display: none;
}

.play-ring {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.38);
  font-size: 2rem;
}

.player-overlay strong {
  max-width: 90%;
  font-size: 1.35rem;
}

.detail-article {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.detail-article h2 {
  font-size: 1.6rem;
}

.detail-article p {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.95;
}

.related-grid .movie-card.compact p {
  min-height: auto;
  -webkit-line-clamp: 2;
}

.search-status {
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  margin-top: 48px;
  background: #111827;
  color: #d1d5db;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 42px 0;
}

.footer-brand {
  color: #fff;
  font-size: 1.25rem;
}

.footer-inner p {
  max-width: 520px;
  margin-top: 10px;
  color: #9ca3af;
  line-height: 1.7;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  color: #9ca3af;
  text-align: center;
  font-size: 0.92rem;
}

[data-filter-card].is-hidden {
  display: none;
}

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

  .menu-button {
    display: grid;
    place-items: center;
  }

  .hero-content {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }

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

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

  .split-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .header-search {
    display: none;
  }

  .brand-text {
    font-size: 1.18rem;
  }

  .hero-carousel,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 42px;
    gap: 28px;
  }

  .hero-poster {
    width: min(260px, 72vw);
    margin: 0 auto;
    transform: rotate(0deg);
  }

  .hero-poster img {
    height: auto;
  }

  .hero-copy h1,
  .hero-copy h2,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 2.35rem;
  }

  .hero-search,
  .inline-search,
  .search-page-form {
    align-items: stretch;
    flex-direction: column;
    border-radius: 22px;
  }

  .hero-search input,
  .inline-search input,
  .search-page-form input {
    width: 100%;
  }

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

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

  .rank-item {
    grid-template-columns: 44px 64px minmax(0, 1fr);
  }

  .rank-action {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .overview-card,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

  .overview-thumbs img {
    height: 120px;
  }

  .detail-poster {
    width: min(270px, 80vw);
  }

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

  .detail-article {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .movie-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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