#social-follow-popup {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  max-width: 300px;
  padding: 20px;
  font-family: system-ui, sans-serif;
  animation: fadeIn 0.8s ease;
}

.popup-content h3 {
  margin-top: 0;
  color: #111;
}

.popup-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.social-buttons a {
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.social-buttons a.telegram { background: #2AABEE; }
.social-buttons a.x { background: #000; }
.social-buttons a.youtube { background: #FF0000; }
.social-buttons a.rumble { background: #1A9F29; }
.social-buttons a.facebook { background: #1877F2; } /* Neu */

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}