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

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

/* Pulse glow for CTAs */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(234, 179, 8, 0.7);
  }
}

/* Fade in animation */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Countdown fade */
@keyframes countdown-fade {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* Shimmer effect class */
.shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite;
}

/* Float effect class */
.float {
  animation: float 3s ease-in-out infinite;
}

/* Pulse glow class */
.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Fade in class */
.fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

/* Countdown animation */
.countdown-pulse {
  animation: countdown-fade 1s ease-in-out infinite;
}

/* Prose readability */
.prose-readable {
  font-size: 1.0625rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

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

.prose-readable h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prose-readable h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

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

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

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

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

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

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

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

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

.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(234, 179, 8, 0.15);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #eab308 0%, #f59e0b 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass effect */
.glass {
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Tab active state */
.tab-active {
  background: linear-gradient(135deg, #eab308, #f59e0b);
  color: #000;
}

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

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

/* Badge styles */
.badge-jackpot { background: linear-gradient(135deg, #dc2626, #ef4444); }
.badge-rtp { background: linear-gradient(135deg, #16a34a, #22c55e); }
.badge-bonus { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.badge-popular { background: linear-gradient(135deg, #0891b2, #06b6d4); }

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

/* Table styles */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Star rating */
.star-filled { color: #eab308; }
.star-empty { color: #374151; }
