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

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

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

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
  }
}

/* Parallax animations */
.parallax-float {
  animation: parallax-float 6s ease-in-out infinite;
}

.parallax-slow {
  animation: parallax-float 8s ease-in-out infinite reverse;
}

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

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

/* Simpsons-inspired cartoon styling */
.cartoon-border {
  border: 3px solid #000;
  border-radius: 15px;
  box-shadow: 4px 4px 0px #000;
}

.cartoon-button {
  border: 3px solid #000;
  border-radius: 25px;
  box-shadow: 4px 4px 0px #000;
  transition: all 0.2s ease;
  font-weight: bold;
  text-transform: uppercase;
}

.cartoon-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000;
}

.cartoon-button:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px #000;
}

/* Bonus badge styling */
.bonus-badge {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  border: 4px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0px #000;
  animation: bounce-gentle 3s ease-in-out infinite;
}

/* Game card styling */
.game-card {
  border: 3px solid #000;
  border-radius: 15px;
  box-shadow: 4px 4px 0px #000;
  transition: all 0.3s ease;
  overflow: hidden;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 6px 10px 0px #000;
}

/* Trustpilot styling */
.trustpilot-card {
  background: #00b67a;
  border: 3px solid #000;
  border-radius: 15px;
  box-shadow: 4px 4px 0px #000;
}

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

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

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

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

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

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

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

/* Sticky navigation */
.sticky-nav {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid #000;
}

/* Calculator styling */
.calculator-island {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border: 3px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0px #000;
}

/* Feature strip animation */
.feature-strip {
  animation: pulse-glow 4s ease-in-out infinite;
}

/* Payment method icons */
.payment-icon {
  width: 60px;
  height: 40px;
  border: 2px solid #000;
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .cartoon-button {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }

  .bonus-badge {
    font-size: 1.25rem;
  }
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #2563eb;
}
