@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes parallaxBg {
  0% { background-position: center 0%; }
  100% { background-position: center 20%; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 12px #1e90ff88; }
  50% { box-shadow: 0 0 32px #1e90ffcc, 0 0 60px #1e90ff44; }
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.glow-btn {
  animation: glowPulse 2.4s ease-in-out infinite;
}
.fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}
.prose {
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #60b8ff;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #1e3a5f;
  padding-bottom: 0.4rem;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #93c5fd;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #cbd5e1;
}
.prose a {
  color: #60b8ff;
  text-decoration: underline;
}
.prose a:hover {
  color: #93c5fd;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #1e90ff;
  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;
  margin-bottom: 1.5rem;
}
.prose thead {
  background: #1e3a5f;
}
.prose th {
  padding: 0.6rem 1rem;
  color: #93c5fd;
  font-weight: 700;
  text-align: left;
  border: 1px solid #2d4a6e;
}
.prose td {
  padding: 0.55rem 1rem;
  color: #cbd5e1;
  border: 1px solid #1e3a5f;
}
.prose tbody tr:nth-child(even) {
  background: #111827;
}
.prose tbody tr:nth-child(odd) {
  background: #0d1117;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
