/* Prime Neon Custom Animations & Overrides */

/* Keyframe Animations */
@keyframes neon-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.8)) drop-shadow(0 0 16px rgba(255, 0, 128, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 0, 128, 1)) drop-shadow(0 0 24px rgba(255, 0, 128, 0.6));
  }
}

@keyframes cyan-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.9), 0 0 30px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.3);
  }
}

@keyframes spark-burst {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) rotate(180deg);
    opacity: 0;
  }
}

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

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

@keyframes electric-flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  75% {
    opacity: 0.95;
  }
}

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

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

.spark-burst {
  animation: spark-burst 0.6s ease-out forwards;
}

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

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

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

.electric-flicker {
  animation: electric-flicker 3s ease-in-out infinite;
}

/* Chrome Effect */
.chrome-bg {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  position: relative;
}

.chrome-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  pointer-events: none;
}

/* Neon Border Effect */
.neon-border-magenta {
  border: 2px solid #ff0080;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.5), inset 0 0 10px rgba(255, 0, 128, 0.2);
}

.neon-border-cyan {
  border: 2px solid #00ffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), inset 0 0 10px rgba(0, 255, 255, 0.2);
}

/* Electric Spark Decorations */
.spark-decoration {
  position: relative;
}

.spark-decoration::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ffff, 0 0 16px #00ffff;
  top: -2px;
  right: -2px;
}

/* Prose Styling for Readability */
.prose-neon {
  color: #e0e0e0;
  line-height: 1.7;
}

.prose-neon h2 {
  color: #00ffff;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.prose-neon h3 {
  color: #ff0080;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 8px rgba(255, 0, 128, 0.4);
}

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

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

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

.prose-neon strong {
  color: #00ffff;
  font-weight: 600;
}

.prose-neon a {
  color: #ff0080;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.prose-neon a:hover {
  color: #00ffff;
}

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

.prose-neon th {
  background: rgba(255, 0, 128, 0.2);
  color: #00ffff;
  padding: 0.75rem;
  text-align: left;
  border: 1px solid #ff0080;
}

.prose-neon td {
  padding: 0.75rem;
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: #e0e0e0;
}

.prose-neon tr:nth-child(even) {
  background: rgba(0, 255, 255, 0.05);
}

/* Table Responsive Wrapper */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}

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

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff0080 0%, #00ffff 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e91e63 0%, #00e5ff 100%);
}

/* Bonus Badge Glow */
.bonus-badge {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.2) 0%, rgba(0, 255, 255, 0.2) 100%);
  border: 3px solid #ff0080;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.6), 0 0 40px rgba(0, 255, 255, 0.4), inset 0 0 20px rgba(255, 0, 128, 0.2);
}

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

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 0, 128, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
}

/* CTA Button Effects */
.cta-primary {
  background: linear-gradient(135deg, #ff0080 0%, #e91e63 100%);
  box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
  transition: all 0.3s ease;
}

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

.cta-secondary {
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

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

/* Step Badge */
.step-badge {
  background: linear-gradient(135deg, #ff0080 0%, #00ffff 100%);
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
}

/* Provider Cloud Tag */
.provider-tag {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: #00ffff;
  transition: all 0.3s ease;
}

.provider-tag:hover {
  background: rgba(255, 0, 128, 0.1);
  border-color: rgba(255, 0, 128, 0.5);
  color: #ff0080;
}

/* FAQ Accordion */
.faq-item {
  border-left: 3px solid #ff0080;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-left-color: #00ffff;
}

/* Parallax Layer */
.parallax-layer {
  transition: transform 0.1s ease-out;
  will-change: transform;
}
