@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 shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}
.animate-fade-in-up {
  animation: fadeInUp 0.7s ease both;
}
.gold-shimmer {
  background: linear-gradient(90deg, #c9a84c 25%, #f0c040 50%, #c9a84c 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
.pulse-gold {
  animation: pulse-gold 2s infinite;
}
.prose {
  color: #e8e8e8;
  max-width: 100%;
  line-height: 1.8;
  font-size: 1rem;
}
.prose h2 {
  color: #f0c040;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  border-bottom: 2px solid #c9a84c33;
  padding-bottom: 0.4rem;
}
.prose h3 {
  color: #c9a84c;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}
.prose p {
  margin-bottom: 1.25rem;
  color: #d0d0e0;
}
.prose a {
  color: #f0c040;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover {
  color: #c9a84c;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.25rem;
  color: #d0d0e0;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1.25rem;
  color: #d0d0e0;
}
.prose li {
  margin-bottom: 0.5rem;
}
.prose blockquote {
  border-left: 4px solid #c9a84c;
  padding-left: 1rem;
  color: #b0b0c8;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(201,168,76,0.07);
  border-radius: 0 0.5rem 0.5rem 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  border: 1px solid #c9a84c44;
}
.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: #1a1a2e;
}
.prose th {
  color: #f0c040;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid #c9a84c55;
}
.prose td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #2a2a4a;
  color: #d0d0e0;
}
.prose tr:nth-child(even) td {
  background: rgba(255,255,255,0.03);
}
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
