/* Cursor Image Styles */
#cursor-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 480px;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translate(-50%, -50%);
    transform-origin: center center;
}

#cursor-img.active {
    opacity: 1;
}