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

:root {
  --cyan: #00e5ff;
  --violet: #8b5cf6;
  --dark-bg: #07071a;
  --card-bg: #0f0f2a;
  --border-glow: rgba(0,229,255,0.3);
}

* { box-sizing: border-box; }

body {
  background-color: var(--dark-bg);
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 8px var(--cyan), 0 0 20px var(--cyan); }
  50% { box-shadow: 0 0 16px var(--cyan), 0 0 40px var(--cyan), 0 0 60px var(--violet); }
}

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

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

@keyframes trailGlow {
  0% { opacity: 0.3; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1.05); }
  100% { opacity: 0.3; transform: scaleX(0.8); }
}

.neon-pulse { animation: neonPulse 2.5s ease-in-out infinite; }
.float-up { animation: floatUp 3s ease-in-out infinite; }

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

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

.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:
    radial-gradient(ellipse 120% 90% at 50% 35%, rgba(7, 7, 26, 0.25) 0%, rgba(7, 7, 26, 0.78) 55%, rgba(7, 7, 26, 0.92) 100%),
    linear-gradient(135deg, rgba(7, 7, 26, 0.88) 0%, rgba(15, 15, 42, 0.82) 45%, rgba(7, 7, 26, 0.9) 100%);
  pointer-events: none;
}

/* Readable copy island over hero photo */
.hero-banner-inner {
  background: rgba(7, 7, 26, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 229, 255, 0.22);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-headline .hero-gradient-title {
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.95));
}

.hero-headline .hero-subtitle {
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.95),
    0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-bonus-line {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.85));
}

.neon-card--hero {
  background: rgba(15, 15, 42, 0.92);
  border-color: rgba(0, 229, 255, 0.35);
}

.neon-card {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 0.75rem;
  transition: border-color 0.3s, transform 0.3s;
}

.neon-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.btn-primary {
  background: linear-gradient(90deg, #00e5ff, #8b5cf6);
  color: #07071a;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.btn-primary:hover { opacity: 0.9; transform: scale(1.03); }

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.7rem 1.8rem;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.btn-secondary:hover {
  background: var(--cyan);
  color: #07071a;
}

.gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  border-radius: 2px;
  margin: 0.5rem auto 1.5rem;
}

/* Prose styles */
.prose {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}

.prose h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #00e5ff;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  border-left: 4px solid #8b5cf6;
  padding-left: 0.75rem;
}

.prose h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #a78bfa;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose p {
  margin-bottom: 1.25rem;
  color: #cbd5e1;
}

.prose a {
  color: #00e5ff;
  text-decoration: underline;
  transition: color 0.2s;
}

.prose a:hover { color: #8b5cf6; }

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #cbd5e1;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #cbd5e1;
}

.prose li { margin-bottom: 0.4rem; }

.prose blockquote {
  border-left: 4px solid #00e5ff;
  padding-left: 1rem;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(0,229,255,0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.75rem 1rem;
}

.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(0,229,255,0.2);
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.prose table th {
  background: rgba(139,92,246,0.3);
  color: #e2e8f0;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0,229,255,0.2);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.prose table td {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0,229,255,0.1);
  color: #cbd5e1;
  background: rgba(15,15,42,0.7);
}

.prose table tr:hover td { background: rgba(0,229,255,0.05); }

.light-trail {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: trailGlow 3s ease-in-out infinite;
  pointer-events: none;
}

.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #07071a;
  flex-shrink: 0;
}

.provider-tag {
  display: inline-block;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.4);
  color: #c4b5fd;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  margin: 0.25rem;
  transition: background 0.2s;
}

.provider-tag:hover {
  background: rgba(0,229,255,0.15);
  border-color: var(--cyan);
  color: var(--cyan);
}

.nav-bg {
  background: rgba(7,7,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,229,255,0.15);
}

.mobile-menu-bg {
  background: #07071a;
  border-top: 1px solid rgba(0,229,255,0.2);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  transition: color 0.2s;
}

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

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: #94a3b8;
  line-height: 1.7;
  display: none;
}

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

.overflow-x-auto { overflow-x: auto; }
