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

:root {
  --emerald: #00d896;
  --violet: #8b5cf6;
  --night: #050515;
  --card: #0f0f2d;
  --card2: #13133a;
  --gold: #f59e0b;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --border: rgba(139,92,246,0.3);
}

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

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

@keyframes aurora {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,216,150,0.4), 0 0 40px rgba(139,92,246,0.2); }
  50% { box-shadow: 0 0 40px rgba(0,216,150,0.7), 0 0 80px rgba(139,92,246,0.4); }
}

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

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

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.aurora-bg {
  background: linear-gradient(135deg, #050515 0%, #0a0a2e 30%, #0d1a2e 60%, #050515 100%);
  position: relative;
  overflow: hidden;
}

.aurora-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,216,150,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 60% 80%, rgba(0,216,150,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.glow-emerald { animation: glow-pulse 3s ease-in-out infinite; }

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

.marquee-track:hover { animation-play-state: paused; }

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

.aurora-gradient-text {
  background: linear-gradient(90deg, var(--emerald), var(--violet), var(--emerald));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aurora 4s linear infinite;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--emerald), #00a572);
  color: #050515;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.02em;
  animation: glow-pulse 3s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 30px rgba(0,216,150,0.6);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--emerald);
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid var(--emerald);
  letter-spacing: 0.02em;
}

.btn-secondary:hover {
  background: rgba(0,216,150,0.1);
  transform: translateY(-2px);
}

.card-dark {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(139,92,246,0.2);
}

.badge-bonus {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(0,216,150,0.15));
  border: 2px solid var(--emerald);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  animation: glow-pulse 3s ease-in-out infinite;
}

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

.provider-cloud span {
  display: inline-block;
  margin: 0.3rem;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  background: rgba(139,92,246,0.15);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.provider-cloud span:hover {
  background: rgba(0,216,150,0.15);
  border-color: var(--emerald);
  color: var(--emerald);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.2rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-answer {
  display: none;
  padding-bottom: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

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

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
}

.nav-link:hover { color: var(--emerald); background: rgba(0,216,150,0.08); }

.mobile-menu {
  background: #0a0a2e;
  border-bottom: 1px solid var(--border);
}

/* Prose styles for markdown pages */
.prose { color: var(--text); max-width: 100%; }
.prose h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--emerald);
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
  line-height: 1.3;
}
.prose h3 {
  color: var(--violet);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}
.prose p { margin-bottom: 1.2rem; color: var(--text); }
.prose a { color: var(--emerald); text-decoration: underline; }
.prose a:hover { color: #00ffb3; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.prose li { margin-bottom: 0.5rem; color: var(--text); }
.prose blockquote {
  border-left: 4px solid var(--violet);
  padding-left: 1rem;
  color: var(--muted);
  font-style: italic;
  margin: 1.5rem 0;
}
.prose img { max-width: 100%; border-radius: 1rem; margin: 1.5rem 0; }
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  width: 100%;
}
.prose table th {
  background: rgba(139,92,246,0.2);
  color: var(--emerald);
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--border);
}
.prose table td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  color: var(--text);
}
.prose table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

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

@media (max-width: 768px) {
  .hero-parallax { background-attachment: scroll; }
  .section-title { font-size: 1.4rem; }
  .prose h2 { font-size: 1.3rem; }
}

.game-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 0.75rem 0.75rem 0 0; }

.payment-table th { white-space: nowrap; }

.eighteen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gold);
  color: #050515;
  font-weight: 900;
  font-size: 0.8rem;
  border-radius: 50%;
}
