@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,107,53,0.4); }
  50% { box-shadow: 0 0 40px rgba(255,107,53,0.9); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 32s linear infinite;
  width: max-content;
}
.float-anim {
  animation: floatUp 4s ease-in-out infinite;
}
.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.gradient-shift {
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}
.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}
.prose {
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFD700;
  margin-top: 2em;
  margin-bottom: 0.6em;
  line-height: 1.3;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FF6B35;
  margin-top: 1.5em;
  margin-bottom: 0.4em;
}
.prose p {
  margin-bottom: 1.2em;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
.prose li {
  margin-bottom: 0.4em;
}
.prose blockquote {
  border-left: 4px solid #FF6B35;
  padding-left: 1em;
  color: #ccc;
  font-style: italic;
  margin: 1.5em 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5em 0;
}
.prose a {
  color: #FFD700;
  text-decoration: underline;
}
.prose a:hover {
  color: #FF6B35;
}
.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.5em;
}
.prose th {
  background: #7B2FBE;
  color: #fff;
  padding: 0.6em 1em;
  text-align: left;
  font-weight: 700;
}
.prose td {
  padding: 0.5em 1em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #f0f0f0;
  background: rgba(255,255,255,0.04);
}
.prose tr:hover td {
  background: rgba(255,107,53,0.1);
}
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
}
.mobile-menu-bg {
  background: #1A1A2E;
}
