@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.shimmer-text {
  background: linear-gradient(90deg, #C9A84C 0%, #F0D080 40%, #C9A84C 60%, #A07830 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.gold-border {
  border: 2px solid #C9A84C;
  box-shadow: 0 0 18px rgba(201,168,76,0.35), inset 0 0 8px rgba(201,168,76,0.1);
}
.velvet-card {
  background: linear-gradient(135deg, #0F1640 0%, #0B1135 60%, #13194A 100%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 1px 0 rgba(201,168,76,0.2);
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(6,10,30,0.82) 0%, rgba(11,17,53,0.72) 50%, rgba(6,10,30,0.95) 100%);
}
.prose {
  color: #E8DFC8;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.75;
}
.prose h2 {
  color: #C9A84C;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 0.4rem;
}
.prose h3 {
  color: #F0D080;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1rem;
  color: #E8DFC8;
}
.prose a {
  color: #C9A84C;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover {
  color: #F0D080;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #E8DFC8;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #E8DFC8;
}
.prose li {
  margin-bottom: 0.35rem;
}
.prose blockquote {
  border-left: 4px solid #C9A84C;
  padding-left: 1rem;
  color: #C9A84C;
  font-style: italic;
  margin: 1.25rem 0;
  background: rgba(201,168,76,0.07);
  border-radius: 0 4px 4px 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.25);
  margin: 1.25rem 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.25rem;
}
.prose th {
  background: rgba(201,168,76,0.18);
  color: #F0D080;
  padding: 0.6em 1em;
  text-align: left;
  font-weight: 700;
  border: 1px solid rgba(201,168,76,0.25);
}
.prose td {
  padding: 0.55em 1em;
  border: 1px solid rgba(201,168,76,0.18);
  color: #E8DFC8;
  background: rgba(11,17,53,0.6);
}
.prose tr:nth-child(even) td {
  background: rgba(201,168,76,0.07);
}
.btn-primary {
  background: linear-gradient(135deg, #C9A84C 0%, #F0D080 50%, #A07830 100%);
  color: #060A1E;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.75em 2em;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.6);
}
.btn-secondary {
  border: 2px solid #C9A84C;
  color: #C9A84C;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.7em 1.8em;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  background: transparent;
}
.btn-secondary:hover {
  background: rgba(201,168,76,0.12);
  color: #F0D080;
}
.step-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #F0D080);
  color: #060A1E;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .parallax-bg { background-attachment: scroll; }
}
