/* BigClash Casino – custom.css */

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

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

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 8px #a3e635, 0 0 24px #a3e635; }
  50%       { box-shadow: 0 0 20px #facc15, 0 0 48px #facc15; }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.hero-img-float {
  animation: parallaxFloat 6s ease-in-out infinite;
}

.cta-neon {
  animation: neonPulse 2.4s ease-in-out infinite;
}

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

.prose h2 {
  color: #a3e635;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #3b0764;
  padding-bottom: 0.25rem;
}

.prose h3 {
  color: #facc15;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

.prose th {
  background: #3b0764;
  color: #a3e635;
  padding: 0.6em 0.9em;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.prose td {
  padding: 0.55em 0.9em;
  border-bottom: 1px solid #4c1d95;
  color: #e2e8f0;
  white-space: nowrap;
}

.prose tr:nth-child(even) td {
  background: rgba(59,7,100,0.35);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.25rem 0;
}

/* Scrollable table wrapper utility */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
}

.table-scroll table {
  min-width: 36rem;
}
