/* GLOBAL BADGE SYSTEM - PRODUCTION SAFE */
.profile-container {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 480px) {
  .badge {
    width: 32px;
    height: 32px;
    top: -6px;
    right: -6px;
  }
}

/* FOUNDING 50 BADGE (Text Badge) */
.founding-50-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
  z-index: 10;
}

.founding-50-badge::before {
  content: "👑 ";
}

/* PROFILE CONTAINER NEEDS POSITION RELATIVE */
.creator-avatar,
.profile-image,
.creator-circle,
.profile-card,
.profile-img {
  position: relative;
}

/* Profile card wrapper needs relative positioning for badge */
.profile-card {
  position: relative;
  display: block;
}

.profile-card img {
  position: relative;
}


/* Badge Styles */
.profile-wrapper { position: relative; display: inline-block; }
.founding-badge, .network-badge, .investor-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 48px;
  height: 48px;
  z-index: 100;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(255,215,0,0.5);
}
