/* Slotmaster Theme - Comics Superhero Style */

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

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.9);
  }
}

@keyframes slide-in {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes comic-pop {
  0% {
    transform: scale(0.8) rotate(-5deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.05) rotate(2deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes spin-wheel {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes countdown-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

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

/* Comic Book Styles */
.comic-border {
  border: 4px solid #ec4899;
  box-shadow: 0 0 0 8px rgba(88, 28, 135, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(236, 72, 153, 0.2);
}

.comic-text {
  text-shadow: 3px 3px 0 #581c87, -1px -1px 0 #ec4899, 1px -1px 0 #ec4899, -1px 1px 0 #ec4899, 1px 1px 0 #ec4899;
}

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

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

.slide-in {
  animation: slide-in 0.5s ease-out forwards;
}

.fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

.comic-pop {
  animation: comic-pop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Prose Styling */
.prose {
  max-width: 65ch;
  line-height: 1.7;
}

.prose h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #ec4899;
}

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

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

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

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

.prose strong {
  color: #ec4899;
  font-weight: 700;
}

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

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

/* Mobile Menu */
#mobile-menu {
  transition: all 0.3s ease-in-out;
}

/* Gradient Backgrounds */
.hero-gradient {
  background: linear-gradient(135deg, #581c87 0%, #7c3aed 50%, #a855f7 100%);
}

.pink-gradient {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

/* Comic Book Dot Pattern */
.comic-dots {
  background-image: radial-gradient(circle, rgba(236, 72, 153, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Marquee Effect */
.marquee {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
}

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

.card-hover:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .comic-text {
    text-shadow: 2px 2px 0 #581c87, -1px -1px 0 #ec4899;
  }
}

/* Sticky Banner */
.sticky-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .sticky-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }
}

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

/* Table Styles */
.table-wins-losses td.win {
  color: #4ade80;
}

.table-wins-losses td.loss {
  color: #ef4444;
}
