/* Custom animations and overrides */
@keyframes neonGlow {
  0%,
  100% {
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 15px #00ffff, 0 0 20px #00ffff;
  }
  50% {
    text-shadow: 0 0 2px #00ffff, 0 0 5px #00ffff, 0 0 8px #00ffff, 0 0 12px #00ffff;
  }
}

@keyframes spiderSilk {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

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

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

/* Neon Web Theme Styles */
.neon-glow {
  animation: neonGlow 2s ease-in-out infinite alternate;
}

.spider-silk {
  animation: spiderSilk 4s ease-in-out infinite;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marqueeScroll 20s linear infinite;
}

.parallax-element {
  animation: parallaxFloat 6s ease-in-out infinite;
}

/* Neon gradient backgrounds */
.neon-gradient {
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 50%, #8b5cf6 100%);
}

.neon-gradient-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 30%, #0f172a 70%, #1a1a1a 100%);
}

.metallic-black {
  background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
  border: 1px solid #333;
}

/* Custom button styles */
.neon-button {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.3s ease;
}

.neon-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.neon-button::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  border-radius: inherit;
  z-index: -1;
}

/* Prose styling for readability */
.prose {
  max-width: 100%;
  color: #e2e8f0;
  line-height: 1.7;
}

.prose h2 {
  color: #00ffff;
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
  padding-bottom: 0.5rem;
}

.prose h3 {
  color: #8b5cf6;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

.prose p {
  margin-bottom: 1.25rem;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.prose ul,
.prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: #cbd5e1;
  position: relative;
}

.prose ul li::marker {
  color: #00ffff;
}

.prose ol li::marker {
  color: #8b5cf6;
  font-weight: 600;
}

.prose table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.5rem;
  overflow-x: auto;
  display: block;
  white-space: nowrap;
}

.prose table thead {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
}

.prose table th {
  padding: 0.75rem 1rem;
  color: white;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.prose table td {
  padding: 0.75rem 1rem;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.prose table tbody tr:hover {
  background: rgba(139, 92, 246, 0.1);
}

.prose blockquote {
  border-left: 4px solid #00ffff;
  padding-left: 1rem;
  margin: 1.5rem 0;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: #94a3b8;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

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

.prose em {
  color: #8b5cf6;
}

.prose code {
  background: rgba(139, 92, 246, 0.2);
  color: #00ffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

/* Responsive prose adjustments */
@media (max-width: 768px) {
  .prose {
    font-size: 1rem;
  }

  .prose h2 {
    font-size: 1.5rem;
  }

  .prose h3 {
    font-size: 1.25rem;
  }

  .prose table {
    font-size: 0.875rem;
  }
}

/* Game card hover effects */
.game-card {
  transition: all 0.3s ease;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.game-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
  border-color: #00ffff;
}

/* Payment method table styling */
.payment-table {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.payment-table th {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  color: white;
}

.payment-table td {
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  color: #cbd5e1;
}

/* Bonus badge styling */
.bonus-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: 3px solid #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  animation: spiderSilk 3s ease-in-out infinite;
}

/* FAQ accordion styling */
.faq-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00ffff;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.1);
}

/* Mobile navigation */
.mobile-nav {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
  overflow: auto;
}

body {
  overflow: auto;
}

/* Responsive utilities */
@media (max-width: 1024px) {
  .desktop-only {
    display: none;
  }
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
}
