.breathe-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    overflow: hidden;
    border-radius: 12px;
}

.breathe-spinner {
    position: relative;
    width: 0;
    height: 0;
    animation: spin-system 20s infinite linear;
    z-index: 1;
}

.arm {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(calc(var(--i) * 72deg));
    z-index: 2;
}

.shifter {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    animation: breathe-move 5s ease-in-out infinite alternate;
}

.circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(31, 111, 216, 0.45);
    /* background: linear-gradient(135deg, rgb(31, 111, 216), #0d2a8a, #020a3a); */
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(2px);
    z-index: 1;
}

.text-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transform: rotate(calc(var(--i) * -72deg));
}

.inner-text {
    color: #fff;
    font-size: 18px;
    padding: 10px !important;
    font-weight: 500;
    text-align: center;
    animation: counter-rotate 20s infinite linear;
}


.ghost-layer {
    position: absolute;
    top: 0;
    left: 0;
}

.ghost {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    opacity: 0.3;
    animation: ghost-breathe 5s ease-in-out infinite alternate;
}


@keyframes spin-system {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes counter-rotate {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes breathe-move {
    0% {
        transform: translateX(20px) scale(0.6);
    }

    100% {
        transform: translateX(100px) scale(1);
    }
}

@keyframes ghost-breathe {
    0% {
        transform: rotate(var(--rot)) translate(20px) scale(0.6);
    }

    100% {
        transform: rotate(var(--rot)) translate(100px) scale(1);
    }
}