@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 #FFD700aa; }
  50% { box-shadow: 0 0 28px 8px #FFD700ee; }
}
@keyframes spinBadge {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.float-anim {
  animation: parallaxFloat 5s ease-in-out infinite;
}
.gold-glow {
  animation: goldGlow 2.5s ease-in-out infinite;
}
.spin-badge {
  animation: spinBadge 3s ease-in-out infinite;
}
.prose {
  color: #f0e6c8;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFD700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #DC143C44;
  padding-bottom: 0.3rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f9c74f;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #e8dcc8;
}
.prose a {
  color: #FFD700;
  text-decoration: underline;
}
.prose a:hover {
  color: #DC143C;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #e8dcc8;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #e8dcc8;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #FFD700;
  padding-left: 1rem;
  color: #c9b99a;
  font-style: italic;
  margin: 1.2rem 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 2px solid #FFD70044;
}
.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.95rem;
}
.prose table th {
  background: #2a1040;
  color: #FFD700;
  padding: 0.6rem 1rem;
  border: 1px solid #FFD70033;
  text-align: left;
}
.prose table td {
  background: #1a0a2e;
  color: #e8dcc8;
  padding: 0.5rem 1rem;
  border: 1px solid #FFD70022;
}
.prose table tr:hover td {
  background: #22103a;
}
