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

.shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(168, 85, 247, 0.4) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite;
}

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

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

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

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

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

/* Pulse Glow */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
  }
}

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

/* Countdown fade */
@keyframes fade-cycle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.fade-cycle {
  animation: fade-cycle 1s ease-in-out infinite;
}

/* Prose Readability */
.prose-casino {
  line-height: 1.75;
  color: #d1d5db;
}

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

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

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

.prose-casino ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose-casino ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

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

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

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

/* Tab active state */
.tab-active {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #ffffff;
}

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

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

/* Gradient border */
.gradient-border {
  position: relative;
  background: #1f2937;
  border-radius: 1rem;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
  z-index: -1;
}

/* Wild West decorative elements */
.western-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* Badge styles */
.badge-hot {
  background: linear-gradient(135deg, #dc2626, #f97316);
}

.badge-jackpot {
  background: linear-gradient(135deg, #eab308, #f59e0b);
}

.badge-popular {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.badge-bonus {
  background: linear-gradient(135deg, #059669, #10b981);
}

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

.star-empty {
  color: #4b5563;
}
