@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}
.gold-shimmer {
  background: linear-gradient(90deg, #C9A84C 20%, #fffbe6 50%, #C9A84C 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
.float-anim {
  animation: parallaxFloat 5s ease-in-out infinite;
}
.prose {
  color: #e8e0cc;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #C9A84C;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid rgba(201,168,76,0.3);
  padding-bottom: 0.4rem;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #7EC8E3;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.2rem;
  color: #e8e0cc;
}
.prose a {
  color: #C9A84C;
  text-decoration: underline;
}
.prose a:hover {
  color: #7EC8E3;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: #e8e0cc;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: #e8e0cc;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #C9A84C;
  padding-left: 1rem;
  color: #b8a98c;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(201,168,76,0.07);
  border-radius: 0 6px 6px 0;
}
.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 table th {
  background: rgba(201,168,76,0.18);
  color: #C9A84C;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(201,168,76,0.25);
  text-align: left;
}
.prose table td {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  color: #e8e0cc;
  background: rgba(255,255,255,0.03);
}
.prose table tr:nth-child(even) td {
  background: rgba(201,168,76,0.05);
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
  display: block;
}
.burger-menu {
  display: none;
}
@media (max-width: 1023px) {
  .burger-menu {
    display: flex;
  }
  .desktop-nav {
    display: none;
  }
}
.mobile-nav-open .mobile-nav-drawer {
  display: flex !important;
}
.mobile-nav-drawer {
  background: #1a1508 !important;
  opacity: 1 !important;
}
