
.card {
  max-width: 400px;
  max-height: 400px;
  height: 100%;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 12px;
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  position: relative;
  cursor: none;
}

.card-image {
  width:100%;
  height: auto;
  margin: auto;
  overflow: hidden;
  border-radius: 8px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-cursor {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.cursor-icon {
  color: #4ecdc4;
  margin-bottom: 4px;
}

.name-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: #4ecdc4;
  border-radius: 12px;
  transform: scale(0);
}

.name-tag img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

@media (max-width: 880px) {
  .card {
    max-width: 250px;
    max-height: 250px;
  }
}