/* OhaCasino – custom keyframes + prose */
:root {
  --aqua: #00e5ff;
  --violet: #7c3aed;
  --dark-bg: #07071a;
  --card-bg: #0f0f2d;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 8px var(--aqua), 0 0 20px var(--aqua); }
  50% { box-shadow: 0 0 18px var(--violet), 0 0 40px var(--violet); }
}

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

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

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

body {
  background-color: var(--dark-bg);
  color: var(--text-main);
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.glow-btn {
  animation: glow-pulse 2.5s ease-in-out infinite;
}

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

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

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

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

.neon-border {
  border: 1px solid rgba(0,229,255,0.35);
  box-shadow: inset 0 0 12px rgba(0,229,255,0.08);
}

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

/* Prose styles */
.prose { color: var(--text-main); max-width: 100%; line-height: 1.8; }
.prose h2 { color: var(--aqua); font-size: 1.6rem; font-weight: 700; margin: 1rem 0 1rem; border-bottom: 1px solid rgba(0,229,255,0.2); padding-bottom: 0.4rem; }
.prose h3 { color: #c4b5fd; font-size: 1.2rem; font-weight: 600; margin: 1.5rem 0 0.75rem; }
.prose p { margin-bottom: 1.2rem; color: var(--text-main); }
.prose a { color: var(--aqua); text-decoration: underline; }
.prose a:hover { color: var(--violet); }
.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.4rem; color: var(--text-main); }
.prose blockquote { border-left: 3px solid var(--violet); padding-left: 1rem; color: var(--text-muted); font-style: italic; margin: 1.5rem 0; }
.prose img { max-width: 100%; height: auto; border-radius: 0.75rem; 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; }
.prose th { background: rgba(124,58,237,0.3); color: #e2e8f0; padding: 0.6rem 1rem; text-align: left; border: 1px solid rgba(0,229,255,0.2); }
.prose td { padding: 0.6rem 1rem; border: 1px solid rgba(0,229,255,0.15); color: var(--text-main); }
.prose tr:nth-child(even) td { background: rgba(15,15,45,0.6); }

.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.card-bg { background-color: var(--card-bg); }

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

.provider-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(124,58,237,0.25);
  border: 1px solid rgba(124,58,237,0.4);
  color: #c4b5fd;
  font-size: 0.85rem;
  margin: 0.25rem;
  transition: all 0.2s;
}
.provider-tag:hover { background: rgba(0,229,255,0.2); color: var(--aqua); border-color: var(--aqua); }
