.profile-app {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-app__preview {
  border-radius: 28px;
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.76), rgba(79, 70, 229, 0.56));
}

.profile-app__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.profile-app__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.profile-app__preview .avatar,
.profile-app__preview-name,
.profile-app__preview-signature {
  position: relative;
  z-index: 1;
}

.profile-app__preview-name {
  margin: 16px 0 8px;
  font-size: 14px;
  font-weight: 800;
}

.profile-app__preview-signature {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}
