.scroll--indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 10;
}

.scroll--indicator-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(22, 22, 22, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.scroll--indicator-icon {
    pointer-events: auto; 
    z-index: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.scroll--indicator-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    top: 35%;
}

.scroll--indicator-text {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: var(--white);
}

.scroll--indicator-text text {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}