@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
@keyframes coinSpin {
  0% { transform: rotateY(0deg) scale(1); }
  50% { transform: rotateY(180deg) scale(1.08); }
  100% { transform: rotateY(360deg) scale(1); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 12px 2px #D4AF37aa; }
  50% { box-shadow: 0 0 32px 8px #D4AF37dd; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.coin-float {
  animation: parallaxFloat 4s ease-in-out infinite;
}
.glow-gold {
  animation: glowPulse 2.5s ease-in-out infinite;
}
.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}
.prose {
  color: #1a2e4a;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2e4a;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 0.3rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E5F8E;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #1a2e4a;
}
.prose a {
  color: #1E90FF;
  text-decoration: underline;
}
.prose a:hover {
  color: #D4AF37;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #1a2e4a;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #1a2e4a;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #D4AF37;
  padding-left: 1em;
  color: #3a4a5a;
  font-style: italic;
  margin: 1.5rem 0;
  background: #f5f0e8;
  border-radius: 0 6px 6px 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.5rem;
}
.prose thead {
  background: #1a2e4a;
  color: #F8F5EE;
}
.prose th {
  padding: 0.6em 1em;
  text-align: left;
  font-weight: 700;
  color: #F8F5EE;
}
.prose td {
  padding: 0.5em 1em;
  border-bottom: 1px solid #e2d9c8;
  color: #1a2e4a;
}
.prose tr:nth-child(even) td {
  background: #f5f0e8;
}
.prose img {
  max-width: 100%;
  border-radius: 10px;
  margin: 1.5rem auto;
  display: block;
}
img, table, iframe, video {
  max-width: 100%;
}
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
