.button-secondary {
    background-color: var(--color-secondary);
    color: var(--color-black);
    padding: 16px 35px;
    font-size: var(--font-size-body-s);
    font-weight: var(--font-weight-semibold);
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;

    &:hover {
        background-color: var(--color-secondary-hover);
    }
}

button.splide__arrow {
    background: rgba(255, 255, 255, 0.7);
    height: 4rem;
    width: 4rem;
    border: 10px solid rgba(0, 0, 0, 0.2);
    transition: .3s all ease;
}
button.splide__arrow svg {
    fill: var(--color-black);
    height: 1em;
    width: 1em;
}
button.splide__arrow:hover {
    background: var(--color-secondary);
    opacity: 1;
}

.button {
    pointer-events: auto;
    cursor: pointer;
    background: var(--color-white);
    border: none;
    padding: 1.5rem 3rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
}
.button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.button--hyperion {
    padding: 20px 40px;
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
    font-size: var(--font-size-body);
    overflow: hidden;
    color: var(--color-white);
    box-shadow: inset 0 0 0 2px black;
}

.button--hyperion span {
    display: block;
    position: relative;
}

.button--hyperion > span {
    overflow: hidden;
}

.button--hyperion > span > span {
    overflow: hidden;
    mix-blend-mode: difference;
}

.button--hyperion:hover > span > span {
    animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}


.button--hyperion::before {
    content: '';
    background: var(--color-primary);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
    transform-origin: 100% 50%;
}

.button--hyperion:hover::before {
    transform: scale3d(0,1,1);
    transform-origin: 0% 50%;
}

.power-button {
    z-index: 1;
    background-color: var(--color-secondary);
    padding: 5px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    border-radius: 150px;
    border: none;
    box-sizing: border-box;
    aspect-ratio: 1/1;
    width: 95px;
    height: 95px;
    transition: .3s all ease;
}
.power-button .rotate-me {
    animation: rotate360 4s linear infinite;
}
.power-button span {
    background-color: var(--color-primary);
    padding: 20px;
    display: flex;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    border-radius: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}
.power-button span svg {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
}

.power-button:hover {
    transform: scale(1.05);
}
.power-button:hover .rotate-me {
    animation: rotate360 14s linear infinite;
}