@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Crimson+Pro:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

:root {
  --void: #0a0a0f;
  --void-soft: #12121c;
  --void-surface: #1a1a2e;
  --void-elevated: #222240;
  --void-border: #2a2a45;

  --purpur: #9b59b6;
  --purpur-bright: #c084fc;
  --purpur-glow: #a855f7;
  --purpur-deep: #6b21a8;
  --purpur-muted: #7c3aed33;

  --gold: #d4a574;
  --gold-bright: #e8c89e;
  --gold-muted: #d4a57433;

  --text-primary: #e8e0f0;
  --text-secondary: #a098b0;
  --text-muted: #6b6380;

  --font-display: 'Cinzel', serif;
  --font-prose: 'Crimson Pro', serif;
  --font-ui: 'Inter', sans-serif;

  --max-width: 1200px;
  --prose-width: 720px;
  --spacing: 1.5rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--purpur-muted);
  color: var(--purpur-bright);
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  scrollbar-color: var(--void-border) var(--void);
}

body {
  font-family: var(--font-prose);
  background: var(--void);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════
   AMBIENT BACKGROUND
   ═══════════════════════════════════ */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(107, 33, 168, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--void-border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-logo .title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.site-logo .subtitle {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  color: var(--purpur-bright);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
}

.main-nav {
  display: flex;
  gap: 0.25rem;
}

.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--purpur-bright);
  background: var(--purpur-muted);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ═══════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════ */

.site-main {
  flex: 1;
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
}

.prose-container {
  max-width: var(--prose-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
}

/* ═══════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════ */

.hero {
  text-align: center;
  padding: 6rem 0 4rem;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purpur), transparent);
}

.hero-ornament {
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: var(--purpur-glow);
  margin-bottom: 1.5rem;
  font-family: var(--font-ui);
  font-weight: 300;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--purpur-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-prose);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purpur-deep), var(--purpur));
  color: white;
  border: 1px solid var(--purpur);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--void-border);
}

.btn-secondary:hover {
  color: var(--purpur-bright);
  border-color: var(--purpur);
  background: var(--purpur-muted);
}

/* ═══════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════ */

.section-header {
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.section-header .section-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--purpur-glow);
  margin-top: 0.75rem;
}

.section-header a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--purpur-bright);
  text-decoration: none;
  transition: color 0.2s;
}

.section-header a:hover {
  color: var(--gold);
}

.section-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

/* ═══════════════════════════════════
   NEWS FEED
   ═══════════════════════════════════ */

.home-section {
  padding: 4rem 0;
}

.news-feed {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem;
  background: var(--void-soft);
  border: 1px solid var(--void-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.news-card:hover {
  border-color: var(--purpur);
  background: var(--void-surface);
  box-shadow: 0 4px 30px rgba(168, 85, 247, 0.06);
  transform: translateY(-2px);
}

.news-date {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--purpur-bright);
  background: var(--purpur-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
}

.news-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.news-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.news-arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
  padding-top: 0.15rem;
  transition: color 0.2s, transform 0.2s;
}

.news-card:hover .news-arrow {
  color: var(--purpur-bright);
  transform: translateX(3px);
}

.news-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  background: var(--gold-muted);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

.news-author {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.15rem;
}

/* ═══════════════════════════════════
   CHAPTER CARDS
   ═══════════════════════════════════ */

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.chapter-card {
  position: relative;
  padding: 2rem;
  background: var(--void-soft);
  border: 1px solid var(--void-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chapter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purpur-deep), var(--purpur-bright), var(--purpur-deep));
  opacity: 0;
  transition: opacity 0.3s;
}

.chapter-card:hover {
  border-color: var(--purpur);
  background: var(--void-surface);
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.08);
  transform: translateY(-3px);
}

.chapter-card:hover::before {
  opacity: 1;
}

.chapter-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--purpur-bright);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.chapter-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.chapter-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.chapter-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--void-border);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.chapter-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ═══════════════════════════════════
   PAGE HEADER (for list pages)
   ═══════════════════════════════════ */

.page-header {
  text-align: center;
  padding: 5rem 0 3rem;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purpur), transparent);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.page-header p {
  font-family: var(--font-prose);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ═══════════════════════════════════
   SINGLE ARTICLE / CHAPTER
   ═══════════════════════════════════ */

.article-header {
  text-align: center;
  padding: 5rem 0 3rem;
}

.article-header .chapter-number {
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.article-meta {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.article-body {
  padding: 3rem 0 5rem;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.article-body p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.article-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  float: left;
  line-height: 0.8;
  margin-right: 0.15em;
  margin-top: 0.05em;
  color: var(--purpur-bright);
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 3rem 0 1.5rem;
  letter-spacing: 0.04em;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}

.article-body blockquote {
  border-left: 2px solid var(--purpur);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--purpur-muted);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-secondary);
}

.article-body hr {
  border: none;
  text-align: center;
  margin: 3rem 0;
}

.article-body hr::after {
  content: '⟡ ⟡ ⟡';
  color: var(--purpur);
  letter-spacing: 0.5em;
  font-size: 0.7rem;
}

.article-body ul, .article-body ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body a {
  color: var(--purpur-bright);
  text-decoration: underline;
  text-decoration-color: var(--purpur-muted);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.article-body a:hover {
  text-decoration-color: var(--purpur-bright);
}

.article-body .lore-link {
  color: inherit;
  text-decoration: none;
}

.article-body .lore-link:hover {
  color: inherit;
}

/* Chapter navigation */
.chapter-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 3rem 0;
  border-top: 1px solid var(--void-border);
  margin-top: 2rem;
}

.chapter-nav a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--void-border);
  border-radius: 8px;
  transition: all 0.25s;
  max-width: 45%;
}

.chapter-nav a:hover {
  color: var(--purpur-bright);
  border-color: var(--purpur);
  background: var(--purpur-muted);
}

.chapter-nav .nav-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.chapter-nav .nav-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* ═══════════════════════════════════
   WORLD / LORE PAGE
   ═══════════════════════════════════ */

.clermeil-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 1rem;
}

.clermeil-intro p {
  font-family: var(--font-prose);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.clermeil-intro strong {
  color: var(--text-primary);
  font-weight: 600;
}

.clermeil-map {
  margin: 2rem 0 0;
  text-align: center;
}

.clermeil-map img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--void-border);
}



.lore-group {
  margin-top: 2.5rem;
}

.lore-group:first-of-type {
  margin-top: 1.5rem;
}

.lore-group-heading {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--void-border);
  margin-bottom: 0;
}

.lore-list {
  display: flex;
  flex-direction: column;
}

.lore-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid var(--void-border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.lore-list-item:hover {
  background: var(--void-soft);
  padding-left: 1rem;
}

.lore-list-content {
  flex: 1;
  min-width: 0;
}

.lore-list-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.lore-list-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lore-list-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lore-list-item:hover .lore-list-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--void-border);
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-right {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-right a {
  color: var(--purpur-bright);
  text-decoration: none;
}

.footer-legal {
  max-width: var(--max-width);
  margin: 0.75rem auto 0;
  padding: 0 var(--spacing);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-legal a:hover {
  opacity: 1;
}

/* ═══════════════════════════════════
   PAGINATION
   ═══════════════════════════════════ */

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem 0;
  font-family: var(--font-ui);
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: 8px;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.2s;
}

.pagination a {
  color: var(--text-secondary);
  border: 1px solid var(--void-border);
}

.pagination a:hover {
  color: var(--purpur-bright);
  border-color: var(--purpur);
  background: var(--purpur-muted);
}

.pagination .active {
  color: white;
  background: var(--purpur-deep);
  border: 1px solid var(--purpur);
}

/* ═══════════════════════════════════
   DECORATIVE ELEMENTS
   ═══════════════════════════════════ */

.divider {
  text-align: center;
  padding: 2rem 0;
  color: var(--purpur);
  font-size: 0.8rem;
  letter-spacing: 0.5em;
}

.ornament {
  display: inline-block;
  color: var(--purpur-glow);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
}

/* ═══════════════════════════════════
   LORE LINKS & TOOLTIP
   ═══════════════════════════════════ */

.lore-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1.5px dotted var(--text-muted);
  cursor: help;
  transition: border-color 0.2s;
}

.lore-link:hover {
  border-bottom-color: var(--text-secondary);
}

.lore-tooltip {
  position: fixed;
  max-width: 300px;
  padding: 0.75rem 1rem;
  background: var(--void-elevated);
  border: 1px solid var(--void-border);
  border-left: 3px solid var(--purpur);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-secondary);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}

.lore-tooltip.visible {
  opacity: 1;
  pointer-events: auto;
}

.lore-tooltip-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purpur-bright);
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}

.lore-tooltip-more {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  color: var(--purpur);
  text-decoration: none;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .header-inner {
    height: 60px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--void-border);
  }

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

  .main-nav a {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .news-date {
    justify-self: start;
  }

  .news-arrow {
    display: none;
  }

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

  .chapter-nav {
    flex-direction: column;
  }

  .chapter-nav a {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing: 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
