@keyframes aurora {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 12px 2px #00d4aa88; }
  50% { box-shadow: 0 0 28px 8px #4db8ff88; }
}
.aurora-bg {
  background: linear-gradient(270deg, #0a1628, #0d2a40, #0a2418, #0a1628);
  background-size: 400% 400%;
  animation: aurora 12s ease infinite;
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.hero-parallax {
  background-image: url('/images/hero.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.glow-btn {
  animation: pulse-glow 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.6rem;
  font-weight: 700;
  color: #00d4aa;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #00d4aa44;
  padding-bottom: 0.3rem;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4db8ff;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose a {
  color: #00d4aa;
  text-decoration: underline;
}
.prose a:hover {
  color: #4db8ff;
}
.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 #00d4aa;
  padding-left: 1rem;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 0;
  background: #0d2a4066;
  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 thead {
  background: #00d4aa22;
}
.prose th {
  padding: 0.6rem 1rem;
  text-align: left;
  color: #00d4aa;
  font-weight: 700;
  border: 1px solid #1e3a5f;
}
.prose td {
  padding: 0.55rem 1rem;
  border: 1px solid #1e3a5f;
  color: #cbd5e1;
}
.prose tr:nth-child(even) td {
  background: #0d2a4033;
}
.prose img {
  max-width: 100%;
  border-radius: 10px;
  margin: 1.5rem 0;
}
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
