@keyframes aurora {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.aurora-bg {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d2b1a 40%, #0a0f1e 60%, #1a1200 100%);
  background-size: 400% 400%;
  animation: aurora 12s ease infinite;
}
.gold-shimmer {
  background: linear-gradient(90deg, #d97706, #fbbf24, #d97706, #fbbf24);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.nav-glass {
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}
.card-glow {
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card-glow:hover {
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.35);
  transform: translateY(-4px);
}
.btn-primary {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  display: inline-block;
  text-align: center;
  transition: filter 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.03em;
}
.btn-primary:hover {
  filter: brightness(1.12);
  transform: scale(1.03);
}
.btn-secondary {
  background: transparent;
  color: #fbbf24;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: 2px solid #fbbf24;
  display: inline-block;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover {
  background: #fbbf24;
  color: #0a0f1e;
}
.bonus-badge {
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(251,191,36,0.1));
  border: 1px solid rgba(251,191,36,0.4);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #059669, #fbbf24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  color: #0a0f1e;
  flex-shrink: 0;
}
.prose {
  color: #d1fae5;
  max-width: 100%;
  line-height: 1.8;
}
.prose h2 {
  color: #fbbf24;
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(16,185,129,0.3);
  padding-bottom: 0.4rem;
}
.prose h3 {
  color: #6ee7b7;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}
.prose p {
  margin-bottom: 1.2rem;
  color: #d1fae5;
}
.prose a {
  color: #34d399;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover {
  color: #fbbf24;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: #d1fae5;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: #d1fae5;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #10b981;
  padding-left: 1rem;
  color: #6ee7b7;
  font-style: italic;
  margin: 1.5rem 0;
}
.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 thead {
  background: rgba(16,185,129,0.2);
}
.prose th {
  color: #fbbf24;
  font-weight: 700;
  padding: 0.6rem 1rem;
  text-align: left;
  border: 1px solid rgba(16,185,129,0.3);
}
.prose td {
  color: #d1fae5;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(16,185,129,0.2);
}
.prose tr:nth-child(even) {
  background: rgba(16,185,129,0.05);
}
.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
}
.mobile-menu {
  background: #0a0f1e;
  border-top: 1px solid rgba(16,185,129,0.25);
}
.provider-tag {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: #6ee7b7;
  border-radius: 9999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin: 0.25rem;
  transition: background 0.2s;
}
.provider-tag:hover {
  background: rgba(16,185,129,0.28);
}
.faq-item {
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-question {
  background: rgba(16,185,129,0.08);
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: #fbbf24;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  padding: 1rem 1.25rem;
  color: #d1fae5;
  line-height: 1.7;
  background: rgba(10,15,30,0.6);
}
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
