/* Animations & Custom Styles */

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

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 60px rgba(59, 130, 246, 0.5);
  }
}

@keyframes pulse-border {
  0%,
  100% {
    border-color: rgba(249, 115, 22, 0.5);
  }
  50% {
    border-color: rgba(249, 115, 22, 1);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes parallax-slow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50px);
  }
}

/* Hero Section */
.hero-floating {
  animation: float 6s ease-in-out infinite;
}

.hero-pattern {
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #1e40af 100%);
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
  position: relative;
  overflow: hidden;
}

.hero-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.03) 10px,
      rgba(255, 255, 255, 0.03) 20px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.03) 10px,
      rgba(255, 255, 255, 0.03) 20px
    );
  pointer-events: none;
}

/* CTA Buttons */
.btn-cta {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  color: #1e293b;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.4);
}

.btn-cta-large {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  color: #1e293b;
  padding: 1rem 3rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-cta-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.4);
}

.btn-cta-mobile {
  background: white;
  color: #1e293b;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
}

/* Category Buttons */
.category-btn {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

/* Game Cards */
.game-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 1rem;
  padding: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.game-title {
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.game-provider {
  color: #94a3b8;
  font-size: 0.75rem;
}

.game-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-jackpot {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #78350f;
}

.badge-rtp {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: #064e3b;
}

.badge-bonus {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  color: #2e1065;
}

/* Feature Cards */
.feature-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-4px);
}

/* Promo Cards */
.promo-card {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(55, 48, 163, 0.3) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.promo-card:hover {
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-4px);
}

/* Provider Badges */
.provider-badge {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
}

/* Payment Badges */
.payment-badge {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

/* Review Cards */
.review-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

/* FAQ Items */
.faq-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
}

/* VIP Tiers */
.vip-tier {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.vip-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.5);
}

/* Feature Highlight */
.feature-highlight {
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-4px);
}

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

/* Tag Badges */
.tag-badge {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* Prose Styling for Content */
.prose-custom {
  line-height: 1.75;
}

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

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

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

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

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

.prose-custom a {
  color: #60a5fa;
  text-decoration: underline;
}

.prose-custom a:hover {
  color: #93c5fd;
}

.prose-custom strong {
  color: white;
  font-weight: 700;
}

/* Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

/* Parallax Effect for Background */
body {
  background-attachment: fixed;
  background-size: cover;
}
