/* Winderland Casino - Custom Styles */
/* Animation 1: Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Animation 2: Float Effect */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Shimmer utility */
.shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(167, 243, 100, 0.15) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* Float utility */
.float {
  animation: float 4s ease-in-out infinite;
}

.float-delay-1 {
  animation: float 4s ease-in-out 0.5s infinite;
}

.float-delay-2 {
  animation: float 4s ease-in-out 1s infinite;
}

/* Glow effects */
.glow-green {
  box-shadow: 0 0 20px rgba(167, 243, 100, 0.4),
              0 0 40px rgba(167, 243, 100, 0.2);
}

.glow-purple {
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4),
              0 0 40px rgba(168, 85, 247, 0.2);
}

.glow-yellow {
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.4),
              0 0 40px rgba(250, 204, 21, 0.2);
}

/* Pulse glow animation */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(167, 243, 100, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(167, 243, 100, 0.6),
                0 0 50px rgba(167, 243, 100, 0.3);
  }
}

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

/* Prose readability */
.prose-casino {
  font-size: 1rem;
  line-height: 1.75;
  color: #d1d5db;
}

.prose-casino h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.prose-casino h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #f3f4f6;
}

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

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

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

.prose-casino a {
  color: #a7f364;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose-casino a:hover {
  color: #facc15;
}

/* Card hover effects */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Gradient backgrounds */
.bg-gradient-wonderland {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%);
}

.bg-gradient-card {
  background: linear-gradient(145deg, #1f1f2e 0%, #151520 100%);
}

/* Tab active states */
.tab-active {
  background: linear-gradient(135deg, #a7f364 0%, #22c55e 100%);
  color: #000000;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}

/* Badge styles */
.badge-jackpot {
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
  color: #000;
}

.badge-rtp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
}

.badge-bonus {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  color: #fff;
}

.badge-popular {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  color: #fff;
}

/* Mobile menu transition */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu.open {
  max-height: 400px;
}

/* Focus states for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid #a7f364;
  outline-offset: 2px;
}

/* Star rating */
.star-filled {
  color: #facc15;
}

.star-empty {
  color: #374151;
}
