body.arturia-sl-no-scroll {
    overflow: hidden;
}

#arturia-sl-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(2px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 10px;
    transition: opacity 0.2s ease;
    opacity: 0;
}

#arturia-sl-overlay.visible {
    display: flex;
    opacity: 1;
}

#arturia-sl-inner {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    text-align: center;
}

#arturia-sl-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 6px;
    transition: transform 0.2s ease;
    cursor: grab;
}

#arturia-sl-caption {
    color: #fff;
    margin-top: 10px;
    font-size: 0.9rem;
}

#arturia-sl-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    line-height: 30px;
    cursor: pointer;
}

#arturia-sl-prev,
#arturia-sl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 40px;
    height: 60px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
}

#arturia-sl-prev:hover,
#arturia-sl-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

#arturia-sl-prev {
    left: -60px;
}

#arturia-sl-next {
    right: -60px;
}

@media (max-width: 700px) {

    #arturia-sl-prev,
    #arturia-sl-next {
        left: 5px;
        right: 5px;
        height: 50px;
        width: 30px;
        font-size: 28px;
    }

    #arturia-sl-prev {
        left: 5px;
    }

    #arturia-sl-next {
        right: 5px;
    }
}