@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&family=Orbitron:wght@700;900&display=swap');

:root {
  --emerald: #00e676;
  --gold: #ffd700;
  --dark: #0a0f1a;
  --card: #111827;
  --nav: #0d1117;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --border: #1e293b;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: var(--dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0,230,118,0.4), 0 0 30px rgba(0,230,118,0.2); }
  50% { box-shadow: 0 0 20px rgba(0,230,118,0.8), 0 0 60px rgba(0,230,118,0.4); }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

.font-orbitron { font-family: 'Orbitron', sans-serif; }

.glow-btn {
  animation: glow-pulse 2s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.glow-btn:hover { transform: scale(1.05); }

.float-anim { animation: float 3s ease-in-out infinite; }

.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 0%, #fff8dc 40%, var(--gold) 60%, #ffec6e 100%);
  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;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-wrapper { overflow: hidden; }

.card-dark {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card-dark:hover {
  transform: translateY(-4px);
  border-color: var(--emerald);
}

.badge-step {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), #00b85e);
  color: #0a0f1a;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tag-cloud span {
  display: inline-block;
  padding: 0.35em 0.9em;
  margin: 0.3em;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.3);
  color: var(--emerald);
  transition: background 0.2s;
}
.tag-cloud span:hover { background: rgba(0,230,118,0.25); }

.prose {
  color: var(--text);
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.8;
}
.prose h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--emerald);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
}
.prose h3 {
  color: var(--gold);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.prose p { margin-bottom: 1rem; }
.prose a { color: var(--emerald); text-decoration: underline; }
.prose a:hover { color: var(--gold); }
.prose ul { list-style: disc; padding-left: 1.5em; margin-bottom: 1rem; }
.prose ol { list-style: decimal; padding-left: 1.5em; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote {
  border-left: 3px solid var(--emerald);
  padding-left: 1em;
  color: var(--muted);
  font-style: italic;
  margin: 1.5rem 0;
}
.prose img { max-width: 100%; border-radius: 0.75rem; margin: 1.5rem auto; display: block; }
.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: rgba(0,230,118,0.15); }
.prose th {
  padding: 0.6rem 1rem;
  text-align: left;
  color: var(--emerald);
  font-weight: 700;
  border-bottom: 2px solid var(--border);
}
.prose td {
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.prose tr:hover td { background: rgba(255,255,255,0.03); }

.nav-link {
  position: relative;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--emerald); }
.nav-link:hover::after { width: 100%; }

.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,26,0.92) 0%, rgba(10,15,26,0.75) 50%, rgba(10,15,26,0.9) 100%);
}

.bonus-badge {
  background: linear-gradient(135deg, rgba(0,230,118,0.15), rgba(255,215,0,0.1));
  border: 2px solid var(--gold);
  border-radius: 1.25rem;
  box-shadow: 0 0 30px rgba(255,215,0,0.2);
}

.payment-icon { font-size: 1.6rem; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  cursor: pointer;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--emerald); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1rem; }
.faq-icon { font-size: 1.2rem; color: var(--emerald); }

.disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1.4;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
}

.neon-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), var(--gold), var(--emerald), transparent);
  margin: 0.6rem auto 2.5rem;
  max-width: 20rem;
  border-radius: 999px;
}

@media (max-width: 1023px) {
  #mobile-menu { display: none; }
  #mobile-menu.open { display: flex; flex-direction: column; }
}
