.carousel-container-NFT { 
    position: relative; 
    width: 200px; 
    height: 200px; 
    perspective: 800px;
}
  
.carousel-NFT { 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    transform-style: preserve-3d; 
    transition: transform 0.8s ease-in-out; 
}
  
.slide-NFT { 
    width: 200px; 
    height: 200px; 
    position: absolute; 
    background-size: cover; 
    background-position: center; 
    opacity: 0.5;
    filter: blur(5px);
}

.slide-NFT.active {
    opacity: 1;
    filter: blur(0px);
    transition: transform 0.25s ease-in-out;
}
  
.controls-NFT { 
    position: absolute; 
    top: 50%; 
    left : -50%;
    width: 200%; 
    display: flex; 
    justify-content: space-between; 
    transform: translateY(-50%); 
}
  
.control-NFT { 
    background: rgba(0, 0, 0, 0.9); 
    border: none; 
    padding: 10px; 
    cursor: pointer; 
    font-size: 20px; 
    color: white;
}
  
.indicators-NFT { 
    position: absolute; 
    bottom: -100px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
}
  
.dot-NFT { 
    width: 10px; 
    height: 10px; 
    margin: 0 5px; 
    background: rgba(255, 255, 255, 0.5); 
    border-radius: 50%; 
    cursor: pointer; 
}
  
.dot-NFT.active { 
    background: white;
}