/* 섹션 고정 관련 스타일 */
body.section-pinned {
    overflow-y: hidden; /* 섹션이 고정되었을 때 스크롤 방지 */
}

.flow-section.pinned {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    overflow: hidden;
}

/* 고정된 상태에서의 애니메이션을 부드럽게 */
.section-pinned .flow-item {
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 스크롤 안내 스타일 */
.scroll-hint {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(128, 0, 255, 0.8);
    animation: bounce 2s infinite;
    opacity: 1;
    transition: opacity 1s;
    z-index: 101;
}

.scroll-arrow {
    margin-bottom: 10px;
}

.scroll-text {
    font-size: 16px;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.scroll-hint.fade-out {
    opacity: 0;
}

/* 아이템 흡수 진행 표시기 */
.absorption-progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    display:none;
}

.absorption-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(128, 0, 255, 0.3);
    transition: all 0.3s;
}

.absorption-dot.active {
    background-color: rgba(128, 0, 255, 0.8);
    transform: scale(1.2);
}
