/* PulsarSpins Custom CSS - Stahl Nova Theme */

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px #00b4ff, 0 0 20px #00b4ff44; }
  50% { box-shadow: 0 0 20px #00b4ff, 0 0 50px #00b4ff88; }
}

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

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

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

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

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

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

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

.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00b4ff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #1e3a5f;
  padding-bottom: 0.4rem;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #7dd3fc;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.prose a {
  color: #00b4ff;
  text-decoration: underline;
}

.prose a:hover {
  color: #38bdf8;
}

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

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

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

.prose blockquote {
  border-left: 4px solid #00b4ff;
  padding-left: 1rem;
  color: #94a3b8;
  font-style: italic;
  margin: 1.5rem 0;
  background: #1e293b;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.75rem 1rem;
}

.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;
  font-size: 0.95rem;
}

.prose table th {
  background: #1e3a5f;
  color: #00b4ff;
  padding: 0.6rem 1rem;
  text-align: left;
  border: 1px solid #334155;
}

.prose table td {
  padding: 0.5rem 1rem;
  border: 1px solid #334155;
  color: #cbd5e1;
  background: #1e293b;
}

.prose table tr:nth-child(even) td {
  background: #0f172a;
}

.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* Nav */
.nav-link {
  color: #cbd5e1;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.4rem 0.75rem;
  border-radius: 0.375rem;
}

.nav-link:hover {
  color: #00b4ff;
  background: #1e293b;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  display: inline-block;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #00b4ff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  display: inline-block;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid #00b4ff;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #00b4ff;
  color: #0f172a;
}

.card-metallic {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid #334155;
  border-radius: 1rem;
  box-shadow: 0 4px 24px #00000066;
}

.badge-bonus {
  background: linear-gradient(135deg, #1e3a5f, #0f2744);
  border: 2px solid #00b4ff;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  text-align: center;
  animation: pulse-glow 3s ease-in-out infinite;
}

#mobile-menu {
  background: #0f172a;
  border-top: 2px solid #00b4ff;
}
