.vx-discord {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-height: 26rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  background: #111214;
}

.vx-discord__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  background: #5865f2;
}

.vx-discord__logo {
  display: inline-flex;
  flex-shrink: 0;
  color: #fff;
}

.vx-discord__logo svg {
  width: 1.3rem;
  height: 1.3rem;
}

.vx-discord__titles {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.vx-discord__brand {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
}

.vx-discord__count {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
}

.vx-discord__body {
  flex: 1;
  min-height: 0;
  padding: 0.85rem 0.9rem 0.35rem;
}

.vx-discord__label {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-discord__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 17.5rem;
  overflow: auto;
  display: grid;
  gap: 0.5rem;
}

.vx-discord__list::-webkit-scrollbar {
  width: 6px;
}

.vx-discord__list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.vx-discord__member {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.vx-discord__avatar-wrap {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.vx-discord__avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.vx-discord__status {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 2px solid #111214;
  background: #23a559;
}

.vx-discord__status--idle { background: #f0b232; }
.vx-discord__status--dnd { background: #f23f43; }
.vx-discord__status--offline { background: #80848e; }

.vx-discord__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.vx-discord__name {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vx-discord__game {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vx-discord__empty {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.45;
  padding: 0.35rem 0.1rem;
}

.vx-discord__join {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.75rem;
  min-height: 2.5rem;
  border-radius: 0.7rem;
  background: #5865f2;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.vx-discord__join:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}