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

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

@keyframes pulse-border {
  0%,
  100% {
    border-color: rgba(251, 191, 36, 0.5);
  }
  50% {
    border-color: rgba(251, 191, 36, 1);
  }
}

@keyframes neon-flicker {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8), 0 0 20px rgba(251, 191, 36, 0.6), 0 0 30px rgba(251, 191, 36, 0.4);
  }
  50% {
    text-shadow: 0 0 15px rgba(251, 191, 36, 1), 0 0 30px rgba(251, 191, 36, 0.8), 0 0 45px rgba(251, 191, 36, 0.6);
  }
}

@keyframes parallax {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

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

/* Utility Classes */
.floating {
  animation: float 3s ease-in-out infinite;
}

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

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

.neon-text {
  animation: neon-flicker 1.5s ease-in-out infinite;
}

/* Custom Components */
.loot-box-card {
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.8) 0%, rgba(67, 20, 94, 0.9) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(251, 191, 36, 0.2);
}

.game-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.feature-card {
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.5) 0%, rgba(67, 20, 94, 0.7) 100%);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(251, 191, 36, 0.5);
  transform: translateY(-3px);
}

.category-btn {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.3) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(251, 191, 36, 0.4);
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-btn:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.4) 0%, rgba(245, 158, 11, 0.5) 100%);
  border-color: rgba(251, 191, 36, 0.8);
  transform: scale(1.05);
}

.promo-card {
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.6) 0%, rgba(67, 20, 94, 0.8) 100%);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(251, 191, 36, 0.3);
}

.provider-tag {
  display: inline-block;
  background: rgba(88, 28, 135, 0.6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
  font-size: 0.875rem;
  font-weight: 600;
}

.review-card {
  background: rgba(88, 28, 135, 0.4);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.faq-item {
  background: rgba(88, 28, 135, 0.4);
  border-radius: 0.75rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
  overflow: hidden;
}

.faq-item summary {
  background: rgba(88, 28, 135, 0.6);
  transition: background 0.3s ease;
}

.faq-item summary:hover {
  background: rgba(88, 28, 135, 0.8);
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.vip-card {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.vip-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 191, 36, 0.5);
}

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

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

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

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

.prose-custom h4 {
  color: #fbbf24;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

.prose-custom code {
  background: rgba(88, 28, 135, 0.6);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.prose-custom blockquote {
  border-left: 4px solid #fbbf24;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #d1d5db;
}

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

.prose-custom th,
.prose-custom td {
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 0.75rem;
  text-align: left;
}

.prose-custom th {
  background: rgba(88, 28, 135, 0.6);
  color: #fbbf24;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .neon-text {
    font-size: 2rem;
  }
}

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

/* Selection */
::selection {
  background: rgba(251, 191, 36, 0.3);
  color: white;
}
