/* BetWestCasino – custom keyframes & prose */
:root {
  --bw-navy: #06111f;
  --bw-sapphire: #0d2657;
  --bw-gold: #d4af37;
  --bw-gold-light: #f0d060;
  --bw-aurora-teal: #0acfb4;
  --bw-aurora-purple: #7b39ed;
  --bw-text: #e8eaf6;
  --bw-muted: #93a3b8;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-wrap {
  overflow: hidden;
  width: 100%;
}
@keyframes aurora-pulse {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50%       { opacity: 0.32; transform: scale(1.06); }
}
.aurora-blob {
  animation: aurora-pulse 7s ease-in-out infinite;
}
@keyframes glow-badge {
  0%, 100% { box-shadow: 0 0 18px 4px rgba(212,175,55,.55); }
  50%       { box-shadow: 0 0 36px 10px rgba(212,175,55,.85); }
}
.glow-badge { animation: glow-badge 2.8s ease-in-out infinite; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.spin-slow { animation: spin-slow 18s linear infinite; }

/* Prose */
.prose { color: #d8e2f0; line-height: 1.8; font-size: 1rem; }
.prose h2 {
  color: #d4af37;
  font-size: 1.55rem;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding-bottom: 0.3rem;
}
.prose h3 {
  color: #f0d060;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}
.prose p { margin-bottom: 1.1rem; }
.prose a { color: #d4af37; text-decoration: underline; }
.prose a:hover { color: #f0d060; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote {
  border-left: 3px solid #d4af37;
  padding: 0.5rem 1rem;
  color: #b0c0d8;
  background: rgba(13,38,87,0.45);
  border-radius: 0 0.4rem 0.4rem 0;
  margin: 1.2rem 0;
}
.prose img { max-width: 100%; border-radius: 0.5rem; margin: 1.2rem auto; display: block; }
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  width: 100%;
}
.prose table th {
  background: rgba(212,175,55,0.18);
  color: #f0d060;
  padding: 0.6rem 1rem;
  text-align: left;
  border: 1px solid rgba(212,175,55,0.22);
}
.prose table td {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  color: #d0dcef;
}
.prose table tr:nth-child(even) td { background: rgba(13,38,87,0.35); }

/* Utility */
.text-gold { color: #d4af37; }
.bg-navy   { background-color: #06111f; }
.border-gold { border-color: #d4af37; }

/* Mobile menu */
#mobile-menu { background-color: #06111f; }
