@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 8px 2px #c9a227aa; }
  50% { box-shadow: 0 0 24px 8px #c9a227ff; }
}
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes spinReel {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.glow-badge {
  animation: glow 2.4s ease-in-out infinite;
}
.float-anim {
  animation: parallaxFloat 5s ease-in-out infinite;
}
.reel-spin {
  animation: spinReel 3s linear infinite;
}
.prose {
  color: #f0ece4;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #c9a227;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #1e3a6e;
  padding-bottom: 0.4rem;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e8d48a;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #e8e0d0;
}
.prose a {
  color: #c9a227;
  text-decoration: underline;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #e8e0d0;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #e8e0d0;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #c9a227;
  padding-left: 1em;
  color: #c9a227;
  font-style: italic;
  margin: 1.2rem 0;
  background: rgba(201,162,39,0.08);
  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.2rem;
}
.prose th {
  background: #1e3a6e;
  color: #c9a227;
  padding: 0.6em 1em;
  text-align: left;
  font-weight: 700;
  border: 1px solid #2a4a7f;
}
.prose td {
  padding: 0.5em 1em;
  border: 1px solid #2a4a7f;
  color: #e8e0d0;
  background: #0d1b3e;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.2rem 0;
}
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
