/* Estilos para React App - Nuevo y de Prueba */
.react-app-nav {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 25px;
  padding: 8px 20px;
  margin: 0 10px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.react-app-nav::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.5s;
}

.react-app-nav:hover::before {
  left: 100%;
}

.react-app-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.react-app-link {
  color: white !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.react-app-link::before {
  content: "⚛️";
  font-size: 16px;
  animation: spin 2s linear infinite;
}

.react-app-link::after {
  content: "NUEVO";
  background: #ff6b6b;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  position: absolute;
  top: -8px;
  right: -10px;
  animation: pulse 1.5s infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

/* Responsive */
@media (max-width: 768px) {
  .react-app-nav {
    margin: 5px 0;
    border-radius: 20px;
    padding: 6px 15px;
  }

  .react-app-link::after {
    font-size: 8px;
    padding: 1px 4px;
  }
}
