 #eyeContainer {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    height: auto;  
    max-width: 800px;  
    margin: 0 auto;
    box-sizing: border-box;
    z-index: 999;
}

#eyeCanvas {
    display: block;
    cursor: none;
    width: 100%;
    height: auto;
    max-height: 100%;  
    touch-action: none;
    filter: drop-shadow(0 0 15px rgba(255, 195, 0, 0.1));
}

@media screen and (max-width: 767px) {
    #eyeCanvas {
        touch-action: pan-y;
        filter: none;
    }
}

