/* Custom animations and overrides */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
  }
}

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

@keyframes tilt {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  75% {
    transform: rotate(-1deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom utility classes */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

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

.animate-marquee {
  animation: marquee 20s linear infinite;
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Pink neon glow effects */
.neon-pink {
  text-shadow: 0 0 10px #ec4899, 0 0 20px #ec4899, 0 0 30px #ec4899;
}

.neon-border {
  border: 2px solid #ec4899;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.pink-shadow {
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

/* Prose styling for readability */
.prose {
  color: #e5e7eb;
  line-height: 1.7;
}

.prose h2 {
  color: #ec4899;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h3 {
  color: #f9a8d4;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose ul {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}

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

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111827;
}

::-webkit-scrollbar-thumb {
  background: #ec4899;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #db2777;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.9);
}

/* Game card hover effects */
.game-card {
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.3);
}

/* Bonus calculator styling */
.calculator-island {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(236, 72, 153, 0.3);
  backdrop-filter: blur(10px);
}

/* Payment method icons */
.payment-icon {
  filter: brightness(0.8) contrast(1.2);
  transition: filter 0.3s ease;
}

.payment-icon:hover {
  filter: brightness(1) contrast(1.3);
}

/* Trustpilot stars */
.star-rating {
  color: #fbbf24;
  text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

.faq-question {
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ec4899;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .mobile-stack {
    flex-direction: column;
  }

  .mobile-full {
    width: 100%;
  }
}

/* Dark theme overrides */
body {
  background-color: #000000;
  color: #e5e7eb;
}

/* Button styles */
.btn-primary {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #ec4899;
  color: #ec4899;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #ec4899;
  color: white;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}
