@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.7); }
  50% { box-shadow: 0 0 0 12px rgba(201,162,39,0); }
}
.marquee-track { animation: marquee 32s linear infinite; }
.fade-in-up { animation: fadeInUp 0.7s ease both; }
.gold-shimmer {
  background: linear-gradient(90deg, #c9a227 0%, #f5e07a 40%, #c9a227 60%, #e8c55a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
.pulse-gold { animation: pulse-gold 2s infinite; }
.prose { color: #e2e8f0; font-size: 1rem; line-height: 1.8; max-width: 100%; }
.prose h2 { color: #e8c55a; font-size: 1.6rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; border-bottom: 2px solid rgba(201,162,39,0.3); padding-bottom: 0.4rem; }
.prose h3 { color: #c9a227; font-size: 1.25rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.prose p { margin-bottom: 1.25rem; }
.prose a { color: #e8c55a; text-decoration: underline; }
.prose a:hover { color: #fff; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote { border-left: 4px solid #c9a227; padding-left: 1rem; color: #a0aec0; font-style: italic; margin: 1.5rem 0; }
.prose img { max-width: 100%; height: auto; border-radius: 0.75rem; margin: 1.5rem auto; display: block; }
.prose table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; white-space: nowrap; border-collapse: collapse; width: 100%; margin-bottom: 1.5rem; }
.prose thead { background: rgba(201,162,39,0.2); }
.prose th { color: #e8c55a; font-weight: 700; padding: 0.6rem 1rem; text-align: left; border: 1px solid rgba(201,162,39,0.25); }
.prose td { padding: 0.6rem 1rem; border: 1px solid rgba(201,162,39,0.15); color: #e2e8f0; }
.prose tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
html { scroll-behavior: smooth; }
