@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(16,185,129,0.4), 0 0 20px rgba(16,185,129,0.2); }
  50% { box-shadow: 0 0 20px rgba(16,185,129,0.8), 0 0 40px rgba(16,185,129,0.4); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}
.gold-shimmer {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #d97706, #fbbf24, #f59e0b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.glow-emerald {
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.parallax-hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.prose {
  color: #d1fae5;
  max-width: 100%;
  line-height: 1.8;
  font-size: 1rem;
}
.prose h2 {
  color: #fbbf24;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(251,191,36,0.3);
  padding-bottom: 0.4rem;
}
.prose h3 {
  color: #6ee7b7;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #d1fae5;
}
.prose a {
  color: #f59e0b;
  text-decoration: underline;
}
.prose a:hover {
  color: #fbbf24;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #d1fae5;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #d1fae5;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #10b981;
  padding-left: 1em;
  color: #a7f3d0;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(16,185,129,0.08);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.75em 1em;
}
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
}
.prose table thead tr {
  background: rgba(16,185,129,0.25);
}
.prose table th {
  padding: 0.6em 1em;
  text-align: left;
  color: #fbbf24;
  font-weight: 700;
  border-bottom: 2px solid #065f46;
}
.prose table td {
  padding: 0.5em 1em;
  border-bottom: 1px solid rgba(16,185,129,0.2);
  color: #d1fae5;
}
.prose table tbody tr:hover {
  background: rgba(16,185,129,0.1);
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 2px solid rgba(16,185,129,0.3);
}
.nav-mobile-menu {
  background: #071a0f;
}
.card-casino {
  background: linear-gradient(135deg, #0d2318 0%, #0a1a10 100%);
  border: 1px solid rgba(16,185,129,0.25);
  transition: all 0.3s ease;
}
.card-casino:hover {
  border-color: #f59e0b;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.2);
}
.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0d1a12;
  font-weight: 800;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(245,158,11,0.5);
}
.btn-secondary {
  background: transparent;
  color: #10b981;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.7rem 1.8rem;
  border: 2px solid #10b981;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover {
  background: #10b981;
  color: #0d1a12;
}
.step-badge {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0d1a12;
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.word-cloud span {
  display: inline-block;
  margin: 0.3em;
  padding: 0.3em 0.75em;
  border-radius: 9999px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #a7f3d0;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.word-cloud span:hover {
  background: rgba(245,158,11,0.2);
  border-color: #f59e0b;
  color: #fbbf24;
}
