:root {
  --color-emerald: #10b981;
  --color-violet: #8b5cf6;
  --color-dark: #020617;
}

@keyframes aurora-shift {
  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 glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.5), 0 0 60px rgba(16, 185, 129, 0.3); }
}

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

.aurora-hero {
  background: radial-gradient(ellipse at top, rgba(16,185,129,0.15) 0%, rgba(139,92,246,0.1) 40%, transparent 70%);
}

.aurora-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(139,92,246,0.08) 50%, rgba(16,185,129,0.05) 100%);
  background-size: 400% 400%;
  animation: aurora-shift 8s ease infinite;
  pointer-events: none;
}

.aurora-text {
  background: linear-gradient(135deg, #10b981, #8b5cf6, #10b981);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aurora-shift 4s linear infinite;
}

.glow-card {
  animation: glow-pulse 3s ease-in-out infinite;
}

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

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

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

/* Prose Styles */
.prose {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}

.prose h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #10b981;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

.prose h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #a78bfa;
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

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

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

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

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

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

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

.prose ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

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

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

.prose blockquote {
  border-left: 4px solid #10b981;
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 0 0.5rem 0.5rem 0;
  color: #a1a1aa;
  font-style: italic;
}

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

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

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

.prose table td {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(71, 85, 105, 0.4);
  color: #94a3b8;
}

.prose table tr:nth-child(even) {
  background: rgba(30, 41, 59, 0.4);
}

.prose table tr:hover {
  background: rgba(16, 185, 129, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 640px) {
  .prose h2 {
    font-size: 1.3rem;
  }
  .prose h3 {
    font-size: 1.05rem;
  }
  .prose {
    font-size: 0.95rem;
  }
}
