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

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

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

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

@keyframes spookyPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
  }
}

/* Neon text effect */
.neon-text {
  animation: neonGlow 2s ease-in-out infinite alternate;
}

/* Ghost floating effect */
.ghost-float {
  animation: ghostFloat 3s ease-in-out infinite;
}

/* Marquee animation */
.marquee {
  overflow: hidden;
  white-space: nowrap;
}

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

/* Parallax elements */
.parallax-element {
  animation: parallaxMove 10s ease-in-out infinite alternate;
}

/* Spooky pulse for buttons */
.spooky-pulse {
  animation: spookyPulse 2s ease-in-out infinite;
}

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

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #00cc6a;
}

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

.prose h2 {
  color: #00ff88;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

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

/* Custom button styles */
.btn-primary {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00cc6a, #009955);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #00ff88;
  color: #00ff88;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #00ff88;
  color: #000;
}

/* Game card hover effects */
.game-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
  border-color: #00ff88;
}

/* Bonus badge styling */
.bonus-badge {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 2px solid #00ff88;
  position: relative;
  overflow: hidden;
}

.bonus-badge::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ff88, #00cc6a, #00ff88);
  z-index: -1;
  border-radius: inherit;
}

/* Mobile navigation */
.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

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

/* Dark theme overrides */
body {
  background-color: #0a0a0a;
  color: #e5e5e5;
}

/* Trustpilot style rating */
.rating-stars {
  color: #00ff88;
}

/* Calculator form styling */
.calculator-form {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

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

.faq-question:hover {
  color: #00ff88;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}
