@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 16px 2px #1e40af88; }
  50% { box-shadow: 0 0 36px 8px #60a5fa88; }
}
@keyframes badgePop {
  0% { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-wrap {
  overflow: hidden;
  width: 100%;
}
.parallax-float {
  animation: parallaxFloat 6s ease-in-out infinite;
}
.glow-card {
  animation: glowPulse 3s ease-in-out infinite;
}
.badge-pop {
  animation: badgePop 0.5s ease-out both;
}
.prose {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #93c5fd;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #1e3a8a44;
  padding-bottom: 0.3rem;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #bfdbfe;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose a {
  color: #60a5fa;
  text-decoration: underline;
}
.prose a:hover {
  color: #93c5fd;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1.2rem;
  color: #cbd5e1;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #1e40af;
  padding-left: 1em;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  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: #1e3a8a;
  color: #e2e8f0;
}
.prose th {
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 600;
}
.prose td {
  padding: 0.55rem 1rem;
  border-bottom: 1px solid #1e3a8a55;
  color: #cbd5e1;
  background: #0f172a;
}
.prose tr:nth-child(even) td {
  background: #131c2e;
}
