.nft-card {
  margin-bottom: 30px;
  transition: 0.3s ease;
}

.nft-card:hover {
  transform: translateY(-10px);
}

.video-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.nft-video {
  width: 100%;
  display: block;
  transition: 0.4s ease;
  filter: brightness(0.85);
}

.nft-card:hover .nft-video {
  transform: scale(1.05);
  filter: brightness(1);
}

.nft-name {
  display: block;
  color: #ff00ff;
  font-weight: 700;
  margin-top: 10px;
}

.nft-desc {
  font-size: 14px;
  color: #ccc;
}