/* MamzinoBet Aurora Luxe Custom CSS */

:root {
  --emerald: #10b981;
  --emerald-dark: #059669;
  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --night: #06061a;
  --night-mid: #0d0d2b;
  --night-card: #111132;
  --text-light: #e8e8ff;
  --text-muted: #9999cc;
  --gold: #f59e0b;
}

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

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(16,185,129,0.4), 0 0 40px rgba(124,58,237,0.2); }
  50% { box-shadow: 0 0 40px rgba(16,185,129,0.7), 0 0 80px rgba(124,58,237,0.4); }
}

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

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(245,158,11,0.5); }
  50% { box-shadow: 0 0 35px rgba(245,158,11,0.9); }
}

.aurora-bg {
  background: linear-gradient(135deg, #06061a 0%, #0d0d2b 30%, #0a1a12 60%, #0d0d2b 100%);
  background-size: 300% 300%;
  animation: aurora-shift 12s ease infinite;
}

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

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

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

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

.badge-animate {
  animation: badge-glow 2s ease-in-out infinite;
}

/* Prose styles for Markdown content */
.prose {
  color: var(--text-light);
  max-width: 100%;
  line-height: 1.8;
  font-size: 1rem;
}

.prose h2 {
  color: var(--emerald);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(16,185,129,0.3);
}

.prose h3 {
  color: var(--violet-light);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.2rem;
  color: #d1d1f0;
}

.prose a {
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--emerald-dark);
}

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

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

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

.prose blockquote {
  border-left: 4px solid var(--emerald);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
  background: rgba(16,185,129,0.05);
  border-radius: 0 8px 8px 0;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid rgba(16,185,129,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;
  width: 100%;
}

.prose thead {
  background: rgba(124,58,237,0.3);
}

.prose th {
  color: var(--emerald);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(16,185,129,0.3);
}

.prose td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #d1d1f0;
}

.prose tr:hover td {
  background: rgba(16,185,129,0.05);
}

.prose strong {
  color: #f0f0ff;
  font-weight: 600;
}

.prose code {
  background: rgba(124,58,237,0.2);
  color: var(--violet-light);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Utility overrides */
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Nav */
.nav-link {
  color: #c4c4e8;
  transition: color 0.2s;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--emerald);
}

/* CTA Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16,185,129,0.5);
  color: #fff;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--violet) 0%, #5b21b6 100%);
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.5);
  color: #fff;
}

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.875rem;
}

/* Cards */
.game-card {
  background: var(--night-card);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16,185,129,0.5);
}

.promo-card {
  background: linear-gradient(135deg, rgba(17,17,50,0.95) 0%, rgba(13,13,43,0.95) 100%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
}

.promo-card:hover {
  border-color: rgba(124,58,237,0.6);
  transform: translateY(-4px);
}

.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: 800;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #f0f0ff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-item {
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 12px;
  background: var(--night-card);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: #e8e8ff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  color: #b0b0d8;
  line-height: 1.7;
}

.mobile-menu {
  background: #0d0d2b;
  border-top: 1px solid rgba(16,185,129,0.2);
}

/* Word cloud */
.word-cloud span {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  margin: 0.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(16,185,129,0.25);
  color: #c4c4e8;
  background: rgba(16,185,129,0.07);
  transition: background 0.2s, color 0.2s;
}

.word-cloud span:hover {
  background: rgba(16,185,129,0.18);
  color: var(--emerald);
}
