@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 float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.aurora-bg {
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 232, 122, 0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(139, 43, 226, 0.10) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 80%, rgba(192, 132, 252, 0.05) 0%, transparent 60%);
  animation: aurora-shift 12s ease infinite;
  background-size: 200% 200%;
}

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

.prose h2 {
  color: #00e87a;
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(139, 43, 226, 0.3);
  padding-bottom: 0.5rem;
}

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

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

.prose a {
  color: #00e87a;
  text-decoration: underline;
  transition: color 0.2s;
}

.prose a:hover {
  color: #c084fc;
}

.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: #d1d5db;
}

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

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

.prose ol li {
  margin-bottom: 0.5rem;
  color: #d1d5db;
}

.prose blockquote {
  border-left: 4px solid #8b2be2;
  padding-left: 1rem;
  color: #a1a1aa;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(139, 43, 226, 0.08);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1rem 1rem 1.25rem;
}

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

.prose thead tr {
  background: rgba(139, 43, 226, 0.25);
  border-bottom: 2px solid rgba(139, 43, 226, 0.4);
}

.prose th {
  color: #c084fc;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
}

.prose td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(139, 43, 226, 0.15);
  color: #d1d5db;
}

.prose tr:hover td {
  background: rgba(139, 43, 226, 0.06);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 1px solid rgba(139, 43, 226, 0.25);
}

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

.prose em {
  color: #c084fc;
  font-style: italic;
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  color: #00e87a;
}

:root {
  --emerald: #00e87a;
  --violet: #8b2be2;
  --aurora: #c084fc;
  --night: #07071a;
  --night-mid: #0d0d2b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #07071a;
}

.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
