@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 fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.marquee-track {
  display: flex;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.parallax-float {
  animation: parallaxFloat 6s ease-in-out infinite;
}
.shimmer-text {
  background: linear-gradient(90deg, #e2e8f0 0%, #c9a84c 40%, #e2e8f0 60%, #93c5fd 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}
.prose {
  color: #e2e8f0;
  max-width: 100%;
  line-height: 1.75;
  font-size: 1rem;
}
.prose h2 {
  color: #93c5fd;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #1e3a5f;
  padding-bottom: 0.25rem;
}
.prose h3 {
  color: #c9a84c;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}
.prose li {
  margin-bottom: 0.35rem;
}
.prose blockquote {
  border-left: 4px solid #1e40af;
  padding-left: 1rem;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 0;
}
.prose a {
  color: #60a5fa;
  text-decoration: underline;
}
.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 table th {
  background: #1e3a5f;
  color: #e2e8f0;
  padding: 0.6rem 1rem;
  text-align: left;
  border: 1px solid #2d4a7a;
}
.prose table td {
  padding: 0.5rem 1rem;
  border: 1px solid #1e3a5f;
  color: #cbd5e1;
  background: #0d1b2e;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
:root {
  --sapphire: #1e40af;
  --sapphire-light: #3b82f6;
  --platinum: #e2e8f0;
  --gold: #c9a84c;
  --bg-dark: #020817;
  --bg-card: #0d1b2e;
  --bg-card2: #111827;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
}
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
}
.card-glass {
  background: rgba(13,27,46,0.85);
  border: 1px solid rgba(59,130,246,0.18);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
}
.btn-primary {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 24px rgba(59,130,246,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  box-shadow: 0 6px 32px rgba(59,130,246,0.55);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: #e2e8f0;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 9999px;
  border: 2px solid #c9a84c;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover {
  background: #c9a84c;
  color: #020817;
}
.world-map-bg {
  background-image: radial-gradient(ellipse at 60% 50%, rgba(30,64,175,0.18) 0%, transparent 70%), radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid #c9a84c;
  color: #c9a84c;
  font-weight: 800;
  font-size: 0.75rem;
}
