@keyframes starPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 8px #d4af37, 0 0 20px #d4af3740; }
  50% { box-shadow: 0 0 20px #d4af37, 0 0 40px #d4af3780; }
}
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.star-particle {
  animation: starPulse 2.5s ease-in-out infinite;
}
.marquee-track {
  animation: marqueeScroll 30s linear infinite;
  display: flex;
  width: max-content;
}
.gold-glow {
  animation: goldGlow 2s ease-in-out infinite;
}
.float-anim {
  animation: parallaxFloat 5s ease-in-out infinite;
}
.prose {
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #d4af37;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #d4af3740;
  padding-bottom: 0.4rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f0d87c;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.prose p {
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose a {
  color: #d4af37;
  text-decoration: underline;
}
.prose a:hover {
  color: #f0d87c;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #d4af37;
  padding-left: 1rem;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 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: #1e2a5e;
}
.prose th {
  padding: 0.6rem 1rem;
  color: #d4af37;
  font-weight: 700;
  text-align: left;
  border: 1px solid #2d3a7a;
}
.prose td {
  padding: 0.5rem 1rem;
  border: 1px solid #1e2a5e;
  color: #cbd5e1;
  background: #0d1340;
}
.prose tr:nth-child(even) td {
  background: #111840;
}
.prose img {
  max-width: 100%;
  border-radius: 0.5rem;
  margin: 1.5rem auto;
  display: block;
}
.nav-mobile-menu {
  background-color: #080c24;
  border-top: 1px solid #d4af3740;
}
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
