@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.marquee-track {
  display: flex;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.fade-in-up { animation: fadeInUp 0.7s ease both; }
.gold-shimmer {
  background: linear-gradient(90deg, #d4af37 0%, #fffde7 40%, #d4af37 60%, #b8962e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.parallax-hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.prose {
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  color: #d4af37;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #d4af3740;
  padding-bottom: 0.4rem;
}
.prose h3 {
  color: #fde68a;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #e2e8f0;
}
.prose a {
  color: #d4af37;
  text-decoration: underline;
}
.prose a:hover { color: #fde68a; }
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #e2e8f0;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #e2e8f0;
}
.prose li { margin-bottom: 0.4rem; }
.prose blockquote {
  border-left: 4px solid #d4af37;
  padding-left: 1rem;
  color: #fde68a;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(212,175,55,0.08);
  border-radius: 0 6px 6px 0;
}
.prose img {
  max-width: 100%;
  border-radius: 10px;
  margin: 1.5rem 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.5rem;
  font-size: 0.95rem;
}
.prose thead tr { background: #d4af37; color: #0a1628; }
.prose th, .prose td {
  border: 1px solid #1a2d4f;
  padding: 0.55rem 0.9rem;
  text-align: left;
}
.prose tbody tr:nth-child(even) { background: rgba(26,45,79,0.6); }
.prose tbody tr:nth-child(odd) { background: rgba(10,22,40,0.7); }
.prose tbody td { color: #e2e8f0; }
.nav-gold { color: #d4af37; }
.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
  color: #0a1628;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.75rem 1.75rem;
  display: inline-block;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: linear-gradient(135deg, #fde68a 0%, #d4af37 100%); transform: translateY(-1px); }
.btn-secondary {
  border: 2px solid #d4af37;
  color: #d4af37;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.7rem 1.6rem;
  display: inline-block;
  transition: all 0.2s;
  text-decoration: none;
  background: transparent;
}
.btn-secondary:hover { background: #d4af3720; transform: translateY(-1px); }
.card-navy {
  background: linear-gradient(145deg, #111f3a 0%, #1a2d4f 100%);
  border: 1px solid #d4af3730;
  border-radius: 14px;
}
.game-card {
  background: linear-gradient(160deg, #1a2d4f 0%, #0a1628 100%);
  border: 1px solid #d4af3740;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(212,175,55,0.18); }
.gold-border { border: 1px solid #d4af37; }
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 auto;
  width: 60%;
}
