@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 10px #ffd700, 0 0 20px #ffd70066; }
  50% { box-shadow: 0 0 24px #ffd700, 0 0 48px #ffd700aa; }
}
@keyframes spinBadge {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.parallax-float {
  animation: parallaxFloat 5s ease-in-out infinite;
}
.gold-pulse {
  animation: goldPulse 2.4s ease-in-out infinite;
}
.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.prose {
  color: #f0e6c8;
  max-width: 100%;
  line-height: 1.8;
  font-size: 1rem;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffd700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-left: 4px solid #dc143c;
  padding-left: 0.75rem;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffb347;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #f0e6c8;
}
.prose a {
  color: #ffd700;
  text-decoration: underline;
}
.prose a:hover {
  color: #dc143c;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #f0e6c8;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #f0e6c8;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #ffd700;
  padding-left: 1em;
  color: #d4c17f;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(255,215,0,0.07);
  border-radius: 0 0.5rem 0.5rem 0;
}
.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 th {
  background: #dc143c;
  color: #fff;
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 700;
}
.prose td {
  background: rgba(255,255,255,0.05);
  color: #f0e6c8;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255,215,0,0.15);
}
.prose tr:hover td {
  background: rgba(255,215,0,0.08);
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 2px solid #ffd70033;
}
.nav-mobile-menu {
  background: #0d0d1a;
  border-top: 2px solid #ffd700;
}
.casino-btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #0d0d1a;
  font-weight: 800;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px #ffd70055;
}
.casino-btn-primary:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px #ffd70088;
}
.casino-btn-secondary {
  background: transparent;
  color: #ffd700;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.7rem 1.8rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #ffd700;
  transition: background 0.2s, color 0.2s;
}
.casino-btn-secondary:hover {
  background: #ffd700;
  color: #0d0d1a;
}
.card-dark {
  background: linear-gradient(160deg, #1a1a3e 0%, #0d0d1a 100%);
  border: 1px solid #ffd70033;
  border-radius: 1rem;
}
.badge-gold {
  background: linear-gradient(135deg, #ffd700, #dc143c);
  color: #fff;
  font-weight: 900;
  border-radius: 0.75rem;
  padding: 1.2rem 2rem;
  display: inline-block;
  text-shadow: 0 1px 4px #0006;
}
.step-badge {
  background: linear-gradient(135deg, #dc143c, #8b0000);
  color: #ffd700;
  font-weight: 900;
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #ffd700;
}
.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffd700, #dc143c, #ffd700, transparent);
  margin: 2rem 0;
  border: none;
}
