/* Mouse Effect Container for Image Spawning */
.mouse-effect-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1000;
}

.spawned-image {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    pointer-events: none;
    transition: all 1.5s ease-out;
    transform-origin: center;
}

.spawned-image.fade-out {
    opacity: 0;
    transform: scale(0.5) rotate(180deg);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .image-gallery {
        width: 250px;
        height: 350px;
    }
}