/* Neon Corsair Custom Animations & Overrides */

/* Keyframe Animations */
@keyframes neon-pulse {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.8), 0 0 20px rgba(236, 72, 153, 0.6), 0 0 30px rgba(236, 72, 153, 0.4);
  }
  50% {
    text-shadow: 0 0 20px rgba(236, 72, 153, 1), 0 0 30px rgba(236, 72, 153, 0.8), 0 0 40px rgba(236, 72, 153, 0.6);
  }
}

@keyframes glow-border {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.6), 0 0 30px rgba(20, 184, 166, 0.4), inset 0 0 15px
      rgba(20, 184, 166, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.8), 0 0 40px rgba(20, 184, 166, 0.6), inset 0 0 20px
      rgba(20, 184, 166, 0.3);
  }
}

@keyframes float-wave {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  75% {
    transform: translateY(10px) rotate(-1deg);
  }
}

@keyframes spin-chip {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

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

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

@keyframes gold-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Utility Classes */
.neon-text {
  animation: neon-pulse 2s ease-in-out infinite;
}

.glow-box {
  animation: glow-border 3s ease-in-out infinite;
}

.float-element {
  animation: float-wave 4s ease-in-out infinite;
}

.spin-element {
  animation: spin-chip 3s linear infinite;
}

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

.marquee-content {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.parallax-layer {
  animation: parallax-float 6s ease-in-out infinite;
}

.gold-gradient {
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706, #f59e0b, #fbbf24);
  background-size: 200% auto;
  animation: gold-shimmer 3s linear infinite;
}

/* Neon Corsair Color Palette */
.bg-neon-pink {
  background-color: #ec4899;
}

.bg-neon-teal {
  background-color: #14b8a6;
}

.bg-neon-gold {
  background-color: #fbbf24;
}

.text-neon-pink {
  color: #ec4899;
}

.text-neon-teal {
  color: #14b8a6;
}

.text-neon-gold {
  color: #fbbf24;
}

.border-neon-pink {
  border-color: #ec4899;
}

.border-neon-teal {
  border-color: #14b8a6;
}

.border-neon-gold {
  border-color: #fbbf24;
}

/* Neon Glow Effects */
.neon-glow-pink {
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.6), 0 0 40px rgba(236, 72, 153, 0.4);
}

.neon-glow-teal {
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.6), 0 0 40px rgba(20, 184, 166, 0.4);
}

.neon-glow-gold {
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.6), 0 0 40px rgba(251, 191, 36, 0.4);
}

/* Prose Styling for Readability */
.prose-casino {
  line-height: 1.7;
  color: #e5e7eb;
  max-width: 100%;
}

.prose-casino h2 {
  color: #fbbf24;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: 1.3;
  text-shadow: 0 0 0.625rem rgba(251, 191, 36, 0.5);
}

.prose-casino h3 {
  color: #14b8a6;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.4;
}

.prose-casino p {
  margin-bottom: 1.25em;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.7;
}

.prose-casino ul,
.prose-casino ol {
  margin-left: 1.5em;
  margin-bottom: 1.25em;
  padding-left: 0.5em;
}

.prose-casino ul {
  list-style-type: disc;
}

.prose-casino ol {
  list-style-type: decimal;
}

.prose-casino li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.prose-casino li::marker {
  color: #14b8a6;
}

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

.prose-casino em {
  color: #ec4899;
  font-style: italic;
}

.prose-casino a {
  color: #ec4899;
  text-decoration: underline;
  text-decoration-thickness: 0.125em;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease;
}

.prose-casino a:hover {
  color: #14b8a6;
  text-shadow: 0 0 0.5rem rgba(20, 184, 166, 0.5);
}

/* Added blockquote styling */
.prose-casino blockquote {
  border-left: 0.25rem solid #ec4899;
  padding-left: 1.5em;
  margin: 1.5em 0;
  font-style: italic;
  color: #cbd5e1;
  background: rgba(236, 72, 153, 0.05);
  padding-top: 1em;
  padding-bottom: 1em;
  padding-right: 1em;
  border-radius: 0.25rem;
}

.prose-casino blockquote p {
  margin-bottom: 0;
}

/* Enhanced table styling with relative units */
.prose-casino table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.prose-casino th {
  background-color: rgba(20, 184, 166, 0.2);
  color: #fbbf24;
  padding: 0.75em 1em;
  text-align: left;
  border: 1px solid rgba(20, 184, 166, 0.3);
  font-weight: 600;
}

.prose-casino td {
  padding: 0.75em 1em;
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #e5e7eb;
}

.prose-casino tr:nth-child(even) {
  background-color: rgba(15, 23, 42, 0.3);
}

.prose-casino tr:hover {
  background-color: rgba(20, 184, 166, 0.1);
}

/* Added image styling with max-width */
.prose-casino img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5em 0;
  box-shadow: 0 0 1.25rem rgba(20, 184, 166, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prose-casino img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 2rem rgba(236, 72, 153, 0.5);
}

/* Table Responsive Wrapper */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5em 0;
  max-width: 100%;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ec4899, #14b8a6);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #14b8a6, #fbbf24);
}

/* Burger Menu Animation */
.burger-line {
  transition: all 0.3s ease;
}

.burger-open .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-open .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* CTA Button Enhancements */
.cta-primary {
  background: linear-gradient(135deg, #ec4899, #14b8a6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-secondary {
  background: transparent;
  border: 2px solid #fbbf24;
  color: #fbbf24;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: #fbbf24;
  color: #0f172a;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

/* Badge Styling */
.bonus-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: 3px solid #ec4899;
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.6), 0 0 50px rgba(251, 191, 36, 0.4);
  animation: float-wave 3s ease-in-out infinite;
}

/* Step Number Badge */
.step-badge {
  background: linear-gradient(135deg, #ec4899, #14b8a6);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.6);
}

/* Game Card Hover Effect */
.game-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* FAQ Accordion */
.faq-item {
  border-left: 4px solid #14b8a6;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #ec4899;
  background-color: rgba(236, 72, 153, 0.05);
}

/* Promo Card */
.promo-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
  border: 2px solid rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
}

.promo-card:hover {
  border-color: #ec4899;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

/* Payment Icon Styling */
.payment-icon {
  filter: drop-shadow(0 0 5px rgba(20, 184, 166, 0.5));
  transition: filter 0.3s ease;
}

.payment-icon:hover {
  filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.7));
}

/* Provider Cloud */
.provider-tag {
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: #14b8a6;
  transition: all 0.3s ease;
}

.provider-tag:hover {
  background: rgba(236, 72, 153, 0.2);
  border-color: #ec4899;
  color: #ec4899;
}

/* Disclaimer Box */
.disclaimer-box {
  background: rgba(251, 191, 36, 0.1);
  border-left: 4px solid #fbbf24;
  color: #fbbf24;
}

/* Mobile Menu Overlay */
.mobile-menu {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
}

/* Responsive Typography */
@media (max-width: 768px) {
  .prose-casino h2 {
    font-size: 1.5rem;
    margin-top: 1.5em;
  }

  .prose-casino h3 {
    font-size: 1.25rem;
    margin-top: 1.25em;
  }

  .prose-casino p {
    font-size: 1rem;
  }

  .prose-casino ul,
  .prose-casino ol {
    margin-left: 1em;
  }

  .prose-casino table {
    font-size: 0.875rem;
  }

  .prose-casino th,
  .prose-casino td {
    padding: 0.5em 0.75em;
  }
}

@media (max-width: 480px) {
  .prose-casino th,
  .prose-casino td {
    padding: 0.5em;
  }
}
