/* AureonPlay – Custom CSS: keyframes, prose, theme */

:root {
  --gold: #f0c040;
  --gold-bright: #ffd700;
  --amber: #ff8c00;
  --obsidian: #0a0a0f;
  --obsidian-mid: #13131f;
  --obsidian-light: #1e1e30;
  --text-primary: #f5f0e0;
  --text-muted: #b0a880;
  --border-gold: rgba(240,192,64,0.3);
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(240,192,64,0.4), 0 0 24px rgba(240,192,64,0.2); }
  50% { box-shadow: 0 0 24px rgba(240,192,64,0.8), 0 0 48px rgba(240,192,64,0.4); }
}

@keyframes float-spark {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-60px) rotate(360deg); opacity: 0; }
}

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

@keyframes spin-reel {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes parallax-drift {
  0%, 100% { background-position: center 0%; }
  50% { background-position: center 8%; }
}

.animate-glow { animation: glow-pulse 2.5s ease-in-out infinite; }
.animate-fade-up { animation: fade-in-up 0.7s ease forwards; }

.marquee-track { display: flex; width: max-content; animation: marquee-scroll 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

.hero-parallax { animation: parallax-drift 12s ease-in-out infinite; }

/* Prose styles for Markdown pages */
.prose {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 0.3rem;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: var(--text-primary);
}
.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover { color: var(--gold-bright); }
.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li {
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 1.2rem 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.prose thead th {
  background: var(--obsidian-light);
  color: var(--gold);
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border-gold);
}
.prose tbody td {
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--border-gold);
  color: var(--text-primary);
  background: var(--obsidian-mid);
}
.prose tbody tr:hover td { background: var(--obsidian-light); }
.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border-gold);
  margin: 1.2rem 0;
}
.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Responsive containers */
* { box-sizing: border-box; }
body { background: var(--obsidian); color: var(--text-primary); font-family: 'Segoe UI', system-ui, sans-serif; }

/* Nav */
.nav-link {
  color: var(--text-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
}
.nav-link:hover { color: var(--gold); background: rgba(240,192,64,0.08); }

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: #0a0a0f;
  font-weight: 700;
  padding: 0.7rem 2rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,192,64,0.5); }

.btn-secondary {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  padding: 0.65rem 1.8rem;
  border-radius: 2rem;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
}
.btn-secondary:hover { background: var(--gold); color: #0a0a0f; }

/* Cards */
.card-dark {
  background: var(--obsidian-mid);
  border: 1px solid var(--border-gold);
  border-radius: 1rem;
  padding: 1.5rem;
}

/* Mobile menu */
#mobile-menu {
  background: #13131f;
  border-top: 1px solid var(--border-gold);
}

/* Section headings */
.section-title {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* Step badges */
.step-badge {
  width: 2.8rem;
  height: 2.8rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #0a0a0f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Word cloud */
.provider-cloud span {
  display: inline-block;
  margin: 0.3rem;
  padding: 0.35rem 0.9rem;
  background: var(--obsidian-light);
  border: 1px solid var(--border-gold);
  border-radius: 2rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}
.provider-cloud span:hover { background: rgba(240,192,64,0.15); }

/* Bonus badge */
.bonus-badge {
  background: linear-gradient(135deg, rgba(240,192,64,0.18) 0%, rgba(255,140,0,0.12) 100%);
  border: 2px solid var(--gold);
  border-radius: 1.2rem;
  padding: 1.5rem 2rem;
  display: inline-block;
  animation: glow-pulse 2.5s ease-in-out infinite;
}

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--border-gold); }
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover { color: var(--gold); }
.faq-answer {
  display: none;
  color: var(--text-muted);
  padding-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.97rem;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-icon { transition: transform 0.25s; }
