@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes emberFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(-40px) scale(1.4); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes parallaxDrift {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.ember {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFD700;
  animation: emberFloat 3s ease-in-out infinite;
  pointer-events: none;
}
.gold-shimmer {
  background: linear-gradient(90deg, #FFD700, #FFF8DC, #B8860B, #FFD700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
.hero-float {
  animation: parallaxDrift 6s ease-in-out infinite;
}
.prose {
  color: #f0e6d3;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFD700;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
  border-left: 4px solid #8B0000;
  padding-left: 0.75rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFC857;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}
.prose p {
  margin-bottom: 1.2rem;
}
.prose a {
  color: #FFD700;
  text-decoration: underline;
}
.prose a:hover {
  color: #FFC857;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.prose li {
  margin-bottom: 0.4rem;
  color: #f0e6d3;
}
.prose blockquote {
  border-left: 4px solid #FFD700;
  padding-left: 1rem;
  color: #d4b483;
  font-style: italic;
  margin: 1.5rem 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem auto;
  display: block;
}
.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 th {
  background: #8B0000;
  color: #FFD700;
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 700;
  border: 1px solid #5a0000;
}
.prose td {
  padding: 0.6rem 1rem;
  border: 1px solid #3a1a1a;
  color: #f0e6d3;
  background: #1a0a0a;
}
.prose tr:nth-child(even) td {
  background: #140505;
}
.nav-link {
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}
.cta-primary {
  background: linear-gradient(135deg, #8B0000, #B22222);
  border: 2px solid #FFD700;
  color: #FFD700;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.cta-primary:hover {
  background: linear-gradient(135deg, #FFD700, #B8860B);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.35);
}
.cta-secondary {
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.cta-secondary:hover {
  background: #FFD700;
  color: #0d0d0d;
}
.card-dark {
  background: linear-gradient(145deg, #1a0505, #2a0d0d);
  border: 1px solid #5a1a1a;
  border-radius: 1rem;
}
.badge-gold {
  background: linear-gradient(135deg, #FFD700, #B8860B);
  color: #0d0d0d;
  font-weight: 800;
  border-radius: 0.5rem;
}
