/* Индикатор скролла - универсальный для всех страниц */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.scroll-indicator.visible {
    opacity: 0.25;
}

.scroll-indicator.visible:hover {
    opacity: 0.6;
}

.scroll-indicator-text {
    display: none;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-left: 2px solid rgba(167, 139, 250, 0.5);
    border-bottom: 2px solid rgba(167, 139, 250, 0.5);
    transform: rotate(-45deg);
    animation: scrollBounce 2s infinite ease-in-out;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(-45deg) translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: rotate(-45deg) translateY(8px);
        opacity: 1;
    }
}

/* Адаптив */
@media (max-width: 768px) {
    .scroll-indicator {
        padding: 15px 0;
    }

    .scroll-arrow {
        width: 14px;
        height: 14px;
    }
}