/* Wildhub Casino - Custom Styles */
/* Animations: Shimmer + Float */

/* Shimmer Animation */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(251, 146, 60, 0.3) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite linear;
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    #f97316 0%,
    #fbbf24 25%,
    #f97316 50%,
    #fbbf24 75%,
    #f97316 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite linear;
}

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

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

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

.float-slow {
  animation: float-slow 4s ease-in-out infinite;
}

.float-delay-1 {
  animation-delay: 0.5s;
}

.float-delay-2 {
  animation-delay: 1s;
}

.float-delay-3 {
  animation-delay: 1.5s;
}

/* Glow Effects */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.7), 0 0 60px rgba(249, 115, 22, 0.3);
  }
}

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

@keyframes border-glow {
  0%, 100% {
    border-color: rgba(249, 115, 22, 0.5);
  }
  50% {
    border-color: rgba(249, 115, 22, 1);
  }
}

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

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

.prose-wild h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prose-wild h3 {
  color: #f97316;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

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

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

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

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

.prose-wild a:hover {
  color: #fb923c;
}

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

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

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

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

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

/* Tab Active State */
.tab-active {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.tab-inactive {
  background: #27272a;
  color: #a1a1aa;
}

/* 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(249, 115, 22, 0.2);
}

/* Gradient Backgrounds */
.gradient-wild {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
}

.gradient-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.gradient-card {
  background: linear-gradient(145deg, #27272a 0%, #18181b 100%);
}

/* Quiz Styles */
.quiz-option {
  transition: all 0.2s ease;
}

.quiz-option:hover {
  border-color: #f97316;
  background: rgba(249, 115, 22, 0.1);
}

.quiz-option.selected {
  border-color: #f97316;
  background: rgba(249, 115, 22, 0.2);
}

/* Mobile Menu Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-open {
  animation: slideDown 0.3s ease forwards;
}

/* Badge Styles */
.badge-jackpot {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
}

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

.badge-bonus {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
}

.badge-popular {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
}

/* Star Rating */
.star-filled {
  color: #fbbf24;
}

.star-empty {
  color: #3f3f46;
}

/* Focus States for Accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

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

/* Hide scrollbar for horizontal scroll containers */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
