@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes parallax-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
.hero-shimmer {
  background: linear-gradient(120deg, transparent 20%, rgba(251,191,36,0.08) 50%, transparent 80%);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}
.marquee-track {
  display: flex;
  animation: marquee 24s linear infinite;
}
.float-anim {
  animation: parallax-float 6s ease-in-out infinite;
}
.prose {
  color: #fef3c7;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
}
.prose h2 {
  color: #fbbf24;
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #92400e;
  padding-bottom: 0.4rem;
}
.prose h3 {
  color: #fcd34d;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose p {
  margin-bottom: 1.2rem;
  color: #fef3c7;
}
.prose a {
  color: #fbbf24;
  text-decoration: underline;
  font-weight: 600;
}
.prose a:hover {
  color: #fde68a;
}
.prose ul {
  list-style: disc;
  padding-left: 1.8em;
  margin-bottom: 1.2rem;
  color: #fef3c7;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.8em;
  margin-bottom: 1.2rem;
  color: #fef3c7;
}
.prose li {
  margin-bottom: 0.5rem;
  color: #fef3c7;
}
.prose blockquote {
  border-left: 4px solid #fbbf24;
  padding-left: 1.2em;
  color: #fde68a;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(120,53,15,0.4);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.8em 1.2em;
}
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  width: 100%;
}
.prose thead {
  background: #92400e;
  color: #fef3c7;
}
.prose th {
  padding: 0.6rem 1rem;
  font-weight: 700;
  text-align: left;
  color: #fef3c7;
  border: 1px solid #b45309;
}
.prose td {
  padding: 0.5rem 1rem;
  border: 1px solid #78350f;
  color: #fef3c7;
  background: rgba(120,53,15,0.3);
}
.prose tr:nth-child(even) td {
  background: rgba(157,23,77,0.15);
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
details summary::-webkit-details-marker {
  color: #fbbf24;
}
details[open] summary {
  color: #fbbf24;
}
* { box-sizing: border-box; }
