.sidma-bounce-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Height handled by control */
    perspective: 1000px;
}

.bounce-card {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Centering logic handled by GSAP 'xPercent: -50, yPercent: -50' usually, 
       but here we will let CSS center it and GSAP does transforms relative to it 
    */
    transform: translate(-50%, -50%);

    display: block;
    background: #fff;
    /* Border effect */
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    line-height: 0;

    /* Important for animations */
    will-change: transform;
    opacity: 0;
    /* Hidden until GSAP inits */
}

.bounce-card.init-ready {
    opacity: 1;
    /* Fade in once calculated */
}

.bounce-img {
    width: 100%;
    height: auto;
    display: block;
    /* object-fit covered by width: 100% and height: auto */
    pointer-events: none;
    /* Let the card handle hover */
    border-radius: inherit;
}