/* CSS personalizado extraído de index.html */

/* Aquí irá todo el contenido de la etiqueta <style> del HTML principal */ 

body {
  font-family: "Inter", sans-serif;
  background: #0e0e11;
}
.font-poppins {
  font-family: "Poppins", sans-serif;
}

/* Custom animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 8px #18f2b2);
  }
  50% {
    filter: drop-shadow(0 0 12px #18f2b2);
  }
}
@keyframes neonPulse {
  0%,
  100% {
    text-shadow: 0 0 5px #4b5cc4, 0 0 10px #4b5cc4;
  }
  50% {
    text-shadow: 0 0 8px #4b5cc4, 0 0 15px #4b5cc4;
  }
}
.float-animation {
  animation: float 6s ease-in-out infinite;
}
.glow-animation {
  animation: glow 3s ease-in-out infinite;
}
.neon-text {
  animation: neonPulse 2s ease-in-out infinite;
}

/* NeonDusk gradient backgrounds */
.gradient-bg {
  background: linear-gradient(
    135deg,
    #4b5cc4 0%,
    #18f2b2 50%,
    #4b5cc4 100%
  );
}
.gradient-dusk {
  background: linear-gradient(
    135deg,
    #4b5cc4 0%,
    #18f2b2 25%,
    #ff6b5e 50%,
    #4b5cc4 75%,
    #18f2b2 100%
  );
}
.gradient-text {
  background: linear-gradient(135deg, #4b5cc4 0%, #18f2b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-dusk {
  background: linear-gradient(135deg, #4b5cc4 0%, #18f2b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtle borders and effects */
.neon-border {
  border: 1px solid #18f2b2;
  box-shadow: 0 0 8px rgba(24, 242, 178, 0.3);
}
.neon-border-primary {
  border: 1px solid #4b5cc4;
  box-shadow: 0 0 8px rgba(75, 92, 196, 0.3);
}
.neon-glow {
  box-shadow: 0 0 15px rgba(24, 242, 178, 0.2),
    inset 0 0 15px rgba(24, 242, 178, 0.05);
}

/* Drop shadows for images and icons */
.icon-glow {
  filter: drop-shadow(0 0 8px rgba(24, 242, 178, 0.4));
}
.icon-glow-primary {
  filter: drop-shadow(0 0 8px rgba(75, 92, 196, 0.4));
}
.icon-glow-accent {
  filter: drop-shadow(0 0 8px rgba(255, 107, 94, 0.4));
}
.icon-glow-cyan {
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4));
}
.icon-glow-magenta {
  filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.4));
}
.icon-glow-pink {
  filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.4));
}
.icon-glow-green {
  filter: drop-shadow(0 0 8px rgba(0, 255, 127, 0.4));
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #1a1b22;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #4b5cc4, #18f2b2);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ff6b5e, #18f2b2);
}

/* NeonDusk cards */
.gaming-card {
  background: linear-gradient(145deg, #1a1b22 0%, #2c2d36 100%);
  border: 1px solid #2c2d36;
  transition: all 0.3s ease;
}
.gaming-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 10px 25px rgba(75, 92, 196, 0.2), 0 0 0 1px #4b5cc4;
}

/* Pricing cards adjustments */
@media (max-width: 768px) {
  .pricing-card-popular {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}

/* Modern navbar styles */
.navbar-modern {
  background: linear-gradient(
    90deg,
    rgba(26, 27, 34, 0.95) 0%,
    rgba(44, 45, 54, 0.95) 50%,
    rgba(26, 27, 34, 0.95) 100%
  );
  border-bottom: 1px solid rgba(75, 92, 196, 0.2);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.navbar-scrolled {
  background: rgba(14, 14, 17, 0.98) !important;
  border-bottom: 1px solid rgba(24, 242, 178, 0.3);
  box-shadow: 0 8px 32px rgba(75, 92, 196, 0.15);
}

/* Modern nav links */
.nav-link {
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4b5cc4, #18f2b2);
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 100%;
}

/* Gaming specific gradients and borders */
.neon-border-pink {
  border: 1px solid #ff1493;
  box-shadow: 0 0 8px rgba(255, 20, 147, 0.3);
}
.gradient-text-gamer {
  background: linear-gradient(
    135deg,
    #ff00ff 0%,
    #00ffff 50%,
    #00ff7f 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-gamer {
  background: linear-gradient(
    135deg,
    #1a1b22 0%,
    #ff00ff 25%,
    #00ffff 50%,
    #00ff7f 75%,
    #1a1b22 100%
  );
}

/* Parallax Gaming Elements */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.1s ease-out;
}

.gaming-particle {
  width: 40px;
  height: 40px;
  background: rgba(24, 242, 178, 0.1);
  border: 1px solid rgba(24, 242, 178, 0.3);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}

.gaming-particle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #18F2B2;
  border-radius: 50%;
  box-shadow: 0 0 10px #18F2B2;
}

.gaming-hexagon {
  width: 60px;
  height: 34px;
  background: rgba(75, 92, 196, 0.1);
  border: 1px solid rgba(75, 92, 196, 0.3);
  position: relative;
  margin: 17px 0;
  animation: hexagonRotate 12s linear infinite;
}

.gaming-hexagon::before,
.gaming-hexagon::after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}

.gaming-hexagon::before {
  bottom: 100%;
  border-bottom: 17px solid rgba(75, 92, 196, 0.1);
}

.gaming-hexagon::after {
  top: 100%;
  border-top: 17px solid rgba(75, 92, 196, 0.1);
}

.gaming-circuit {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255, 0, 255, 0.1) 30%, 
    rgba(255, 0, 255, 0.1) 70%, 
    transparent 70%);
  border: 1px solid rgba(255, 0, 255, 0.3);
  animation: circuitPulse 6s ease-in-out infinite;
}

.gaming-gear {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  position: relative;
  animation: gearRotate 10s linear infinite;
}

.gaming-gear::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 255, 255, 0.6);
  border-right-color: rgba(0, 255, 255, 0.6);
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  25% { transform: translateY(-15px) scale(1.1); }
  50% { transform: translateY(-30px) scale(0.9); }
  75% { transform: translateY(-15px) scale(1.1); }
}

@keyframes hexagonRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes gearRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.parallax-icon {
  width: 60px;
  height: 60px;
  opacity: 0.4;
  filter: drop-shadow(0 0 10px rgba(24, 242, 178, 0.3));
  animation: iconFloat 7s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
} 