* {
  scrollbar-width: thin;
  scrollbar-color: rgba(249,168,212,.9) #1a0d24;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: #1a0d24;
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ec4899, #a855f7);
  border-radius: 10px;
  border: 2px solid rgba(22,10,32,.6);
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f9a8d4, #c084fc);
}
*::-webkit-scrollbar-button {
  display: none;
}

.discord-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}
.discord-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.2);
}
.discord-name {
  font-size: 13px;
  font-weight: 600;
  color: #fdf2ff;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
