:root {
  --aurora-night: #060d1f;
  --aurora-deep: #0a1628;
  --aurora-card: #0f1f3d;
  --aurora-emerald: #10b981;
  --aurora-violet: #8b5cf6;
}

@keyframes aurora-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.6; transform: scale(1.05) rotate(3deg); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes parallax-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.aurora-overlay {
  background: radial-gradient(ellipse at 20% 50%, rgba(16,185,129,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.15) 0%, transparent 60%);
  animation: aurora-pulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-parallax {
  background-attachment: fixed;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.bonus-badge {
  animation: parallax-float 4s ease-in-out infinite;
}

body {
  background-color: var(--aurora-night);
  color: #f1f5f9;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.prose {
  color: #cbd5e1;
  line-height: 1.75;
  font-size: 1rem;
  max-width: 100%;
}

.prose h2 {
  color: #10b981;
  font-size: 1.75rem;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(16,185,129,0.3);
  padding-bottom: 0.5rem;
}

.prose h3 {
  color: #a78bfa;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
  color: #cbd5e1;
}

.prose a {
  color: #10b981;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.prose a:hover {
  color: #34d399;
}

.prose ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.25rem;
}

.prose ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #cbd5e1;
}

.prose ul li::before {
  content: '\25B8';
  color: #10b981;
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose ol li {
  margin-bottom: 0.5rem;
  color: #cbd5e1;
  padding-left: 0.25rem;
}

.prose blockquote {
  border-left: 4px solid #8b5cf6;
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: #94a3b8;
  font-style: italic;
  background: rgba(139,92,246,0.08);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.25rem;
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.prose thead tr {
  background-color: rgba(16,185,129,0.2);
}

.prose th {
  color: #10b981;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(16,185,129,0.3);
  text-align: left;
}

.prose td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(16,185,129,0.15);
  color: #cbd5e1;
}

.prose tr:nth-child(even) {
  background-color: rgba(15,31,61,0.5);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1.5rem 0;
  border: 2px solid rgba(16,185,129,0.3);
}

.prose strong {
  color: #f1f5f9;
  font-weight: 700;
}

.prose code {
  background: rgba(139,92,246,0.2);
  color: #a78bfa;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .prose h2 { font-size: 1.4rem; }
  .prose h3 { font-size: 1.1rem; }
  .prose { font-size: 0.95rem; }
}
