/* NFT Image Lightbox Styles */

.nft-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.nft-lightbox.active {
  display: flex;
  opacity: 1;
}

.nft-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nft-lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  border: 3px solid #FF8C00;
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.6);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Make NFT images look clickable */
.card-nft-image img {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-nft-image img:hover {
  transform: scale(1.05);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .nft-lightbox-img {
    max-width: 95vw;
  }
}