@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes cosmicGlow {
  0%, 100% { box-shadow: 0 0 18px 4px #1e3a8a, 0 0 40px 8px #1e40af55; }
  50% { box-shadow: 0 0 36px 10px #3b82f6, 0 0 70px 20px #60a5fa44; }
}
@keyframes starPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.animate-marquee { animation: marquee 32s linear infinite; }
.animate-glow { animation: cosmicGlow 3s ease-in-out infinite; }
.animate-star { animation: starPulse 2.5s ease-in-out infinite; }
.animate-fadeinup { animation: fadeInUp 0.7s ease both; }
.animate-float { animation: parallaxFloat 5s ease-in-out infinite; }
.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.prose {
  color: #e2e8f0;
  max-width: 100%;
  line-height: 1.8;
  font-size: 1rem;
}
.prose h2 {
  color: #93c5fd;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #1e40af;
  padding-bottom: 0.3rem;
}
.prose h3 {
  color: #bfdbfe;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  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: 1rem;
  color: #cbd5e1;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 1em;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(30,58,138,0.18);
  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.5rem;
}
.prose th {
  background: #1e3a8a;
  color: #bfdbfe;
  padding: 0.6em 1em;
  text-align: left;
  font-weight: 700;
  border: 1px solid #1e40af;
}
.prose td {
  padding: 0.5em 1em;
  border: 1px solid #1e3a8a;
  color: #e2e8f0;
  background: #0f172a;
}
.prose tr:nth-child(even) td {
  background: #111827;
}
.prose img {
  max-width: 100%;
  border-radius: 10px;
  margin: 1.5rem 0;
  border: 2px solid #1e40af;
}
img, table, video, iframe { max-width: 100%; }
.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }
