@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.animate-marquee {
  animation: marquee 20s linear infinite;
}
.prose {
  color: #d1d5db;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  color: #c9a227;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #c9a22733;
  padding-bottom: 0.5rem;
}
.prose h3 {
  color: #e5c84a;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.prose p {
  margin-bottom: 1.25rem;
  color: #d1d5db;
}
.prose a {
  color: #f59e0b;
  text-decoration: underline;
}
.prose a:hover {
  color: #fbbf24;
}
.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #d1d5db;
}
.prose ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #d1d5db;
}
.prose li {
  margin-bottom: 0.5rem;
}
.prose blockquote {
  border-left: 4px solid #c9a227;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #9ca3af;
  font-style: italic;
  background: #0d1535;
  padding: 1rem 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1.5rem 0;
  border: 2px solid #1e3a6e;
}
.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;
  font-size: 0.875rem;
}
.prose thead tr {
  background-color: #c9a227;
  color: #0b1128;
}
.prose th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
}
.prose td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #1e2d5a;
  color: #d1d5db;
}
.prose tbody tr:hover {
  background-color: #1a2456;
}
.prose strong {
  color: #f3f4f6;
  font-weight: 700;
}
.prose code {
  background: #1a2456;
  color: #fbbf24;
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.875em;
}
* {
  box-sizing: border-box;
}
