/* Base animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes beamSweep {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

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

/* Text glow effect */
.text-glow {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7),
               0 0 20px rgba(255, 255, 255, 0.5),
               0 0 30px rgba(255, 255, 255, 0.3);
}

/* Logo styles */
.logo-container {
  position: relative;
  display: inline-block;
}

.xbeam-logo {
  background: linear-gradient(135deg, #ff2b7d, #7222d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
}

.glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(20px);
  background: linear-gradient(135deg, #ff2b7d50, #7222d350);
  z-index: 0;
}

/* Light beam effect */
.light-beam {
  position: absolute;
  width: 200%;
  height: 200px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 43, 125, 0.1),
    rgba(114, 34, 211, 0.2),
    rgba(255, 43, 125, 0.1),
    transparent
  );
  animation: beamSweep 8s infinite;
  transform-origin: 0 0;
  pointer-events: none;
}

/* Form styling */
.neon-input {
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  padding: 0.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.neon-input:focus {
  outline: none;
  border-color: #ff2b7d;
  box-shadow: 0 0 10px rgba(255, 43, 125, 0.5);
}

.input-glow {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #ff2b7d, #7222d3);
  transition: width 0.3s ease;
}

.group:focus-within .input-glow {
  width: 100%;
}

/* Button styling */
.neon-button {
  position: relative;
  padding: 0.75rem 2rem;
  background: transparent;
  color: white;
  border: 2px solid #ff2b7d;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.neon-button:hover {
  background: linear-gradient(90deg, #ff2b7d, #7222d3);
  box-shadow: 0 0 20px rgba(255, 43, 125, 0.5);
  border-color: transparent;
}

.neon-button:hover::before {
  left: 100%;
}

/* Link styling */
.neon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.neon-link:hover {
  color: #ff2b7d;
  border-color: #ff2b7d;
  box-shadow: 0 0 15px rgba(255, 43, 125, 0.3);
}

/* Canvas and particles styling */
#skiCanvas {
  opacity: 0.3;
  pointer-events: none;
}

.particles-js-canvas-el {
  opacity: 0.5;
} 