#seeMoreIndicator {
    bottom: 20px;
    cursor: pointer;
    left: 50%;
    position: fixed;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
}

#seeMoreIndicator.hidden {
    opacity: 0;
    pointer-events: none;
}

#seeMoreIndicator_CONTAINER{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    align-items: center;
}

#seeMoreIndicator_CONTAINER > span{
    font-size: clamp(0.9rem, 1vw, 2rem);
    font-weight: 600;
}

#animated-arrows {
    aspect-ratio: 1/1;
    width: clamp(2rem, 3.5rem, 5rem);
}

#animated-arrows path {
    fill: none;
    stroke: #ff674099; /* Change color here */
    stroke-width: 0.5rem;
    animation: bounce 3s infinite;
}

.arrow-1 { animation-delay: -0.3s; }
.arrow-2 { animation-delay: -0.5s; }
.arrow-3 { animation-delay: 0s; }

@keyframes bounce {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}
