#fn-social-proof {
  position: fixed;
  bottom: 20px;
  z-index: 9999;
  width: 380px;
  max-width: calc(100vw - 24px);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  font-size: 14px;
  line-height: 1.4;
}

#fn-social-proof.fnsp-left { left: 20px; }
#fn-social-proof.fnsp-right { right: 20px; }
#fn-social-proof.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#fn-social-proof .fnsp-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

#fn-social-proof .fnsp-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  position: relative;
}

#fn-social-proof.fnsp-style-narco {
  background:
    radial-gradient(circle at top right, rgba(234, 179, 8, 0.22), transparent 30%),
    linear-gradient(135deg, #131313 0%, #1b120a 100%);
  border: 1px solid rgba(234, 179, 8, 0.18);
}

#fn-social-proof.fnsp-style-clean {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  border: 1px solid rgba(255,255,255,0.08);
}

#fn-social-proof .fnsp-image-wrap {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

#fn-social-proof .fnsp-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#fn-social-proof .fnsp-content {
  flex: 1;
  min-width: 0;
  padding-right: 26px;
}

#fn-social-proof .fnsp-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fbbf24;
}

#fn-social-proof.fnsp-style-clean .fnsp-title {
  color: #93c5fd;
}

#fn-social-proof .fnsp-text {
  display: block;
  color: rgba(255,255,255,0.94);
  word-break: break-word;
  font-weight: 500;
}

#fn-social-proof .fnsp-meta {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.66);
  font-size: 12px;
}

#fn-social-proof .fnsp-close {
  appearance: none;
  border: 0;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  position: absolute;
  top: 10px;
  right: 10px;
}

#fn-social-proof .fnsp-close:hover {
  background: rgba(255,255,255,0.14);
}

@media (max-width: 767px) {
  #fn-social-proof,
  #fn-social-proof.fnsp-left,
  #fn-social-proof.fnsp-right {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  #fn-social-proof .fnsp-inner {
    padding: 10px;
    gap: 10px;
  }

  #fn-social-proof .fnsp-image-wrap {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }
}
