/* Keyframe Animations */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 207, 21, 0.5); }
  50% { box-shadow: 0 0 40px rgba(255, 207, 21, 0.8); }
}

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

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

@keyframes tilt {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
}

@keyframes particle-float {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  50% { opacity: 0.8; }
  100% { transform: translate(100px, -100px) scale(0); opacity: 0; }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

/* Global Styles */
body {
  background: linear-gradient(135deg, #E6D5F5 0%, #661A89 25%, #661A89 50%, #661A89 75%, #661A89 100%);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
  scroll-behavior: smooth;
}

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

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

.cta-button {
  background: #FFCF15;
  color: #000;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  animation: pulse-glow 2s ease-in-out infinite;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(255, 207, 21, 0.6);
}

.highlight-section {
  background: #661A89;
  color: white;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-hover {
  transition: all 0.3s ease;
  cursor: pointer;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.marquee-container {
  overflow: hidden;
  position: relative;
}

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

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

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 207, 21, 0.6);
  border-radius: 50%;
  animation: particle-float 4s ease-in-out infinite;
}

.gradient-text {
  background: linear-gradient(135deg, #FFCF15 0%, #FF8C42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-jackpot {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
}

.badge-rtp {
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  color: white;
}

.badge-bonus {
  background: linear-gradient(135deg, #FF6B6B 0%, #C92A2A 100%);
  color: white;
}

/* Prose Styling */
.prose {
  color: #1f2937;
  max-width: 65ch;
}

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

.prose h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #661A89;
}

.prose p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

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

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

.prose strong {
  font-weight: 600;
  color: #661A89;
}

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

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.prose th {
  background: #661A89;
  color: white;
  padding: 0.75rem;
  text-align: left;
  font-weight: 600;
}

.prose td {
  padding: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

/* Shimmer Effect */
.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Countdown Animation */
.countdown {
  font-size: 2rem;
  font-weight: 700;
  color: #FFCF15;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}
