:root {
  --gold: #c9a227;
  --sapphire: #07102a;
  --velvet: #0a1735;
  --text-light: #e8d9a0;
  --text-muted: #a89b6a;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.7s ease both;
}

.hero-bg {
  will-change: transform;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #c9a227 !important;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.2s, background-color 0.2s;
}

.mobile-nav-link:hover {
  border-color: #c9a227;
  background-color: #152b5e;
}

.cta-btn {
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-btn:hover {
  box-shadow: 0 4px 20px #c9a22755;
  transform: translateY(-2px);
}

/* Prose styles for Markdown content */
.prose {
  color: #e8d9a0;
  max-width: 100%;
  line-height: 1.8;
  font-size: 1rem;
}

.prose h2 {
  color: #c9a227;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #1e2e50;
  padding-bottom: 0.5rem;
}

.prose h3 {
  color: #d4b84a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  color: #a89b6a;
  margin-bottom: 1.25rem;
}

.prose a {
  color: #c9a227;
  text-decoration: underline;
}

.prose a:hover {
  color: #e8d9a0;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #a89b6a;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #a89b6a;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose blockquote {
  border-left: 4px solid #c9a227;
  padding-left: 1.25rem;
  margin-left: 0;
  color: #a89b6a;
  font-style: italic;
  background-color: #0d1b3e;
  border-radius: 0 0.5rem 0.5rem 0;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 1px solid #1e2e50;
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.prose thead tr {
  background-color: #152b5e;
}

.prose th {
  color: #c9a227;
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 1px solid #1e2e50;
}

.prose td {
  color: #a89b6a;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #1e2e50;
}

.prose tr:last-child td {
  border-bottom: none;
}

.prose strong {
  color: #e8d9a0;
  font-weight: 600;
}

.prose code {
  background-color: #152b5e;
  color: #c9a227;
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

/* Overflow wrapper for tables in markdown */
.prose .overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
