
#list-title {
    color: #fff;
    text-align: center;
    font-size: 5vh;
    font-weight: 100;
    letter-spacing: 3px;
}

.card-content {
    position: relative;
    padding: 0vh;
    margin: 0vh;
}

.card-img {
    position: absolute;
}

.card-title {
    position: relative;
    text-align: center;
    top: 70%;
    transform: translatey(-70%);
}

.card-desc {
    position: absolute;
}

.card-link{
    text-decoration: none;
    color: #fff;
}


.cursor-box {
    width: 30vh;
    height: 30vh;
    background-color: #333;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cursor-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
}

.cursor-box:hover::before {
    top: 100%;
    left: 100%;
}

/* Unique styles for each cursor type */
.pointer {
    cursor: pointer;
    background: linear-gradient(145deg, #2a2a2a, #383838);
    border: 2px solid #646cff;
}
.pointer:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 15px #646cff50;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1.05); }
    50% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) scale(1.05); }
    25% { transform: translateX(-5px) scale(1.05); }
    75% { transform: translateX(5px) scale(1.05); }
}

@keyframes moveAround {
    0% { transform: translate(0, 0) scale(1.05); }
    25% { transform: translate(5px, -5px) scale(1.05); }
    50% { transform: translate(0, 0) scale(1.05); }
    75% { transform: translate(-5px, 5px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1.05); }
}

@media (max-width: 768px) {
    /*#carousel-container .container {
        grid-template-columns: repeat(3, 1fr);
    }*/
    .cursor-box {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    /*#carousel-container .container {
        grid-template-columns: repeat(2, 1fr);
    }*/
    .cursor-box {
        width: 140px;
        height: 140px;
    }
}