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

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.8);
  }
}

@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);
  }
}

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

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

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

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

/* Custom comic-style elements */
.comic-bubble {
  position: relative;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: 3px solid #1f2937;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.comic-bubble::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #7c3aed;
}

.comic-border {
  border: 4px solid #1f2937;
  box-shadow: 0 0 0 2px #fbbf24, 0 8px 25px rgba(0, 0, 0, 0.3);
}

.game-card {
  transition: all 0.3s ease;
  border: 3px solid #374151;
  background: linear-gradient(135deg, #1f2937, #374151);
}

.game-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #7c3aed;
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.3);
}

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

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

.prose h3 {
  color: #a855f7;
  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: #fbbf24;
  font-weight: 600;
}

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

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

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

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

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

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

/* Bonus badge styling */
.bonus-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: 4px solid #1f2937;
  box-shadow: 0 0 0 2px #fbbf24, 0 10px 30px rgba(251, 191, 36, 0.4);
  transform: rotate(-2deg);
}

/* Trustpilot style rating */
.trustpilot-stars {
  color: #00b67a;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Payment method icons */
.payment-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
}

.payment-icon:hover {
  transform: scale(1.1);
}

/* FAQ accordion */
.faq-item {
  border: 2px solid #374151;
  background: linear-gradient(135deg, #1f2937, #374151);
}

.faq-item.active {
  border-color: #7c3aed;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

/* Responsive utilities */
@media (max-width: 768px) {
  .comic-bubble::before {
    left: 20px;
  }

  .bonus-badge {
    transform: rotate(-1deg);
  }
}
