/* ==========================================================================
   PSP Ventures Redesigned Animations (Lovable Recreation)
   ========================================================================== */

/* Ambient Glowing Background Elements */
.glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.14;
  mix-blend-mode: screen;
  pointer-events: none;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(140, 255, 0, 0.2) 0%, rgba(0, 217, 255, 0.05) 60%, transparent 100%);
  top: -10%;
  right: -5%;
  filter: blur(130px);
  animation: float-glow-1 25s infinite alternate ease-in-out;
  display: block; /* Large ambient light source behind hologram and top right */
}

.glow-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.18) 0%, rgba(140, 255, 0, 0.03) 60%, transparent 100%);
  bottom: -10%;
  left: -10%;
  filter: blur(140px);
  animation: float-glow-2 30s infinite alternate ease-in-out;
}

.glow-3 {
  width: 450px;
  height: 450px;
  background: var(--secondary-accent-alt);
  top: 40%;
  right: 15%;
  animation: float-glow-3 22s infinite alternate ease-in-out;
}

@keyframes float-glow-1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.14; }
  50% { transform: translate(-80px, 60px) scale(1.1); opacity: 0.24; }
  100% { transform: translate(40px, -40px) scale(0.9); opacity: 0.14; }
}

@keyframes float-glow-2 {
  0% { transform: translate(0, 0) scale(1.1); opacity: 0.11; }
  50% { transform: translate(60px, -90px) scale(0.95); opacity: 0.2; }
  100% { transform: translate(-40px, 40px) scale(1.05); opacity: 0.11; }
}

@keyframes float-glow-3 {
  0% { transform: translate(0, 0) scale(0.9); opacity: 0.08; }
  50% { transform: translate(-60px, -60px) scale(1.15); opacity: 0.16; }
  100% { transform: translate(50px, 70px) scale(0.85); opacity: 0.08; }
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left { transform: translateX(-35px); }
.reveal.reveal-right { transform: translateX(35px); }
.reveal.reveal-scale { transform: scale(0.95); }

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   Status Badges Pulsing
   ========================================================================== */

@keyframes status-pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(124, 255, 0, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(124, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 255, 0, 0); }
}

@keyframes status-pulse-cyan {
  0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(0, 229, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

@keyframes status-pulse-purple {
  0% { box-shadow: 0 0 0 0 rgba(138, 92, 255, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(138, 92, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(138, 92, 255, 0); }
}

.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(124, 255, 0, 0.08);
  color: var(--primary-accent);
  border: 1px solid rgba(124, 255, 0, 0.2);
}

.pulse-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-accent);
  animation: status-pulse-green 2s infinite;
}

.pulse-badge.dev-status {
  background: rgba(0, 229, 255, 0.08);
  color: var(--primary-accent-alt);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.pulse-badge.dev-status::before {
  background: var(--primary-accent-alt);
  animation: status-pulse-cyan 2s infinite;
}

.pulse-badge.soon-status {
  background: rgba(138, 92, 255, 0.08);
  color: var(--secondary-accent-alt);
  border: 1px solid rgba(138, 92, 255, 0.2);
}

.pulse-badge.soon-status::before {
  background: var(--secondary-accent-alt);
  animation: status-pulse-purple 2s infinite;
}

/* Geometric Grid Background Overlay */
.grid-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/grid-bg.svg');
  background-repeat: repeat;
  opacity: 0.04; /* Very subtle grid opacity 4% as requested */
  pointer-events: none;
  mask-image: radial-gradient(circle at 75% 50%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.15) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: radial-gradient(circle at 75% 50%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.15) 70%, rgba(0, 0, 0, 0) 100%);
}

/* ==========================================================================
   Holographic Logo & Orbit Rings Animations
   ========================================================================== */

/* Outer Hologram Wrapper */
.hologram-wrapper {
  position: relative;
  width: min(45vw, 650px); /* Responsive sizing: scales with viewport width on desktop */
  max-width: 100%; /* Ensure it never overflows its 45% grid column, maintaining perfect zoom/aspect balance */
  aspect-ratio: 1/1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none; /* No hardcoded translation needed as it fits grid columns */

  /* Centralized shared coordinates for perfect symmetry */
  --center-x: 50%;
  --center-y: calc(50% - 20px); /* Shifted 15px upward to achieve perfect vertical alignment with left content block */
  --platform-offset-y: 25.7%; /* 360px / 1400px */
}

@media screen and (max-width: 1024px) {
  .hologram-wrapper {
    width: min(70vw, 500px); /* Responsive sizing on tablet stack */
    max-width: min(70vw, 500px);
    transform: none;
    --platform-offset-y: 25.7%;
  }

  /* Reset vertical offset and min-height constraints to prevent text overlap */
  #hero .reveal-right {
    min-height: auto !important;
    top: 0 !important;
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .hologram-wrapper {
    width: min(85vw, 350px); /* Responsive sizing on mobile stack */
    max-width: min(85vw, 350px);
    transform: none;
    --platform-offset-y: 25.7%;
  }
}

/* Prevent horizontal overflow scroll from floating particles */
#hero {
  overflow: hidden;
}

/* DEBUG ALIGNMENT GUIDES - Temporarily enabled during development */
.hologram-wrapper.debug-mode::before {
  content: '';
  position: absolute;
  left: var(--center-x);
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 0, 0, 0.8);
  z-index: 9999;
}
.hologram-wrapper.debug-mode::after {
  content: '';
  position: absolute;
  left: 0;
  top: var(--center-y);
  width: 100%;
  height: 1px;
  background: rgba(255, 0, 0, 0.8);
  z-index: 9999;
}
.hologram-wrapper.debug-mode .holographic-logo-parallax-wrapper {
  outline: 1px dashed red !important;
}
.hologram-wrapper.debug-mode .orbit-ring {
  outline: 1px dashed rgba(0, 229, 255, 0.5) !important;
}
.hologram-wrapper.debug-mode .hologram-platform-base {
  outline: 1px dashed rgba(127, 255, 0, 0.6) !important;
}

/* Hologram HUD Grid Overlay */
.hologram-hud-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, transparent 35%, rgba(5, 5, 5, 0.85) 80%),
    linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px, 30px 30px;
  background-position: center;
  opacity: 0.07; /* 7% opacity */
  pointer-events: none;
  z-index: 0;
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: var(--border-radius-lg);
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 90%);
}

/* Floating Logo */
.holographic-logo {
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 0 30px rgba(127, 255, 0, 0.42)) drop-shadow(0 0 60px rgba(0, 229, 255, 0.3)); /* Scaled down glow by 15% */
  animation: hologram-float 6s ease-in-out infinite alternate;
  width: 550px; /* Increased by 5% from 525px */
  height: auto;
  max-width: none !important;
  max-height: none !important;
  will-change: transform;
}

@media screen and (max-width: 1024px) {
  .holographic-logo {
    width: 410px; /* Increased by 5% from 390px */
  }
}

@media screen and (max-width: 768px) {
  .holographic-logo {
    width: 315px; /* Increased by 5% from 300px */
  }
}

/* Parallax logo wrapper centered exactly at shared Y-coordinate */
.holographic-logo-parallax-wrapper {
  position: absolute;
  left: var(--center-x);
  top: var(--center-y);
  transform: translate(-50%, -50%);
  z-index: 5;
  will-change: transform;
}

@keyframes hologram-float {
  0% {
    transform: translateY(-8px); /* Subtle floating travel: 16px total travel */
  }
  100% {
    transform: translateY(8px);
  }
}

@keyframes hologram-float {
  0% {
    transform: translateY(12px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(-18px) rotate(0.5deg);
  }
}

/* 3D Perspective Digital Floor Grid - Hidden or replaced by .hologram-platform-base */
.digital-floor {
  display: none;
}

/* Glowing Planet Sphere - Deleted entirely */
.planet-sphere {
  display: none;
}

/* Soft Volumetric Neon Energy Glow */
.energy-beam {
  position: absolute;
  left: var(--center-x);
  top: calc(var(--center-y) + var(--platform-offset-y) / 2);
  width: 17.1%; /* 240px / 1400px */
  height: var(--platform-offset-y);
  transform: translate(-50%, -50%);
  /* Soft volumetric vertical gradient */
  background: linear-gradient(to top, 
    rgba(0, 229, 255, 0.45) 0%, 
    rgba(127, 255, 0, 0.15) 50%, 
    rgba(127, 255, 0, 0) 100%
  );
  filter: blur(20px);
  z-index: 2;
  pointer-events: none;
  animation: volumetric-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes volumetric-glow-pulse {
  0% {
    opacity: 0.6;
    width: 14.3%; /* 200px / 1400px */
    filter: blur(18px);
  }
  100% {
    opacity: 1.0;
    width: 20%; /* 280px / 1400px */
    filter: blur(24px);
  }
}

/* Concentric Rings (6 Rings) */
.orbit-ring {
  position: absolute;
  left: var(--center-x);
  top: var(--center-y);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.ring-1 {
  width: 31.4%; /* 440px / 1400px */
  height: 31.4%;
  border: 1px solid rgba(0, 217, 255, 0.08); /* Cyan */
  animation: rotate-clockwise 45s linear infinite; /* Soft orbital animations */
}

.ring-2 {
  width: 40%; /* 560px / 1400px */
  height: 40%;
  border: 1px dashed rgba(140, 255, 0, 0.1); /* Neon Green */
  animation: rotate-counter-clockwise 50s linear infinite;
}

.ring-3 {
  width: 48.6%; /* 680px / 1400px */
  height: 48.6%;
  border: 1px solid rgba(0, 217, 255, 0.05); /* Cyan */
  animation: rotate-clockwise 55s linear infinite;
}

.ring-4 {
  width: 57.1%; /* 800px / 1400px */
  height: 57.1%;
  border: 1.5px dashed rgba(140, 255, 0, 0.07); /* Neon Green */
  animation: rotate-counter-clockwise 60s linear infinite;
}

.ring-5 {
  width: 65.7%; /* 920px / 1400px */
  height: 65.7%;
  border: 1px dotted rgba(0, 217, 255, 0.09); /* Cyan */
  animation: rotate-clockwise 65s linear infinite;
}

.ring-6 {
  width: 77.1%; /* 1080px / 1400px - Frames the logo perfectly */
  height: 77.1%;
  border: 1.5px dashed rgba(140, 255, 0, 0.04); /* Neon Green */
  animation: rotate-counter-clockwise 70s linear infinite;
}

/* Ambient Neon Glow behind the logo */
.hologram-glow-radial {
  position: absolute;
  left: var(--center-x);
  top: var(--center-y);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 255, 0, 0.34) 0%, rgba(0, 217, 255, 0.13) 40%, rgba(3, 3, 3, 0) 70%); /* Reduced intensity by ~10% for better contrast */
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
  animation: hologram-radial-pulse 6s ease-in-out infinite alternate;
}

@keyframes hologram-radial-pulse {
  0% { transform: translate(-50%, -50%) scale(0.76); opacity: 0.65; } /* Scaled down pulse sizes */
  100% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.85; }
}

/* Holographic Platform Base (at the bottom of hologram section) */
.hologram-platform-base {
  position: absolute;
  left: var(--center-x);
  top: calc(var(--center-y) + var(--platform-offset-y));
  transform: translate(-50%, -50%) rotateX(80deg);
  width: 68%; /* Reduced size from 78.6% */
  height: 68%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.28) 0%, rgba(140, 255, 0, 0.08) 40%, rgba(140, 255, 0, 0.01) 65%, rgba(0, 0, 0, 0) 80%);
  border: 2px solid rgba(140, 255, 0, 0.45); /* Thinner (2px) and higher opacity border for sharpness */
  box-shadow: 
    0 0 15px rgba(140, 255, 0, 0.4),
    0 0 45px rgba(140, 255, 0, 0.25),
    0 0 90px rgba(0, 217, 255, 0.12),
    inset 0 0 40px rgba(0, 217, 255, 0.25); /* Scaled down blurs and glows */
  z-index: 1;
  pointer-events: none;
  animation: platform-pulse 4s ease-in-out infinite alternate; /* 4s radial pulse */
  will-change: transform;
}

@keyframes platform-pulse {
  0% { transform: translate(-50%, -50%) rotateX(80deg) scale(0.94); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) rotateX(80deg) scale(1.06); opacity: 1; }
}

.platform-core-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22.9%; /* 320px / 1400px */
  height: 22.9%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.98) 0%, rgba(0, 229, 255, 0.6) 40%, rgba(127, 255, 0, 0.25) 70%, rgba(0,0,0,0) 90%);
  filter: blur(15px);
  animation: platform-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes platform-glow-pulse {
  0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.platform-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: 
    linear-gradient(rgba(127, 255, 0, 0.25) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(127, 255, 0, 0.25) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  background-position: center;
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 70%);
}

.platform-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.platform-ring-inner {
  width: 34.3%; /* 480px / 1400px */
  height: 34.3%;
  border: 2px dashed rgba(0, 229, 255, 0.65);
  animation: rotate-clockwise 20s linear infinite;
}

.platform-ring-middle {
  width: 48.6%; /* 680px / 1400px */
  height: 48.6%;
  border: 1.5px dashed rgba(0, 229, 255, 0.5); /* Neon Cyan */
  animation: rotate-counter-clockwise 15s linear infinite;
}

.platform-ring-outer {
  width: 62.9%; /* 880px / 1400px */
  height: 62.9%;
  border: 3px solid rgba(127, 255, 0, 0.45);
  border-left-color: transparent;
  border-right-color: transparent;
  animation: rotate-counter-clockwise 25s linear infinite;
}

/* Ambient Neon Glow on the right side of the hero section */
.hero-ambient-right {
  position: absolute;
  top: 50%;
  right: -280px;
  transform: translateY(-50%);
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 255, 0, 0.16) 0%, rgba(0, 217, 255, 0.05) 50%, transparent 70%); /* Reduced intensity by 10% for better contrast */
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: ambient-float 8s ease-in-out infinite alternate;
}

@keyframes ambient-float {
  0% { transform: translateY(-50%) scale(0.95); opacity: 0.65; } /* Reduced opacity for softer glow */
  100% { transform: translateY(-46%) scale(1.05); opacity: 0.8; }
}

/* Energy Portal Background Pulsing Glow & Waves */
.energy-portal {
  position: absolute;
  left: var(--center-x);
  top: var(--center-y);
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 255, 0, 0.16) 0%, rgba(0, 217, 255, 0.08) 50%, rgba(0, 0, 0, 0) 70%);
  filter: blur(25px);
  z-index: 1;
  pointer-events: none;
  animation: energy-glow-pulse 6s ease-in-out infinite alternate;
  will-change: transform, opacity, filter;
}

@keyframes energy-glow-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.6;
    filter: blur(25px);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    filter: blur(15px);
  }
}

.energy-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid var(--primary-accent);
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  animation: wave-ripple 6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform, opacity;
}

.energy-wave:nth-child(1) {
  animation-delay: 0s;
}

.energy-wave:nth-child(2) {
  animation-delay: 1.5s;
  border-color: var(--primary-accent-alt);
}

.energy-wave:nth-child(3) {
  animation-delay: 3s;
  border-color: var(--secondary-accent-alt);
}

.energy-wave:nth-child(4) {
  animation-delay: 4.5s;
  border-color: rgba(0, 229, 255, 0.75);
}

@keyframes wave-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.hero-featured-card-wrapper {
  position: absolute;
  bottom: -10px;
  left: -60px;
  width: 290px;
  z-index: 10;
  pointer-events: none;
  animation: float-card 6s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes rotate-clockwise {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-counter-clockwise {
  0% { transform: translate(-50%, -50%) rotate(360deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Orbit Line (Elliptical) */
.orbit-line {
  position: absolute;
  left: var(--center-x);
  top: var(--center-y);
  width: 500px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  pointer-events: none;
}

/* Orbit Node (glowing particle orbiting) */
.orbit-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-accent-alt);
  box-shadow: 0 0 12px var(--primary-accent-alt);
  animation: orbit-move 8s linear infinite;
}

@keyframes orbit-move {
  0% { transform: rotate(0deg) translate(250px) rotate(0deg); }
  100% { transform: rotate(360deg) translate(250px) rotate(-360deg); }
}

/* Hologram Scanning Line overlay effect */
.hologram-scan {
  display: none;
}

@keyframes scanning {
  0% { background-position: 0 0; }
  100% { background-position: 0 600px; }
}

/* Achievement bar glowing checkmark pulse */
.checkmark-glow {
  color: var(--primary-accent);
  filter: drop-shadow(0 0 5px rgba(124, 255, 0, 0.6));
  font-weight: bold;
}

/* Floating Card Animation */
@keyframes float-card {
  0% {
    transform: translateY(6px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(-6px) rotate(0.5deg);
  }
}

/* Refined Floating Card Animation (10% smaller, translateY 16px amplitude over 5s) */
@keyframes float-card-refined {
  0% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(8px) rotate(0.5deg);
  }
}

/* ==========================================================================
   Background Floating Particles CSS
   ========================================================================== */

.particles-overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle-item {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-accent-alt);
  box-shadow: 0 0 8px var(--primary-accent-alt);
  pointer-events: none;
  opacity: 0.15;
  animation: float-upwards 8s linear infinite;
}

@keyframes float-upwards {
  0% {
    transform: translateY(100px) scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 0.25;
  }
  90% {
    opacity: 0.25;
  }
  100% {
    transform: translateY(-500px) scale(1.2);
    opacity: 0;
  }
}

@keyframes glow-pulse-primary {
  0% { box-shadow: 0 12px 35px rgba(124, 255, 0, 0.4), 0 0 0 0 rgba(124, 255, 0, 0.4); }
  70% { box-shadow: 0 12px 35px rgba(124, 255, 0, 0.4), 0 0 0 10px rgba(124, 255, 0, 0); }
  100% { box-shadow: 0 12px 35px rgba(124, 255, 0, 0.4), 0 0 0 0 rgba(124, 255, 0, 0); }
}

@keyframes glow-pulse-secondary {
  0% { box-shadow: 0 12px 35px rgba(0, 229, 255, 0.25), 0 0 0 0 rgba(0, 229, 255, 0.4); }
  70% { box-shadow: 0 12px 35px rgba(0, 229, 255, 0.25), 0 0 0 10px rgba(0, 229, 255, 0); }
  100% { box-shadow: 0 12px 35px rgba(0, 229, 255, 0.25), 0 0 0 0 rgba(0, 229, 255, 0); }
}
