/**
 * Void Gallery - 3D Tunnel Effect Styles
 */

.wml-void-gallery {
    position: relative;
    width: 100%;
    overflow: visible;
}

.wml-void-gallery__scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform-style: preserve-3d;
    z-index: 1;
}

.wml-void-gallery__floater {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    will-change: transform, opacity;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    object-fit: cover;
}

/* Nestable content overlay */
.wml-void-gallery__content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Allow pointer events on nested children */
.wml-void-gallery__content>* {
    pointer-events: auto;
}