@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 parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.animate-fadeInUp {
  animation: fadeInUp 0.7s ease forwards;
}
.parallax-float {
  animation: parallaxFloat 5s ease-in-out infinite;
}
.shimmer-text {
  background: linear-gradient(90deg, #D4AF37, #fff8dc, #D4AF37, #B8860B);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.prose {
  color: #1a1a2e;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid #D4AF37;
  padding-left: 0.75rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #007FBF;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.prose p {
  margin-bottom: 1.1rem;
}
.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: 4px solid #D4AF37;
  background: #fffbea;
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  color: #4a4a4a;
  font-style: italic;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.prose a {
  color: #007FBF;
  text-decoration: underline;
}
.prose a:hover {
  color: #D4AF37;
}
.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;
  font-size: 0.95rem;
}
.prose thead {
  background: #1a1a2e;
  color: #D4AF37;
}
.prose th {
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 600;
}
.prose td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  color: #1a1a2e;
}
.prose tbody tr:nth-child(even) {
  background: #f9f7f0;
}
.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  color: #1a1a2e;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(212,175,55,0.4);
  text-decoration: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}
.btn-azure {
  background: linear-gradient(135deg, #007FBF, #005f8f);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0,127,191,0.35);
  text-decoration: none;
}
.btn-azure:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,127,191,0.45);
}
.card-game {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: transform 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
  width: 200px;
}
.card-game:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.25);
}
.word-cloud span {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin: 0.3rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: clamp(0.75rem, 1.5vw, 1.1rem);
}
