@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 12px 2px #b8972a44; }
  50% { box-shadow: 0 0 28px 6px #b8972a99; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.gold-glow { animation: goldGlow 2.8s ease-in-out infinite; }
.float-anim { animation: parallaxFloat 5s ease-in-out infinite; }
.fade-in-up { animation: fadeInUp 0.7s ease both; }
.prose {
  color: #e8e0d0;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #d4a830;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #2a3a5c;
  padding-bottom: 0.4rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #c9993a;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #e0d8c8;
}
.prose a {
  color: #d4a830;
  text-decoration: underline;
}
.prose a:hover { color: #f0c84a; }
.prose ul {
  list-style: disc;
  padding-left: 1.6em;
  margin-bottom: 1rem;
  color: #e0d8c8;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.6em;
  margin-bottom: 1rem;
  color: #e0d8c8;
}
.prose li { margin-bottom: 0.35rem; }
.prose blockquote {
  border-left: 4px solid #d4a830;
  padding-left: 1em;
  color: #c8bda4;
  font-style: italic;
  margin: 1.2rem 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.2rem 0;
}
.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.2rem;
}
.prose th {
  background: #1a2a4a;
  color: #d4a830;
  padding: 0.6em 1em;
  text-align: left;
  font-weight: 700;
  border: 1px solid #2a3a5c;
}
.prose td {
  padding: 0.55em 1em;
  border: 1px solid #2a3a5c;
  color: #e0d8c8;
  background: #0f1d35;
}
.prose tr:nth-child(even) td { background: #152238; }
.nav-mobile-menu {
  background: #0a1628;
}
