.art-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.art-item:hover .art-item-overlay {
    opacity: 1;
}

.art-item-title {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-align: center;
    padding: 0.5rem;
    text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
}

.art-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
