:root {
  --cyan: #00e5ff;
  --magenta: #ff00cc;
  --dark-bg: #0b0b18;
  --card-bg: #13132a;
  --card-border: #1e1e3f;
  --text-primary: #f0f0ff;
  --text-muted: #a0a0c0;
  --glow-cyan: 0 0 16px #00e5ff88;
  --glow-magenta: 0 0 16px #ff00cc88;
}

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

@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 8px var(--cyan), 0 0 24px var(--cyan); }
  50% { box-shadow: 0 0 16px var(--magenta), 0 0 40px var(--magenta); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spark {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(0.8); }
}

.marquee-track { display: flex; gap: 2rem; animation: marquee 28s linear infinite; }
.neon-btn { animation: neon-pulse 2.4s ease-in-out infinite; }
.float-anim { animation: float 3s ease-in-out infinite; }

.prose {
  color: var(--text-primary);
  max-width: 100%;
  line-height: 1.75;
  font-size: 1rem;
}
.prose h2 {
  color: var(--cyan);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 0.4rem;
}
.prose h3 {
  color: var(--magenta);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.prose a {
  color: var(--cyan);
  text-decoration: underline;
}
.prose a:hover {
  color: var(--magenta);
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid var(--cyan);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
  background: var(--card-bg);
  border-radius: 0 0.5rem 0.5rem 0;
}
.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  border: 1px solid var(--card-border);
}
.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 thead tr {
  background: var(--card-border);
}
.prose th {
  padding: 0.6rem 1rem;
  color: var(--cyan);
  text-align: left;
  font-weight: 700;
}
.prose td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-primary);
}
.prose tbody tr:hover {
  background: rgba(0,229,255,0.05);
}

.cw-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.cw-card:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}

.badge-bonus {
  background: linear-gradient(135deg, #0b0b18 0%, #1a1a3e 100%);
  border: 2px solid var(--cyan);
  border-radius: 1.25rem;
  box-shadow: var(--glow-cyan);
}

.btn-primary {
  background: linear-gradient(90deg, var(--cyan) 0%, #0099cc 100%);
  color: #0b0b18;
  font-weight: 800;
  border-radius: 0.6rem;
  padding: 0.8rem 2rem;
  display: inline-block;
  transition: filter 0.2s, transform 0.2s;
  text-align: center;
}
.btn-primary:hover {
  filter: brightness(1.15);
  transform: scale(1.04);
}

.btn-secondary {
  background: transparent;
  color: var(--magenta);
  font-weight: 700;
  border: 2px solid var(--magenta);
  border-radius: 0.6rem;
  padding: 0.75rem 1.75rem;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.btn-secondary:hover {
  background: var(--magenta);
  color: #0b0b18;
}

.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #0b0b18;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.provider-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--cyan);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
  margin: 0.25rem;
}
.provider-tag:hover {
  background: var(--cyan);
  color: #0b0b18;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--cyan);
  font-weight: 600;
  padding: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.6rem;
  margin-bottom: 0.25rem;
  transition: background 0.2s;
}
.faq-item summary:hover {
  background: var(--card-border);
}
.faq-item[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}
.faq-answer {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: none;
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  padding: 1rem;
  color: var(--text-primary);
}

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

@media (max-width: 640px) {
  .prose h2 { font-size: 1.3rem; }
  .prose h3 { font-size: 1.1rem; }
}
