@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes gooseFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.parallax-float {
  animation: parallaxFloat 5s ease-in-out infinite;
}
.goose-float {
  animation: gooseFloat 6s ease-in-out infinite;
}
.shimmer-gold {
  background: linear-gradient(90deg, #D4AF37 25%, #FFE066 50%, #D4AF37 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.prose-casino h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #1E3A8A;
  padding-bottom: 0.4rem;
}
.prose-casino h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #F5F0E8;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose-casino p {
  color: #E8E4D8;
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}
.prose-casino a {
  color: #FFD700;
  text-decoration: underline;
}
.prose-casino a:hover {
  color: #FFE066;
}
.prose-casino ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #E8E4D8;
}
.prose-casino ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #E8E4D8;
}
.prose-casino li {
  margin-bottom: 0.4rem;
  line-height: 1.75;
}
.prose-casino blockquote {
  border-left: 4px solid #D4AF37;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #C8C2B0;
  font-style: italic;
}
.prose-casino table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #E8E4D8;
}
.prose-casino table th {
  background: #1E3A8A;
  color: #FFD700;
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 600;
}
.prose-casino table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #1E3A8A;
  background: rgba(15,45,107,0.5);
}
.prose-casino table tr:hover td {
  background: rgba(30,58,138,0.6);
}
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
img, table, video, iframe {
  max-width: 100%;
  height: auto;
}
.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #0F2D6B;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.45);
}
.btn-outline-gold {
  border: 2px solid #D4AF37;
  color: #D4AF37;
  font-weight: 700;
  padding: 0.7rem 1.8rem;
  border-radius: 9999px;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
  background: transparent;
}
.btn-outline-gold:hover {
  background: #D4AF37;
  color: #0F2D6B;
}
