:root {
  --navy-950: #050b1f;
  --navy-900: #0a1433;
  --navy-800: #0f1e4a;
  --navy-700: #162460;
  --icy-blue: #7dd3fc;
  --icy-blue-light: #bae6fd;
  --gold: #fbbf24;
  --gold-light: #fde68a;
  --aurora-green: #34d399;
  --aurora-purple: #a78bfa;
}

@keyframes aurora-drift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(251,191,36,0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.aurora-bg {
  background: linear-gradient(135deg, rgba(52,211,153,0.05) 0%, rgba(167,139,250,0.05) 33%, rgba(125,211,252,0.08) 66%, rgba(52,211,153,0.05) 100%);
  background-size: 400% 400%;
  animation: aurora-drift 12s ease infinite;
}

.cta-pulse {
  animation: cta-pulse 2.5s ease-in-out infinite;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.prose {
  color: rgba(125, 211, 252, 0.85);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}

.prose h2 {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  border-bottom: 2px solid rgba(251,191,36,0.2);
  padding-bottom: 0.4rem;
}

.prose h3 {
  color: var(--icy-blue-light);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.prose p {
  margin-bottom: 1.25rem;
  color: rgba(125, 211, 252, 0.82);
}

.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.prose a:hover {
  color: var(--gold-light);
}

.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.25rem;
  color: rgba(125, 211, 252, 0.82);
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1.25rem;
  color: rgba(125, 211, 252, 0.82);
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose blockquote {
  border-left: 4px solid var(--gold);
  margin-left: 0;
  padding: 0.75em 1.25em;
  background: rgba(251,191,36,0.07);
  border-radius: 0 0.5rem 0.5rem 0;
  color: rgba(253,230,138,0.9);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(125,211,252,0.15);
}

.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.9rem;
}

.prose thead tr {
  background: rgba(15,30,74,0.9);
}

.prose th {
  color: var(--gold);
  text-align: left;
  padding: 0.6em 1em;
  font-weight: 700;
  border-bottom: 2px solid rgba(251,191,36,0.3);
}

.prose td {
  padding: 0.55em 1em;
  border-bottom: 1px solid rgba(22,36,96,0.8);
  color: rgba(125,211,252,0.82);
}

.prose tbody tr:hover {
  background: rgba(15,30,74,0.5);
}

.prose strong {
  color: var(--icy-blue-light);
  font-weight: 700;
}

.prose em {
  color: rgba(253,230,138,0.85);
}

.prose code {
  background: rgba(22,36,96,0.7);
  color: var(--aurora-green);
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.88em;
}

.game-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(251,191,36,0.15);
}
