:root {
  --bg: #211f1c; /* very dark brown-black */
  --panel: #2c2a28; /* panels/cards */
  --card: #1f1c1a;
  --muted: #9a968f;
  --text: #e6e2dc; /* warm cream */
  --beige: #d4c5b9; /* primary CTA */
  --border: rgba(255,255,255,0.04);
  --accent: #bfa06f; /* subtle gold for small accents */
  --radius: 12px;
  --max-width: 1280px;
  --base-font-size: 18px; /* increased base font size */
  --anim-fast: 180ms;
  --anim: 360ms;
  --anim-slow: 520ms;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Roboto, Segoe UI, Arial, Helvetica;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: var(--base-font-size);
}

.wrap {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header / Nav */
.site-header {
  background: linear-gradient(180deg, rgba(0,0,0,0.25), transparent);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}

.brand {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  transition: transform var(--anim-fast) ease, opacity var(--anim-fast) ease;
}

.brand:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.brand:active {
  transform: translateY(0);
}

.nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 1.02rem;
  padding: 0.4rem 0.5rem;
  display: inline-block;
  transition: transform var(--anim-fast) ease, color var(--anim-fast) ease, box-shadow var(--anim-fast) ease;
}

.nav-link.active,
.nav-link:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.nav-link:active {
  transform: translateY(0);
}

/* dropdown - redesigned and optimized */
.has-dropdown {
  position: relative;
}

.has-dropdown > .nav-link::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.85em;
  opacity: 0.6;
  transition: transform var(--anim-fast) ease;
}

.has-dropdown:hover > .nav-link::after {
  transform: rotate(180deg);
}

/* Bridge/connector to prevent dropdown from disappearing */
.has-dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.has-dropdown:hover::before {
  opacity: 1;
  pointer-events: auto;
}

.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0;
  margin: 0;
  border-radius: 10px;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  transition: opacity var(--anim) ease, transform var(--anim) cubic-bezier(.2,.9,.3,1), visibility var(--anim) ease;
  backdrop-filter: blur(8px);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.touch-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown a {
  display: block;
  padding: 0.7rem 1.2rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
  transition: background var(--anim-fast) ease, color var(--anim-fast) ease, transform var(--anim-fast) ease, padding-left var(--anim-fast) ease;
  border-left: 2px solid transparent;
}

.dropdown a:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding-left: 1.4rem;
  border-left-color: var(--accent);
}

/* brand image */
.brand-img {
  border-radius: 6px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.brand-text {
  font-weight: 700;
}

/* general animated helpers */
.anim-safe {
  transition: all var(--anim) cubic-bezier(.2,.9,.3,1);
}

/* respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  :root {
    --anim-fast: 0ms;
    --anim: 0ms;
    --anim-slow: 0ms;
  }

  .dropdown {
    transition: none !important;
  }

  .anim-safe {
    transition: none !important;
  }
}

/* search - redesigned to match reference */
.search-wrap {
  margin-left: auto;
  margin-right: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 101;
}

.search-wrap .ph-magnifying-glass {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #666;
  pointer-events: none;
  z-index: 1;
  transition: color var(--anim-fast) ease, transform var(--anim-fast) ease;
}

.search {
  background: #2a2825;
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
  padding: 0.6rem 1rem 0.6rem 2.6rem;
  border-radius: 6px;
  min-width: 200px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--anim-fast) ease, box-shadow var(--anim-fast) ease, background var(--anim-fast) ease, transform var(--anim-fast) ease, min-width var(--anim) ease;
}

.search::placeholder {
  color: #666;
  transition: color var(--anim-fast) ease;
}

.search:hover {
  border-color: rgba(255,255,255,0.09);
  background: #2c2927;
}

.search:hover + .ph-magnifying-glass,
.search-wrap:hover .ph-magnifying-glass {
  color: #888;
  transform: translateY(-50%) scale(1.1);
}

.search:focus {
  border-color: rgba(255,255,255,0.12);
  background: #2f2c29;
  box-shadow: 0 0 0 3px rgba(191,160,111,0.1);
  min-width: 240px;
}

.search:focus::placeholder {
  color: #888;
}

.search:focus ~ .ph-magnifying-glass,
.search-wrap:has(.search:focus) .ph-magnifying-glass {
  color: var(--accent);
  transform: translateY(-50%) scale(1.15) rotate(5deg);
}

.search-btn {
  display: none;
}

/* nav toggle (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 1.25rem;
  margin-left: 8px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.25rem 0;
  margin-top: 3.25rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-inner small a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--anim-fast) ease;
}

.footer-inner small a:hover {
  opacity: 0.8;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1rem;
  display: inline-block;
  transition: color var(--anim-fast) ease, transform var(--anim-fast) ease;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.footer-links a:active {
  transform: translateY(0);
}

/* Footer Feedback Button */
.footer-feedback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--accent);
  border: none;
  border-radius: 2rem;
  color: #1a1816;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all var(--anim);
  margin-left: 1.5rem;
  text-align: center;
}

.footer-feedback-btn i {
  font-size: 1.125rem;
}

.footer-feedback-btn:hover {
  background: var(--beige);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(191, 160, 111, 0.4);
}

.footer-feedback-btn:active {
  transform: translateY(0);
}

/* Utility */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

/* Mobile Navigation Drawer */
@media (max-width: 920px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.75rem 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .brand {
    font-size: 1.05rem;
    order: 1;
    z-index: 1;
  }

  .brand-img {
    width: 32px;
    height: 32px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: background var(--anim-fast) ease;
    order: 2;
    font-size: 1.25rem;
    color: var(--text);
    z-index: 1;
  }

  .nav-toggle:hover {
    background: rgba(255,255,255,0.08);
  }

  .search-wrap {
    order: 3;
    width: 100%;
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    z-index: 1;
    padding: 0 1rem;
  }

  .search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
  }

  .search-wrap .ph-magnifying-glass {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
  }

  .search {
    width: 100%;
    min-width: auto;
    padding: 0.65rem 1rem 0.65rem 2.6rem;
  }

  /* Dropdown Navigation Menu - Expands within page flow */
  .nav {
    order: 4;
    width: calc(100% - 2rem);
    max-width: 400px;
    margin: 0.5rem auto 0 auto;
    background: #3a3835;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    padding: 0 1rem;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .nav.open {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .nav *,
  .nav *::before,
  .nav *::after {
    pointer-events: auto;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-list li {
    width: 100%;
    margin: 0;
    list-style: none;
    padding: 0;
  }

  .nav-list li a {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
    color: var(--text);
    background: transparent;
    text-decoration: none;
    border-left: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.12s ease, color 0.12s ease;
    text-align: center;
    border-radius: 6px;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-list li a:hover,
  .nav-list li a:active,
  .nav-list li a.active {
    background: rgba(191,160,111,0.25);
    color: var(--beige);
  }

  .has-dropdown {
    position: relative !important;
  }

  .has-dropdown::before {
    display: none !important;
  }

  .has-dropdown > .nav-link {
    cursor: pointer;
  }

  .has-dropdown > .nav-link::after {
    content: '▾';
    float: right !important;
    margin-left: 0.5rem;
    transform: rotate(-90deg) !important;
    transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
  }

  .has-dropdown.touch-open > .nav-link::after {
    transform: rotate(0deg) !important;
  }

  .has-dropdown .dropdown {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(0,0,0,0.2) !important;
    margin: 0.25rem 0 0 0 !important;
    padding: 0 !important;
    min-width: auto !important;
    border-radius: 6px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: none !important;
    will-change: max-height;
  }

  .has-dropdown.touch-open .dropdown {
    max-height: 500px !important;
  }

  .has-dropdown .dropdown li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .has-dropdown .dropdown li a {
    display: block !important;
    padding: 0.85rem 1.5rem !important;
    font-size: 0.95rem !important;
    color: var(--text) !important;
    background: transparent !important;
    text-decoration: none !important;
    border-left: none !important;
    transition: background 0.12s ease, color 0.12s ease !important;
    font-weight: 400 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    text-align: center !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .has-dropdown .dropdown li a:hover {
    background: rgba(191,160,111,0.15) !important;
    color: var(--beige) !important;
  }

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

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }

  .footer-links a {
    margin-left: 0;
  }

  .footer-feedback-btn {
    margin-left: 0;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }

  body.nav-open {
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: 92%;
  }

  .site-header {
    font-size: 0.95rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-img {
    width: 28px;
    height: 28px;
  }

  .nav-toggle {
    font-size: 1.3rem;
    width: 38px;
    height: 38px;
  }

  .nav {
    width: 280px;
    right: -280px;
  }

  .search {
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem 0.6rem 2.4rem;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: 94%;
  }

  .header-inner {
    padding: 0.6rem 0;
  }

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

  .nav {
    width: 260px;
    right: -260px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .site-footer {
    padding: 1.75rem 0;
    margin-top: 2.5rem;
    font-size: 0.9rem;
  }

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

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-links a {
    margin-left: 0;
  }
}

/* Icon color variants (from style.css) */
.icon--orange {
  color: #e08b5b;
}

.icon--gold {
  color: #bfa06f;
}

.icon--teal {
  color: #6ec3c9;
}

.icon--muted {
  color: #bdb6ad;
}

/* Bug Report Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease;
}

.modal.modal-open {
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.9);
  transform: scale(0.9) translateY(20px);
  transition: transform 300ms cubic-bezier(.2,.9,.3,1);
  z-index: 1;
}

.modal-open .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background var(--anim-fast) ease, color var(--anim-fast) ease, transform var(--anim-fast) ease;
}

.modal-close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  transform: rotate(90deg);
}

.modal h2 {
  margin: 0 0 1rem 0;
  color: var(--text);
  font-size: 1.75rem;
  font-weight: 700;
}

.modal-message {
  color: var(--muted);
  margin: 0 0 1.75rem 0;
  font-size: 1rem;
  line-height: 1.6;
}

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

.modal-actions .btn {
  min-width: 160px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  transition: transform var(--anim-fast) ease, box-shadow var(--anim-fast) ease, background var(--anim-fast) ease;
}

.modal-actions .btn.primary {
  background: var(--beige);
  color: #1a1816;
  border: none;
}

.modal-actions .btn.primary:hover {
  background: #ddc6af;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
}

.modal-actions .btn.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}

.modal-actions .btn.outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.modal-actions .btn:active {
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .modal-content {
    padding: 1.5rem;
    width: 94%;
  }

  .modal h2 {
    font-size: 1.4rem;
    margin-right: 2rem;
    margin-bottom: 0.75rem;
  }

  .modal-message {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }

  .modal-close {
    width: 32px;
    height: 32px;
    font-size: 1.75rem;
    top: 0.75rem;
    right: 0.75rem;
  }

  .modal-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .modal-actions .btn {
    width: auto;
    min-width: 200px;
    max-width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .modal-content {
    padding: 1.25rem;
  }

  .modal h2 {
    font-size: 1.3rem;
  }

  .modal-message {
    font-size: 0.88rem;
  }
}

/* ========================================
   TEMPORARY PLACEHOLDER: COMING SOON COMPONENT STYLES
   Remove this entire section when all pages are complete
   ======================================== */

.coming-soon-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 1rem;
}

.coming-soon-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.coming-soon-title {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--beige);
  margin: 0 0 1rem 0;
  letter-spacing: 0.1em;
  text-shadow: 0 0 30px rgba(191, 160, 111, 0.4);
}

.coming-soon-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0 0 2.5rem 0;
  font-weight: 400;
  line-height: 1.6;
}

.coming-soon-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 2rem;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--anim);
  box-shadow: 0 0 20px rgba(191, 160, 111, 0.2);
  cursor: pointer;
}

.coming-soon-btn:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(191, 160, 111, 0.5);
}

.coming-soon-btn i {
  font-size: 1.3rem;
}

/* Ember Particles */
.ember-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.ember {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 8s ease-in infinite;
  box-shadow: 0 0 10px var(--accent);
}

.ember:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 9s; }
.ember:nth-child(2) { left: 20%; animation-delay: 1.5s; animation-duration: 8s; }
.ember:nth-child(3) { left: 30%; animation-delay: 3s; animation-duration: 10s; }
.ember:nth-child(4) { left: 45%; animation-delay: 0.5s; animation-duration: 7s; }
.ember:nth-child(5) { left: 60%; animation-delay: 2s; animation-duration: 9s; }
.ember:nth-child(6) { left: 70%; animation-delay: 4s; animation-duration: 8s; }
.ember:nth-child(7) { left: 85%; animation-delay: 1s; animation-duration: 10s; }
.ember:nth-child(8) { left: 95%; animation-delay: 2.5s; animation-duration: 7s; }

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.7;
    filter: brightness(1.3);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-title {
    font-size: 2.5rem;
  }

  .coming-soon-subtitle {
    font-size: 1.1rem;
  }

  .coming-soon-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .coming-soon-container {
    padding: 2rem 1rem;
  }

  .coming-soon-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }

  .coming-soon-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .coming-soon-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* END TEMPORARY PLACEHOLDER: COMING SOON COMPONENT STYLES */
