.cursor-container {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
}

.cursor-particle {
    position: absolute;
    pointer-events: none;
    z-index: 10000;
    width: 20px; /* Adjust to match your cursor size */
    height: 20px; /* Adjust to match your cursor size */
    background: url('https://static.vecteezy.com/system/resources/previews/017/178/335/original/mouse-cursor-symbol-on-transparent-background-free-png.png') no-repeat center center;
    background-size: contain;
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    transition: opacity 0.5s ease, transform 1s ease;
}
