:root {
  --neon: #00ff88;
  --cobalt: #1a6bff;
  --cobalt-dark: #0033cc;
  --bg-dark: #060914;
  --bg-card: #0d1528;
  --bg-card2: #111d38;
  --text-light: #e8eaf6;
  --text-muted: #8a9bbf;
  --border-glow: rgba(0,255,136,0.25);
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 8px var(--neon), 0 0 20px rgba(0,255,136,0.3); }
  50% { box-shadow: 0 0 16px var(--neon), 0 0 40px rgba(0,255,136,0.5); }
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { text-shadow: 0 0 8px var(--neon), 0 0 20px var(--neon); }
  20%, 24%, 55% { text-shadow: none; }
}

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

.glow-btn {
  animation: glowPulse 2.5s ease-in-out infinite;
}

.grid-bg {
  background-image: linear-gradient(rgba(26,107,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(26,107,255,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 8s linear infinite;
}

.neon-text {
  color: var(--neon);
  text-shadow: 0 0 8px var(--neon), 0 0 20px rgba(0,255,136,0.4);
}

.cobalt-text {
  color: #60a5fa;
}

.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,9,20,0.88) 0%, rgba(13,21,40,0.80) 60%, rgba(26,107,255,0.18) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.card-dark {
  background: var(--bg-card);
  border: 1px solid rgba(26,107,255,0.22);
  border-radius: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card-dark:hover {
  border-color: var(--neon);
  box-shadow: 0 0 18px rgba(0,255,136,0.18);
}

.bonus-badge {
  background: linear-gradient(135deg, #0d1528 0%, #111d38 100%);
  border: 2px solid var(--neon);
  box-shadow: 0 0 24px rgba(0,255,136,0.3), inset 0 0 24px rgba(0,255,136,0.05);
  border-radius: 1.25rem;
}

.step-badge {
  background: linear-gradient(135deg, var(--cobalt) 0%, #00ccff 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(26,107,255,0.5);
}

.nav-dark {
  background: rgba(6,9,20,0.97);
  border-bottom: 1px solid rgba(26,107,255,0.2);
  backdrop-filter: blur(12px);
}

.mobile-menu-bg {
  background: #060914;
  border-top: 1px solid rgba(26,107,255,0.25);
}

.provider-tag {
  background: var(--bg-card2);
  border: 1px solid rgba(26,107,255,0.3);
  color: var(--text-light);
  padding: 0.4em 1em;
  border-radius: 2em;
  font-size: 0.9rem;
  display: inline-block;
  margin: 0.25em;
  transition: border-color 0.2s, color 0.2s;
}

.provider-tag:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.prose {
  color: var(--text-light);
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.8;
}

.prose h2 {
  color: var(--neon);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(0,255,136,0.3);
  border-left: 4px solid var(--cobalt);
  padding-left: 0.75rem;
}

.prose h3 {
  color: #60a5fa;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

.prose a {
  color: var(--neon);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: #60a5fa;
}

.prose ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
}

.prose ul li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.prose ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--neon);
}

.prose ol {
  padding-left: 1.5em;
  margin-bottom: 1.2rem;
  counter-reset: item;
  list-style: none;
}

.prose ol li {
  counter-increment: item;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  position: relative;
  padding-left: 0.5em;
}

.prose ol li::before {
  content: counter(item) '.';
  color: var(--cobalt);
  font-weight: 700;
  margin-right: 0.4em;
}

.prose blockquote {
  border-left: 4px solid var(--cobalt);
  padding: 0.75em 1.25em;
  background: var(--bg-card2);
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5rem 0;
  color: #cbd5e1;
  font-style: italic;
}

.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 1px solid rgba(26,107,255,0.3);
}

.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 tr {
  background: linear-gradient(90deg, var(--cobalt-dark) 0%, #0d1528 100%);
}

.prose th {
  color: var(--neon);
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--cobalt);
}

.prose td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(26,107,255,0.18);
  color: var(--text-light);
}

.prose tbody tr:hover {
  background: rgba(26,107,255,0.08);
}

.faq-item {
  border: 1px solid rgba(26,107,255,0.22);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
}

.faq-question {
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e8eaf6;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--neon);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--neon);
}

.faq-icon {
  transition: transform 0.25s, color 0.25s;
  color: #60a5fa;
  font-size: 1.2rem;
}

.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
