/* Custom animations and prose styling */

/* Parallax animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Marquee animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

/* Glass morphism utilities */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(13, 3, 35, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(173, 255, 1, 0.2);
}

/* Glow effects */
.glow-cta {
  box-shadow: 0 0 20px rgba(173, 255, 1, 0.5);
}

.glow-cta:hover {
  box-shadow: 0 0 30px rgba(173, 255, 1, 0.8);
}

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

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

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

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

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

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

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

.prose a {
  color: #adff01;
  text-decoration: underline;
}

.prose a:hover {
  color: #c5ff33;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.prose th {
  background: rgba(173, 255, 1, 0.2);
  color: #adff01;
  padding: 0.75rem;
  text-align: left;
  border: 1px solid rgba(173, 255, 1, 0.3);
}

.prose td {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

::-webkit-scrollbar-track {
  background: #0d0323;
}

::-webkit-scrollbar-thumb {
  background: #adff01;
  border-radius: 5px;
}

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

/* Bonus calculator styling */
.calculator-result {
  background: linear-gradient(135deg, rgba(173, 255, 1, 0.2), rgba(173, 255, 1, 0.05));
  border-left: 4px solid #adff01;
}

/* Trustpilot star styling */
.star-filled {
  color: #00b67a;
}

/* Payment method icons */
.payment-icon {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all 0.3s ease;
}

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

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

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(173, 255, 1, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover::before {
  opacity: 1;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(173, 255, 1, 0.3);
}

/* Wonderland themed decorative elements */
.wonderland-pattern {
  background-image: radial-gradient(circle at 20% 50%, rgba(173, 255, 1, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
}

/* Carousel styling */
.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

/* Island bottom menu */
.bottom-island {
  background: rgba(13, 3, 35, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(173, 255, 1, 0.3);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive utilities */
@media (max-width: 1024px) {
  .prose h2 {
    font-size: 1.75rem;
  }

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