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

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

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

@keyframes bounce-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

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

/* Custom Utilities */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

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

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
  background-size: 1000px 100%;
  animation: shimmer 3s infinite;
}

.animate-bounce-in {
  animation: bounce-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.animate-tilt {
  animation: tilt 4s ease-in-out infinite;
}

/* Jungle Pattern Background */
.jungle-pattern {
  background-color: #0a1628;
  background-image: radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
}

/* Glass Effect */
.glass-effect {
  background: rgba(15, 30, 60, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card Hover Effects */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
}

/* Prose Styling */
.prose {
  color: #e0e7ff;
  line-height: 1.7;
}

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

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

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

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

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

.prose a {
  color: #ffc107;
  text-decoration: underline;
  transition: color 0.2s;
}

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

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

/* Slot Grid */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

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

.badge-jackpot {
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: white;
}

.badge-rtp {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: white;
}

.badge-bonus {
  background: linear-gradient(135deg, #ffc107, #ffeb3b);
  color: #0a1628;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(135deg, #0a1628 0%, #1a2642 100%);
  z-index: 9999;
  display: none;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  position: relative;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #ffc107;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.2s ease;
}

.mobile-menu-close:hover {
  transform: scale(1.1);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mobile-menu-link {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: #ffc107;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* CTA Buttons */
.cta-primary {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #0a1628;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.cta-secondary {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  color: white;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.6);
}

/* Sticky Banner */
.sticky-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 2rem);
  max-width: 600px;
}

@media (min-width: 768px) {
  .sticky-banner {
    bottom: 30px;
  }
}

/* Wheel of Luck */
.wheel-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid #ffc107;
  position: relative;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-pointer {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid #ff9800;
}

/* Provider Cloud */
.provider-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.provider-badge {
  padding: 0.5rem 1.5rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 50px;
  color: #ffc107;
  font-weight: 600;
  transition: all 0.3s ease;
}

.provider-badge:hover {
  background: rgba(255, 193, 7, 0.2);
  transform: scale(1.05);
}

/* Table Styles */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(15, 30, 60, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.custom-table th {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

.custom-table td {
  padding: 1rem;
  border-top: 1px solid rgba(255, 193, 7, 0.1);
  color: #e0e7ff;
}

.custom-table tr:hover {
  background: rgba(255, 193, 7, 0.05);
}
