footer {
    position: relative;
    overflow: hidden;
}

.ball {
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: var(--color-text-primary);
    border-radius: var(--radius-full);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .ball {
        animation: none;
    }
}
