/* DudeSpin Casino - Custom CSS */

/* Keyframe Animations */
@keyframes heroGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0,180,255,0.3), 0 0 40px rgba(170,255,0,0.1); }
  50% { box-shadow: 0 0 40px rgba(0,180,255,0.6), 0 0 80px rgba(170,255,0,0.3); }
}

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

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

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

@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(170,255,0,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(170,255,0,0); }
}

/* Hero overlay grid */
.hero-grid-overlay {
  background-image:
    linear-gradient(rgba(0,180,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Glow on bonus badge */
.bonus-glow {
  animation: heroGlow 3s ease-in-out infinite;
}

/* Float animation for hero illustration */
.hero-float {
  animation: parallaxFloat 6s ease-in-out infinite;
}

/* Pulse on CTA primary */
.cta-pulse {
  animation: pulseGreen 2.5s ease-in-out infinite;
}

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

.prose-dudespin h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #00b4ff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(0,180,255,0.2);
  padding-bottom: 0.4rem;
}

.prose-dudespin h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #aaff00;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

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

.prose-dudespin a {
  color: #00b4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-dudespin a:hover {
  color: #aaff00;
}

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

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

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

.prose-dudespin blockquote {
  border-left: 4px solid #aaff00;
  padding-left: 1rem;
  color: #8090a8;
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(170,255,0,0.04);
  border-radius: 0 0.5rem 0.5rem 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.prose-dudespin img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1.5rem auto;
  display: block;
  border: 2px solid rgba(0,180,255,0.2);
}

.prose-dudespin table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  max-width: 100%;
}

.prose-dudespin table thead tr {
  background-color: #1e2538;
}

.prose-dudespin table thead th {
  color: #aaff00;
  font-weight: 700;
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 2px solid rgba(170,255,0,0.3);
}

.prose-dudespin table tbody tr {
  border-bottom: 1px solid rgba(30,37,56,0.8);
}

.prose-dudespin table tbody tr:hover {
  background-color: rgba(30,37,56,0.5);
}

.prose-dudespin table tbody td {
  padding: 0.6rem 1rem;
  color: #c0c8d8;
}

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

/* Strong and em */
.prose-dudespin strong {
  color: #ffffff;
  font-weight: 700;
}

.prose-dudespin em {
  color: #aaff00;
  font-style: italic;
}

/* Code */
.prose-dudespin code {
  background: #1e2538;
  color: #00b4ff;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Details/Summary for FAQ */
details summary::-webkit-details-marker {
  display: none;
}

/* Responsive Media */
@media (max-width: 640px) {
  .prose-dudespin h2 {
    font-size: 1.3rem;
  }
  .prose-dudespin h3 {
    font-size: 1.05rem;
  }
}
