/* CrazyWinnings Custom CSS */

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px #f5c518, 0 0 20px #7c3aed; }
  50% { box-shadow: 0 0 25px #f5c518, 0 0 50px #7c3aed, 0 0 70px #f5c518; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes spark-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.animate-marquee {
  display: flex;
  animation: marquee 28s linear infinite;
}

.glow-gold {
  animation: glow-pulse 2.5s ease-in-out infinite;
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease both;
}

.parallax-hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

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

.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f5c518;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #7c3aed;
  padding-bottom: 0.4rem;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #c4b5fd;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.prose a {
  color: #f5c518;
  text-decoration: underline;
}

.prose a:hover {
  color: #ffd700;
}

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

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

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

.prose blockquote {
  border-left: 4px solid #7c3aed;
  padding-left: 1em;
  color: #a78bfa;
  font-style: italic;
  margin: 1.5rem 0;
}

.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 2px solid #7c3aed;
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  width: 100%;
}

.prose thead {
  background: #1a0f4a;
}

.prose th {
  padding: 0.75rem 1rem;
  color: #f5c518;
  font-weight: 700;
  border: 1px solid #3730a3;
  text-align: left;
}

.prose td {
  padding: 0.65rem 1rem;
  color: #cbd5e1;
  border: 1px solid #3730a3;
}

.prose tr:nth-child(even) {
  background: rgba(124, 58, 237, 0.1);
}

/* Mobile menu */
#mobile-menu {
  background: #0d0b2a;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d0b2a; }
::-webkit-scrollbar-thumb { background: #7c3aed; border-radius: 3px; }
