@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.marquee-track {
  will-change: transform;
}

/* Prose Styling */
.prose-custom {
  color: #e5e7eb;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}

.prose-custom h2 {
  color: #F59E0B;
  font-size: 1.75rem;
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #991B1B;
}

.prose-custom h3 {
  color: #fcd34d;
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose-custom p {
  margin-bottom: 1.25rem;
  color: #d1d5db;
}

.prose-custom a {
  color: #F59E0B;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.prose-custom a:hover {
  color: #fcd34d;
}

.prose-custom ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-bottom: 1.25rem;
  color: #d1d5db;
}

.prose-custom ol {
  list-style-type: decimal;
  padding-left: 1.5em;
  margin-bottom: 1.25rem;
  color: #d1d5db;
}

.prose-custom li {
  margin-bottom: 0.5rem;
}

.prose-custom blockquote {
  border-left: 4px solid #DC2626;
  padding-left: 1.25em;
  margin: 1.5em 0;
  color: #9ca3af;
  font-style: italic;
  background: #2D0A0A;
  border-radius: 0 0.5rem 0.5rem 0;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}

.prose-custom table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}

.prose-custom th {
  background-color: #DC2626;
  color: #fff;
  padding: 0.65em 1em;
  text-align: left;
  font-weight: 700;
}

.prose-custom td {
  border: 1px solid #3f1515;
  padding: 0.6em 1em;
  color: #d1d5db;
}

.prose-custom tr:nth-child(even) {
  background-color: #2D0A0A;
}

.prose-custom img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1.5rem 0;
  border: 2px solid #991B1B;
}

.prose-custom strong {
  color: #fcd34d;
  font-weight: 700;
}

.prose-custom code {
  background: #2D0A0A;
  color: #F59E0B;
  padding: 0.15em 0.4em;
  border-radius: 0.3em;
  font-size: 0.875em;
}

details summary::-webkit-details-marker {
  display: none;
}

@media (max-width: 640px) {
  .hero-parallax {
    background-attachment: scroll;
  }
}
