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

.animate-marquee {
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-wrapper:hover .animate-marquee {
  animation-play-state: paused;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(201,168,76,0.1); }
}

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

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

.prose h2 {
  color: #c9a84c;
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(201,168,76,0.2);
  padding-bottom: 0.5rem;
}

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

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

.prose a {
  color: #c9a84c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.prose ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #d1d5db;
}

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

.prose li {
  margin-bottom: 0.4rem;
}

.prose blockquote {
  border-left: 4px solid #c9a84c;
  padding-left: 1rem;
  color: #9ca3af;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(201,168,76,0.05);
  padding: 1rem 1rem 1rem 1.5rem;
  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 rgba(201,168,76,0.2);
}

.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 {
  background-color: #0d1f3c;
}

.prose th {
  padding: 0.6rem 1rem;
  text-align: left;
  color: #c9a84c;
  font-weight: 700;
  border-bottom: 2px solid rgba(201,168,76,0.3);
}

.prose td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(26,45,80,0.8);
  color: #d1d5db;
}

.prose tr:hover {
  background-color: rgba(13,31,60,0.5);
}

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

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

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