@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.08); }
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.float-anim {
  animation: parallaxFloat 5s ease-in-out infinite;
}
.shimmer-text {
  background: linear-gradient(90deg, #cd7f32 0%, #f5d98b 40%, #cd7f32 60%, #8b1a1a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.sparkle { animation: sparkle 2s ease-in-out infinite; }
.prose {
  color: #f5f0e8;
  max-width: 100%;
  line-height: 1.8;
  font-size: 1rem;
}
.prose h2 {
  color: #f5d98b;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid #cd7f32;
  padding-bottom: 0.3rem;
}
.prose.prose-first-h2-tight h2:first-of-type {
  margin-top: 0.25rem;
}
.prose h3 {
  color: #e8c96a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #f0e8d8;
}
.prose a {
  color: #cd7f32;
  text-decoration: underline;
}
.prose a:hover {
  color: #f5d98b;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #f0e8d8;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #f0e8d8;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #cd7f32;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #d4c4a0;
  font-style: italic;
  background: rgba(139,26,26,0.12);
  border-radius: 0 0.4rem 0.4rem 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 2px solid #cd7f32;
}
.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.95rem;
}
.prose th {
  background: #8b1a1a;
  color: #f5d98b;
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 700;
}
.prose td {
  border: 1px solid #3d2200;
  padding: 0.55rem 1rem;
  color: #f0e8d8;
  background: rgba(30,10,0,0.55);
}
.prose tr:nth-child(even) td {
  background: rgba(60,20,0,0.45);
}
.card-glow {
  box-shadow: 0 0 18px 2px rgba(205,127,50,0.25), 0 2px 16px rgba(139,26,26,0.3);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card-glow:hover {
  box-shadow: 0 0 32px 6px rgba(205,127,50,0.5), 0 4px 24px rgba(139,26,26,0.5);
  transform: translateY(-4px);
}
.hero-overlay {
  background: linear-gradient(135deg, rgba(10,2,0,0.82) 0%, rgba(80,10,10,0.7) 50%, rgba(10,2,0,0.88) 100%);
}
.btn-primary {
  background: linear-gradient(90deg, #8b1a1a 0%, #cd7f32 50%, #8b1a1a 100%);
  background-size: 200% auto;
  color: #fff8e8;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.8rem 2rem;
  transition: background-position 0.4s, transform 0.2s;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.03em;
}
.btn-primary:hover {
  background-position: right center;
  transform: scale(1.04);
}
.btn-secondary {
  border: 2px solid #cd7f32;
  color: #f5d98b;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.75rem 1.8rem;
  transition: background 0.3s, color 0.3s;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover {
  background: #cd7f32;
  color: #1a0800;
}
.step-badge {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b1a1a, #cd7f32);
  color: #fff8e8;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(205,127,50,0.5);
}
.payment-icon {
  font-size: 1.5rem;
  color: #cd7f32;
}
.word-cloud span {
  display: inline-block;
  margin: 0.3rem 0.4rem;
  color: #f5d98b;
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
  cursor: default;
}
.word-cloud span:hover {
  color: #cd7f32;
  transform: scale(1.12);
}
@media (max-width: 1023px) {
  #mobile-menu { display: none; }
  #mobile-menu.open { display: flex; }
}
